/* ============================================================
   style.css — 100 Plus Academy | NEET Free Test Series Campaign
   All custom styles. BEM naming. No dark backgrounds.
   ============================================================ */

:root {
    --neet-red: #e62129;
    --neet-teal: #ff4d54;
    --neet-purple: #b31b20;
    --neet-wa: #25D366;
    --neet-dark: #003060;
    --neet-body: #4f5e71;
    --neet-bg-light: #f9fbfd;
    --neet-bg-teal-light: rgba(255, 77, 84, 0.06);
    --neet-bg-purple-light: rgba(179, 27, 32, 0.04);
    --neet-radius: 16px;
    --neet-radius-sm: 8px;
    --neet-shadow: 0 10px 30px rgba(0, 48, 96, 0.06);
    --neet-shadow-hover: 0 20px 40px rgba(0, 48, 96, 0.12);
    --neet-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Typography & Base Layout ──────────────────────────────── */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--neet-body);
    background-color: var(--neet-bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'League Spartan', sans-serif;
    color: var(--neet-dark);
    font-weight: 700;
}

.text-red {
    color: var(--neet-red) !important;
}

.text-teal {
    color: var(--neet-teal) !important;
}

.text-purple {
    color: var(--neet-purple) !important;
}

.text-green {
    color: var(--neet-wa) !important;
}

/* ── Section Structure ─────────────────────────────────────── */
.neet-section {
    padding: 5rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .neet-section {
        padding: 3.5rem 0;
    }
}

.neet-section--white {
    background-color: #ffffff;
}

.neet-section--grey {
    background-color: #f4f7fa;
}

.neet-section__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--neet-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.neet-section__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--neet-body);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.neet-section__divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--neet-teal), var(--neet-purple));
    border-radius: 5px;
    margin: 0.5rem auto 1.5rem;
}

/* ── Announcement Banner ────────────────────────────────── */
.neet-announcement {
    background: linear-gradient(90deg, var(--neet-red) 0%, var(--neet-purple) 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    padding: 0.6rem 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 100;
    position: relative;
    box-shadow: 0 4px 12px rgba(230, 33, 41, 0.2);
}

.neet-announcement__badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ── Hero Section [SECTION B] ────────────────────────────── */
.neet-hero {
    background: radial-gradient(circle at 80% 20%, rgba(69, 195, 205, 0.08) 0%, rgba(255, 255, 255, 1) 70%);
    padding: 2rem 0 2rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .neet-hero {
        padding: 2rem 0 1rem;
    }
}

/* Floating DNA & Medical Icons Animations */
.neet-hero__decor {
    position: absolute;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
}

.neet-hero__decor--dna1 {
    top: 15%;
    left: 5%;
    animation: neet-float 8s ease-in-out infinite;
}

.neet-hero__decor--dna2 {
    bottom: 15%;
    right: 5%;
    animation: neet-float 10s ease-in-out infinite reverse;
}

.neet-hero__decor--medical {
    top: 50%;
    left: 45%;
    animation: neet-pulse-glow 4s ease-in-out infinite;
}

@keyframes neet-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes neet-pulse-glow {

    0%,
    100% {
        opacity: 0.05;
        transform: scale(1);
    }

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

.neet-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(142, 84, 233, 0.08);
    border: 1px solid rgba(142, 84, 233, 0.2);
    color: var(--neet-purple);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.neet-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--neet-dark);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.neet-hero__title span {
    background: linear-gradient(135deg, var(--neet-red) 30%, var(--neet-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neet-hero__sub {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--neet-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.neet-hero__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--neet-body);
}

.neet-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.neet-hero__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neet-dark);
    margin-bottom: 0.75rem;
}

.neet-hero__bullets li i {
    color: var(--neet-teal);
    font-size: 1.1rem;
}

.neet-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.neet-hero__image-container {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.neet-hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 48, 96, 0.12);
    border: 4px solid #ffffff;
    background: #ffffff;
}

.neet-hero__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.neet-hero__image-wrapper:hover img {
    transform: scale(1.03);
}

