/**
 * Landing Page Styles - Direct MBBS Admission
 * Brand: medicalcounseling.in
 */

/* CSS Variables (Fallback if medical-theme.css doesn't load) */
:root {
    --medical-navy: #0F3D64;
    --medical-green: #2E8B57;
    --pure-white: #FFFFFF;
    --text-secondary: #708090;
    --border-light: #D1D9E0;
}

/* ===================================
   Hero Section
   =================================== */
.landing-hero {
    background: linear-gradient(135deg, #0F3D64 0%, #1a5280 50%, #2E8B57 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    color: #FFD700;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--pure-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pure-white);
    font-weight: 600;
}

.feature-item i {
    color: #10B981;
    font-size: 20px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-landing {
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F3D64;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-primary-landing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    color: #0F3D64;
}

.btn-outline-landing {
    padding: 16px 32px;
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-landing:hover {
    background: var(--pure-white);
    color: #0F3D64;
}

/* Hero Form Card */
.hero-form-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-form-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--medical-navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-form-card h3 i {
    color: var(--medical-green);
}

.hero-form-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.enquiry-form .form-group {
    margin-bottom: 16px;
}

.enquiry-form input,
.enquiry-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
    outline: none;
    border-color: var(--medical-green);
    box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}

.btn-submit-form {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2E8B57 0%, #1a7a4a 100%);
    color: var(--pure-white);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-form:hover {
    background: linear-gradient(135deg, #1a7a4a 0%, #2E8B57 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.stat-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(46, 139, 87, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(15, 61, 100, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 36px;
    color: var(--medical-green);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #2E8B57 0%, #0F3D64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(15, 61, 100, 0.1) 100%);
    color: var(--medical-green);
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--medical-navy);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   Info Section
   =================================== */
.info-section {
    padding: 80px 0;
}

.info-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--medical-navy);
    margin-bottom: 20px;
}

.info-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point-item {
    display: flex;
    gap: 16px;
}

.point-item i {
    font-size: 24px;
    color: var(--medical-green);
    flex-shrink: 0;
}

.point-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 8px;
}

.point-item p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E8B57 0%, #0F3D64 100%);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.benefit-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(46, 139, 87, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2E8B57 0%, #0F3D64 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--pure-white);
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--medical-navy);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #0F3D64 0%, #2E8B57 100%);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(46, 139, 87, 0.2);
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta-large {
    padding: 18px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0F3D64;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    color: #0F3D64;
}

/* ===================================
   FAQ Section (Modern)
   =================================== */
.faq-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item-modern {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item-modern:hover {
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
    border-color: rgba(46, 139, 87, 0.2);
}

.faq-item-modern.active {
    border-color: var(--medical-green);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(46, 139, 87, 0.03);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(15, 61, 100, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-modern.active .faq-icon {
    background: linear-gradient(135deg, #2E8B57 0%, #0F3D64 100%);
}

.faq-icon i {
    font-size: 22px;
    color: var(--medical-green);
    transition: all 0.3s ease;
}

.faq-item-modern.active .faq-icon i {
    color: var(--pure-white);
    transform: scale(1.1);
}

.faq-question h4 {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--medical-navy);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: rgba(46, 139, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-modern.active .faq-toggle {
    background: var(--medical-green);
    transform: rotate(180deg);
}

.faq-toggle i {
    font-size: 14px;
    color: var(--medical-green);
    transition: all 0.3s ease;
}

.faq-item-modern.active .faq-toggle i {
    color: var(--pure-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 24px;
}

.faq-item-modern.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(46, 139, 87, 0.1);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .landing-hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-form-card {
        margin-top: 40px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .landing-hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary-landing,
    .btn-outline-landing {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-card {
        padding: 32px 24px;
        text-align: center;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .btn-cta-large {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    /* FAQ Grid Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-icon {
        width: 44px;
        height: 44px;
    }

    .faq-icon i {
        font-size: 20px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }
}