/* Theme 2 - Dark Neon / Glassmorphism Design */

/* All styles scoped under .theme-2 */
.theme-2 {
    /* Theme Variables override if necessary, but we are using direct styles */
    --t2-bg: #1e293b;
    --t2-card-bg: #0f172a;
    --t2-primary: #8b5cf6;
    /* Violet */
    --t2-secondary: #06b6d4;
    /* Cyan */
    --t2-text: #f8fafc;
    --t2-text-muted: #94a3b8;
    /* Font setup */
    font-family: var(--global-font);
}

/* ... */

/* Process Card Overrides */
.theme-2 .card.process-card {
    width: 280px;
    /* Slightly narrower */
    display: flex;
    flex-direction: column;
    /* Stacked layout for Process in Theme 2 */
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 140px;
    padding: 30px 20px;
    background: #1e293b;
    /* Solid fallback for export */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-2 .section-title {
    color: var(--t2-secondary);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
    font-family: var(--global-font);
    /* Example different font if loaded, or fallback */
    text-transform: uppercase;
    letter-spacing: 4px;
}

.theme-2 .card {
    width: 360px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--t2-text);
}

.theme-2 .badge {
    color: var(--t2-secondary);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
    background: rgba(6, 182, 212, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.theme-2 .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-2 .desc {
    font-size: 15px;
    color: var(--t2-text-muted);
    line-height: 1.6;
}

/* Icon Styles */
.theme-2 .icon {
    position: absolute;
    top: -30px;
    right: 20px;
    /* Different position */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--t2-primary), var(--t2-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    transform: rotate(3deg);
    /* Slight rotation for style */
}

.theme-2 .icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Contact Card Overrides */
.theme-2 .card.contact-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px;
    background: #0f172a;
    /* Darker solid bg */
    border: 1px solid #334155;
}

.theme-2 .contact-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.theme-2 .contact-card .icon,
.theme-2 .contact-icon {
    position: static;
    background: #1e293b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--t2-primary);
    transform: none;
    box-shadow: none;
    display: flex;
    /* Ensure these are flex containers */
    align-items: center;
    justify-content: center;
}

.theme-2 .contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--t2-primary);
}