/* Trust overlay badge */
.neet-hero__trust-badge {
    position: absolute;
    bottom: -20px;
    left: 5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 48, 96, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.neet-hero__trust-badge-stars {
    color: #ffb800;
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.neet-hero__trust-badge-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--neet-dark);
    line-height: 1.3;
}

/* ── Reusable Buttons ──────────────────────────────────────── */
.btn-neet {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: var(--neet-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-neet--primary {
    background: linear-gradient(135deg, var(--neet-red) 0%, #c0151c 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(230, 33, 41, 0.25);
}

.btn-neet--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 33, 41, 0.4);
}

.btn-neet--wa {
    background-color: var(--neet-wa);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.btn-neet--wa:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-neet--call {
    background-color: var(--neet-dark);
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 48, 96, 0.15);
}

.btn-neet--call:hover {
    background-color: #002244;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 48, 96, 0.25);
}

/* ── Benefits Section [SECTION C] ─────────────────────────── */
.neet-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.neet-benefits__card {
    background: #ffffff;
    border-radius: var(--neet-radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--neet-shadow);
    transition: var(--neet-transition);
    border: 1px solid rgba(142, 84, 233, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.neet-benefits__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neet-teal), var(--neet-purple));
    opacity: 0;
    transition: var(--neet-transition);
}

.neet-benefits__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--neet-shadow-hover);
}

.neet-benefits__card:hover::after {
    opacity: 1;
}

.neet-benefits__icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(69, 195, 205, 0.1) 0%, rgba(142, 84, 233, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neet-purple);
    margin-bottom: 1.5rem;
    transition: var(--neet-transition);
}

.neet-benefits__card:hover .neet-benefits__icon-box {
    background: linear-gradient(135deg, var(--neet-teal) 0%, var(--neet-purple) 100%);
    color: #ffffff;
    transform: scale(1.05);
}

.neet-benefits__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--neet-dark);
    margin-bottom: 0.75rem;
}

.neet-benefits__text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Why Students Fail / Infographic [SECTION D] ─────────── */
.neet-why__card-wrap {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--neet-shadow);
    border: 1px solid rgba(142, 84, 233, 0.05);
}

@media (max-width: 768px) {
    .neet-why__card-wrap {
        padding: 1.75rem;
    }
}

.neet-why__compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 991px) {
    .neet-why__compare {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.neet-why__col {
    position: relative;
}

.neet-why__col-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.neet-why__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neet-why__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f0f4f8;
}

.neet-why__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.neet-why__item-icon {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.neet-why__item-text h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--neet-dark);
}

.neet-why__item-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Stats Counter Grid */
.neet-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (max-width: 991px) {
    .neet-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.neet-stats__item {
    text-align: center;
    background: rgba(142, 84, 233, 0.04);
    border-radius: var(--neet-radius);
    padding: 1.5rem;
    border: 1px dashed rgba(142, 84, 233, 0.15);
    transition: var(--neet-transition);
}

.neet-stats__item:hover {
    transform: translateY(-3px);
    border-style: solid;
    border-color: var(--neet-teal);
    background: #ffffff;
    box-shadow: var(--neet-shadow);
}

.neet-stats__num {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--neet-teal) 0%, var(--neet-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.neet-stats__label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neet-dark);
    margin: 0;
}

/* ── YouTube Revision [SECTION E] ────────────────────────── */
.neet-youtube__card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--neet-shadow);
    border: 1px solid rgba(142, 84, 233, 0.05);
}

.neet-youtube__player-ui {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    overflow: hidden;
}

.neet-youtube__player-ui img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s ease;
}

.neet-youtube__card:hover .neet-youtube__player-ui img {
    transform: scale(1.02);
}

.neet-youtube__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 48, 96, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ffffff;
    cursor: pointer;
    z-index: 2;
}

