/* ===== NEET UG PAGE STYLES ===== */

/* ===== DARK NAVBAR ===== */
.neet-navbar {
    background: var(--primary-navy) !important;
    box-shadow: none !important;
}

.neet-navbar .nav-container {
    max-width: 1200px;
}

.neet-logo {
    gap: 0 !important;
}

.neet-logo span {
    color: white !important;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.3px;
}

.neet-navbar .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    font-weight: 400;
}

.neet-navbar .nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.neet-navbar .nav-links a.neet-active {
    color: var(--primary-red);
    background: none;
    position: relative;
    font-weight: 600;
}

.neet-navbar .nav-links a.neet-active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 2px;
    background: var(--primary-red);
    border-radius: 1px;
}

.neet-navbar .mobile-menu-btn {
    color: white;
}

/* Nav action buttons */
.neet-page .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call-outlined {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-call-outlined i {
    font-size: 0.78rem;
}

.btn-call-outlined:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-book-red {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: white;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-book-red i {
    font-size: 0.9rem;
}

.btn-book-red:hover {
    background: var(--primary-red-dark);
    transform: translateY(-1px);
}

/* Hide default btn-book-session */
.neet-navbar .btn-book-session {
    display: none;
}

/* ===== TRUST STRIP ===== */
.neet-trust-strip {
    margin-top: 60px;
    background: var(--primary-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 24px;
}

.trust-strip-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.84rem;
    font-weight: 400;
    white-space: nowrap;
}

.trust-strip-item i {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== NEET HERO ===== */
.neet-hero {
    background: linear-gradient(170deg, #1a1a2e 0%, #16213e 40%, #0f172a 100%);
    padding: 80px 24px 88px;
    text-align: center;
    position: relative;
}

.neet-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.neet-hero-container {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.neet-hero-text {
    flex: 1.2;
}

.neet-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.7rem;
    font-weight: 800;
    color: white;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.neet-hero p {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 32px;
}

.neet-hero-media {
    flex: 0.9;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.neet-counsel-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border-radius: 14px;
    background: white;
}

.btn-cta-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-cta-red i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.btn-cta-red:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(220, 38, 38, 0.4);
}

.btn-cta-red:hover i {
    transform: translateX(3px);
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
    padding: 72px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.success-stories-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.success-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.success-tag {
    display: inline-block;
    background: #eff6ff;
    color: #1e40af;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid #bfdbfe;
}

.success-text-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.success-text-box > p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

.success-highlights {
    display: flex;
    gap: 24px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.sh-item strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.sh-item span {
    font-size: 0.76rem;
    color: var(--text-gray);
}

@media (max-width: 900px) {
    .neet-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .neet-hero-media {
        width: 100%;
        max-width: 400px;
    }
    .success-stories-container {
        grid-template-columns: 1fr;
    }
    .success-img {
        height: 280px;
    }
}

/* ===== STEP-BY-STEP PROCESS ===== */
.process-section {
    padding: 72px 24px 80px;
    background: var(--bg-white);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-container h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 36px 22px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    /* Dashed top border */
    border-top: 2.5px dashed #cbd5e1;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    border-top-color: var(--primary-navy);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 2px 8px rgba(22, 33, 62, 0.2);
}

.process-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.84rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== NEET FOOTER ===== */
.neet-footer {
    background: var(--primary-navy);
    padding: 0;
}

.neet-footer .footer-container,
.neet-footer .footer-bottom {
    display: none;
}

.neet-footer-main {
    padding: 48px 24px 0;
}

.neet-footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.neet-footer-brand h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.neet-footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.neet-footer-links h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.neet-footer-links ul {
    list-style: none;
}

.neet-footer-links li {
    margin-bottom: 10px;
}

.neet-footer-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.neet-footer-links a:hover {
    color: white;
    text-decoration-color: white;
}

.neet-footer-links a i {
    font-size: 0.78rem;
}

.neet-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 18px 24px;
}

.neet-footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
}

/* ===== FLOATING BUTTONS WITH TOOLTIP ===== */
.neet-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 999;
}

.floating-tooltip {
    background: white;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    text-align: left;
    margin-bottom: 2px;
    position: relative;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.floating-tooltip strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
}

.floating-tooltip span {
    font-size: 0.72rem;
    color: var(--text-gray);
}

.neet-floating .floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.neet-floating .floating-btn:hover {
    transform: scale(1.1);
}

.neet-floating .msg-btn {
    background: var(--primary-red);
}

.neet-floating .call-btn {
    background: var(--primary-red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .neet-page .nav-actions {
        display: none;
    }

    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .neet-hero h1 {
        font-size: 2.1rem;
    }

    .neet-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .trust-strip-container {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .neet-hero h1 {
        font-size: 1.7rem;
    }

    .neet-hero {
        padding: 56px 16px 64px;
    }

    .trust-strip-container {
        flex-direction: column;
        gap: 10px;
    }

    .process-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .process-cards {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding: 52px 16px 60px;
    }

    .neet-footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .btn-cta-red {
        padding: 13px 28px;
        font-size: 0.88rem;
    }
}