.theme-2 .contact-title {
    color: white;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.theme-2 .contact-desc {
    color: var(--t2-secondary);
    font-weight: 500;
    font-size: 14px;
}

.theme-2 .contact-arrow {
    color: #475569;
    width: 20px;
    height: 20px;
}

/* Process Card Overrides */
.theme-2 .card.process-card {
    width: 280px;
    /* Slightly narrower */
    display: flex;
    flex-direction: column;
    /* Stacked layout for Process in Theme 2 */
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 140px;
    padding: 30px 20px;
    background: rgba(30, 41, 59, 0.6);
    /* Semi-transparent */
    backdrop-filter: blur(10px);
}

.theme-2 .card.process-card .icon {
    position: static;
    transform: none;
    margin-bottom: 15px;
    background: transparent;
    border: 2px solid var(--t2-secondary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.theme-2 .card.process-card .icon svg {
    color: var(--t2-secondary);
}

.theme-2 .card.process-card .title {
    color: white;
    font-size: 18px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-text-fill-color: initial;
    background: none;
}

/* Separator Card Overrides */
.theme-2 .card.separator-card {
    width: auto;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    /* Vertical Layout for Separators */
    align-items: center;
    padding: 20px;
    border: none;
    min-height: auto;
    gap: 10px;
}

.theme-2 .card.separator-card .icon {
    position: static;
    width: 100px;
    height: 100px;
    border-radius: 30px;
    font-size: 40px;
    flex-shrink: 0;
    background: linear-gradient(to bottom right, #243c5a, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    /* Diamond shape */
    margin-bottom: 30px;
    /* Space for the diamond */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.theme-2 .card.separator-card .icon svg {
    width: 40px;
    height: 40px;
    color: var(--t2-secondary);
    transform: rotate(-45deg);
    /* Counter-rotate icon */
}

.theme-2 .card.separator-card .title {
    font-size: 36px;
    margin: 0;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    background: none;
    -webkit-text-fill-color: initial;
}

/* Header Card Overrides */
.theme-2 .header-card {
    width: 500px;
    height: 350px;
    max-width: 100%;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-2 .header-card .mode-toggle {
    background: #0f172a;
    padding: 10px;
    border-radius: 40px;
    border: 1px solid #334155;
}

.theme-2 .header-card .mode-btn.dark {
    border: 2px solid #333539;
    color: #333539;
    background: transparent;
}

.theme-2 .header-card .mode-btn.light {
    border: 2px solid #f5f8fa;
    color: #f5f8fa;
    background: transparent;
}

.theme-2 .header-card .main-title {
    font-size: 80px;
    color: white;
    text-align: center;
    text-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.theme-2 .header-card .subtitle {
    color: var(--t2-secondary);
    text-align: center;
    font-weight: 600;
    letter-spacing: 4px;
}

.theme-2 .header-card .cta-btn {
    background: var(--t2-primary);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.theme-2 .header-card .cta-btn:hover {
    background: #7c3aed;
}

.theme-2 .header-card .cta-text {
    display: none;
    /* Hide secondary text for cleaner look */
}

/* Special Review Card Overrides */
.theme-2 .special-review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.theme-2 .special-review-card .icon {
    position: static;
    /* Override absolute positioning */
    transform: none;
    margin-bottom: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
}

.theme-2 .special-review-card .icon svg {
    width: 60px;
    height: 60px;
    color: #ef4444;
    /* Keep heart red */
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
    /* Neon glow */
}

.theme-2 .special-review-card .top-text {
    color: var(--t2-secondary);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.theme-2 .special-review-card .main-text {
    color: white;
    font-size: 42px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* CSS Graphic Replacement for Header 2 */
.theme-2 .header-mascot-img {
    display: none !important;
}

.theme-2 .header-alt-design {
    display: flex !important;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.theme-2 .alt-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--t2-primary);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.theme-2 .alt-shape-2 {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px dashed var(--t2-secondary);
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

.theme-2 .alt-content {
    z-index: 2;
    text-align: center;
    backdrop-filter: blur(5px);
    background: rgba(15, 23, 42, 0.8);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.theme-2 .alt-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--t2-primary), var(--t2-secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    transform: rotate(-5deg);
}

.theme-2 .alt-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.theme-2 .alt-text {
    font-size: 40px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    line-height: 1.2;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Feature Description Card */
.theme-2 .card.feature-desc-card {
    width: 700px;
    max-width: 100%;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.theme-2 .feature-top {
    position: relative;
    background: #1e293b;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 40px;
    padding: 15px 40px 15px 60px;
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.theme-2 .feature-top .icon {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--t2-primary), var(--t2-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.theme-2 .feature-top .icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.theme-2 .feature-top .title {
    color: white;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    -webkit-text-fill-color: initial;
    background: none;
}

.theme-2 .feature-desc-card .desc,
.theme-2 .text-only-card .desc {
    color: var(--t2-text-muted);
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
}

/* Text Only Card */
.theme-2 .card.text-only-card {
    width: 700px;
    max-width: 100%;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.theme-2 .card.text-only-card.small {
    width: 360px;
}

/* Pricing Card */
.theme-2 .card.pricing-card {
    width: 360px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.theme-2 .pricing-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.theme-2 .plan-name {
    color: var(--t2-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: rgba(6, 182, 212, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.theme-2 .plan-price {
    font-size: 50px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.theme-2 .plan-price span {
    font-size: 15px;
    color: var(--t2-text-muted);
    font-weight: 400;
}

.theme-2 .pricing-header .plan-desc {
    color: var(--t2-text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.theme-2 .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.theme-2 .pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 15px;
}

.theme-2 .pricing-features li svg {
    color: var(--t2-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.5));
}

/* Simple Price Card */
.theme-2 .card.simple-price-card {
    width: 360px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.theme-2 .simple-price-card .icon {
    color: var(--t2-primary);
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.theme-2 .simple-price-card .plan-name {
    color: var(--t2-secondary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: rgba(6, 182, 212, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
}

.theme-2 .simple-price-card .plan-price {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}