.neet-youtube__play-btn {
    width: 76px;
    height: 76px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.neet-youtube__card:hover .neet-youtube__play-btn {
    transform: scale(1.15);
}

.neet-youtube__play-text {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.neet-youtube__content {
    padding: 2.5rem;
}

@media (max-width: 768px) {
    .neet-youtube__content {
        padding: 1.75rem;
    }
}

.neet-youtube__title {
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.neet-youtube__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

@media (max-width: 575px) {
    .neet-youtube__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.neet-youtube__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neet-dark);
}

.neet-youtube__item i {
    color: #ff0000;
    font-size: 1.1rem;
}

/* ── Features Grid [SECTION F] ───────────────────────────── */
.neet-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.neet-features__card {
    background: #ffffff;
    border-radius: var(--neet-radius);
    padding: 1.75rem;
    border: 1px solid #f0eeff;
    box-shadow: 0 4px 15px rgba(0, 48, 96, 0.03);
    transition: var(--neet-transition);
}

.neet-features__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neet-shadow-hover);
    border-color: rgba(69, 195, 205, 0.2);
}

.neet-features__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(69, 195, 205, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--neet-teal);
    margin-bottom: 1.25rem;
    transition: var(--neet-transition);
}

.neet-features__card:hover .neet-features__icon-wrap {
    background: var(--neet-teal);
    color: #ffffff;
}

.neet-features__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neet-dark);
    margin-bottom: 0.5rem;
}

.neet-features__text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ── Testimonials [SECTION G] ────────────────────────────── */
.neet-testimonials__swiper {
    padding-bottom: 3.5rem !important;
}

.neet-testimonials__slide {
    height: auto !important;
}

.neet-testimonials__card {
    background: #ffffff;
    border-radius: var(--neet-radius);
    padding: 2rem;
    box-shadow: var(--neet-shadow);
    border: 1px solid rgba(142, 84, 233, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.neet-testimonials__rating {
    color: #ffb800;
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.neet-testimonials__text {
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--neet-body);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.neet-testimonials__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f4f8;
    padding-top: 1rem;
}

.neet-testimonials__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neet-teal), var(--neet-purple));
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neet-testimonials__author h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--neet-dark);
}

.neet-testimonials__author p {
    font-size: 0.78rem;
    color: var(--neet-body);
    margin: 0;
}

/* Results Gallery Grid */
.neet-gallery {
    margin-top: 3.5rem;
}

.neet-gallery__badge {
    background: rgba(230, 33, 41, 0.08);
    border: 1px solid rgba(230, 33, 41, 0.15);
    color: var(--neet-red);
    padding: 0.6rem 1rem;
    border-radius: var(--neet-radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ── Lead capture form [SECTION H] ────────────────────────── */
.neet-lead {
    background: radial-gradient(circle at 10% 90%, rgba(142, 84, 233, 0.06) 0%, rgba(255, 255, 255, 1) 70%);
}

.neet-lead__card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(0, 48, 96, 0.08);
    border: 1px solid rgba(142, 84, 233, 0.08);
    position: relative;
    overflow: hidden;
}

.neet-lead__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--neet-red), var(--neet-teal), var(--neet-purple));
}

@media (max-width: 768px) {
    .neet-lead__card {
        padding: 1.75rem;
    }
}

.neet-lead__header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.neet-lead__header h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.neet-lead__header p {
    font-size: 0.92rem;
    margin: 0;
}

.form-group-neet {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label-neet {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neet-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-neet {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px solid #d8e2ef;
    background-color: #fcfdfe;
    color: var(--neet-dark);
    transition: var(--neet-transition);
}

.form-control-neet:focus {
    border-color: var(--neet-teal);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(69, 195, 205, 0.15);
    outline: none;
}

select.form-control-neet {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23003060' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.neet-lead__trust {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.78rem;
    color: var(--neet-body);
    margin-top: 1.5rem;
    text-align: center;
}

.neet-lead__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.neet-lead__trust-item i {
    color: var(--neet-teal);
}

/* ── Results / Motivation [SECTION I] ─────────────────────── */
.neet-motivation {
    background: linear-gradient(135deg, var(--neet-dark) 0%, #001f40 100%);
    color: #ffffff;
    overflow: hidden;
}

.neet-motivation__content {
    position: relative;
    z-index: 2;
}

.neet-motivation__title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.neet-motivation__title span {
    color: var(--neet-teal);
}

.neet-motivation__quote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 3px solid var(--neet-red);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.neet-motivation__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neet-motivation__bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.neet-motivation__bullets li i {
    color: var(--neet-red);
    font-size: 1.2rem;
}

.neet-motivation__visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.neet-motivation__trophy {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    animation: neet-float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(69, 195, 205, 0.4));
    z-index: 2;
}

.neet-motivation__glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(69, 195, 205, 0.25) 0%, rgba(69, 195, 205, 0) 70%);
    filter: blur(20px);
    z-index: 1;
}

/* ── FAQ Accordion [SECTION J] ───────────────────────────── */
.neet-faq {
    background-color: var(--neet-bg-light);
}

.neet-faq__accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--neet-radius) !important;
    margin-bottom: 1rem;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 48, 96, 0.02);
    overflow: hidden;
    transition: var(--neet-transition);
}

.neet-faq__accordion .accordion-item:hover {
    box-shadow: var(--neet-shadow);
    border-color: rgba(142, 84, 233, 0.15);
}

.neet-faq__accordion .accordion-header {
    margin: 0;
}

.neet-faq__accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    font-weight: 700;
    color: var(--neet-dark);
    padding: 1.25rem 1.5rem;
    background-color: transparent;
    box-shadow: none;
    text-align: left;
    transition: var(--neet-transition);
}

.neet-faq__accordion .accordion-button:not(.collapsed) {
    color: var(--neet-purple);
    background-color: rgba(142, 84, 233, 0.03);
}

.neet-faq__accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23003060' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4.5v15m7.5-7.5h-15'/%3E%3C/svg%3E");
    background-size: 1.1rem;
    transition: var(--neet-transition);
    transform: rotate(0deg);
}

.neet-faq__accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23b31b20' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 12h-15'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.neet-faq__accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--neet-body);
    border-top: 1px solid #f0f4f8;
    background-color: #ffffff;
}

/* ── Final CTA & Strips [SECTION K] ───────────────────────── */
.neet-cta-final {
    background: linear-gradient(135deg, rgba(69, 195, 205, 0.08) 0%, rgba(142, 84, 233, 0.08) 100%);
    text-align: center;
    border-top: 1px solid rgba(142, 84, 233, 0.08);
}

.neet-cta-final h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.neet-cta-final p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.neet-cta-final__actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ── Sticky Mobile Bottom Action Bar ────────────────────────── */
.neet-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -10px 30px rgba(0, 48, 96, 0.08);
    display: none;
    z-index: 1000;
    padding: 0.6rem 1rem;
    animation: slideUpBar 0.4s ease-out;
}

@keyframes slideUpBar {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .neet-sticky-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    /* Offset footer slightly so sticky bar doesn't cover content */
    body {
        padding-bottom: 70px !important;
    }
}

.neet-sticky-bar__btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.75rem 0.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
}

.neet-sticky-bar__btn--enroll {
    flex: 1.5;
    background: linear-gradient(135deg, var(--neet-red) 0%, #c0151c 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(230, 33, 41, 0.2);
}

.neet-sticky-bar__btn--wa {
    background-color: var(--neet-wa);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.neet-sticky-bar__btn--call {
    background-color: var(--neet-dark);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 48, 96, 0.1);
}

/* ── Lightbox for Results Gallery ───────────────────────────── */
.neet-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neet-lightbox.active {
    display: flex;
    opacity: 1;
}

.neet-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.neet-lightbox.active .neet-lightbox__img {
    transform: scale(1);
}

.neet-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: transform 0.2s;
}

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

/* Grid for results cards in Testimonial Section */
.neet-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 1.5rem;
}

.neet-result-card {
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: auto;
    transition: var(--neet-transition);
}

.neet-result-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.neet-result-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.neet-result-card img.loaded {
    opacity: 1;
}

@media (max-width: 767px) {
    .neet-hero__trust-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 1.5rem auto 0;
        background: #ffffff;
        border: 1px solid rgba(0, 48, 96, 0.08);
        box-shadow: 0 5px 15px rgba(0, 48, 96, 0.04);
    }
}