/* =========================================================
   GYNOVATE AI – Premium Dark UI Stylesheet
   Healthcare • AI • Authority • Conversion
   ========================================================= */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --bg-dark: #0b0b0b;
    --text-white: #ffffff;
    --text-muted: #b5b5b5;
    --accent-yellow: #f5c400;
    --border-dark: rgba(255, 255, 255, 0.1);
}

/* ---------- GLOBAL RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- HEADER / NAVBAR ---------- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid var(--border-dark);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 16px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-links .btn {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
}
/* ---------- LOGO IMAGE ---------- */
.logo img {
    height: 34px;              /* Ideal for navbar */
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 30px;
    }
}
/* ================= LOGO GROUP ================= */

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Main brand logo */
.main-logo {
    height: 38px;
    width: auto;
}

/* Powered-by stack */
.powered-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

/* Powered by text */
.powered-by {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.6px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

/* Partner logo */
.partner-logo {
    height: 30px;
    width: auto;
    opacity: 0.9;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .main-logo {
        height: 32px;
    }

    .partner-logo {
        height: 18px;
    }

    .powered-by {
        font-size: 9px;
    }
}

/* ================= NAVIGATION ================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Desktop links */
.nav-desktop {
    display: flex;
    gap: 18px;
}

/* Enroll button */
.nav-enroll {
    padding: 10px 18px;
    font-weight: 700;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent-yellow);
}

.nav-hamburger i {
    width: 26px;
    height: 26px;
}

/* Mobile Menu */
.nav-mobile-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.95);
    border: 1px solid rgba(245,196,0,0.35);
    border-radius: 12px;
    padding: 12px 0;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 999;
}

.nav-mobile-menu a {
    padding: 10px 18px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.nav-mobile-menu a:hover {
    background: rgba(245,196,0,0.1);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }
}

/*nav btn fix*/
/* ================= MOBILE ENROLL BUTTON FIX ================= */

.nav-enroll,
.nav-links .btn {
    white-space: nowrap;        /* 👈 KEY FIX */
    min-width: fit-content;
    padding: 10px 18px;
    line-height: 1;
    text-align: center;
}

/* Mobile-specific tightening */
@media (max-width: 600px) {
    .nav-enroll,
    .nav-links .btn {
        padding: 10px 14px;     /* slightly tighter */
        font-size: 14px;
    }
}

/* ================= ENROLL NOW CTA ANIMATION ================= */

.nav-enroll {
    position: relative;
    overflow: hidden;
    animation: enrollPulse 2.8s ease-in-out infinite;
}

/* Soft pulse glow */
@keyframes enrollPulse {
    0% {
        box-shadow: 0 0 0 rgba(245,196,0,0.4);
    }
    50% {
        box-shadow: 0 0 18px rgba(245,196,0,0.65);
    }
    100% {
        box-shadow: 0 0 0 rgba(245,196,0,0.4);
    }
}

/* Hover lift + shine */
.nav-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245,196,0,0.55);
}

/* Subtle shine sweep */
.nav-enroll::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition: all 0.6s ease;
}

.nav-enroll:hover::after {
    left: 120%;
}

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    padding: 140px 20px 80px;
    background:
        radial-gradient(circle at center, rgba(245, 196, 0, 0.08), transparent 60%),
        repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 80px
        ),
        #0b0b0b;
}

.hero-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* ---------- LAUNCH PILL ---------- */
.launch-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
}
/*-------- hero date pill----*/
/* ------------------------------ */
/* HERO DATE PILL (NEW - UNIQUE)  */
/* ------------------------------ */

.hero-date-pill-wrap{
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.hero-date-pill{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;

    background: linear-gradient(90deg, #f5c400, #ffd84a);
    color: #121212;

    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.2px;

    box-shadow:
        0 0 0 1px rgba(245,196,0,0.55),
        0 10px 28px rgba(245,196,0,0.18),
        0 0 55px rgba(245,196,0,0.15);

    overflow: hidden;
    transform-origin: center;
    animation: heroDatePulse 1.8s ease-in-out infinite;
}

/* shimmer sweep */
.hero-date-pill::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.45) 45%,
        rgba(255,255,255,0) 75%
    );
    transform: translateX(-140%);
    animation: heroDateShimmer 2.8s ease-in-out infinite;
    pointer-events: none;
}

.hero-date-pill-icon{
    font-size: 14px;
    opacity: 0.9;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

.hero-date-pill-text{
    font-weight: 900;
}

.hero-date-pill-sep{
    opacity: 0.55;
    font-weight: 900;
}

.hero-date-pill-price{
    font-weight: 900;
}

/* pulse animation */
@keyframes heroDatePulse{
    0%, 100%{
        transform: scale(1);
        box-shadow:
            0 0 0 1px rgba(245,196,0,0.55),
            0 10px 28px rgba(245,196,0,0.18),
            0 0 55px rgba(245,196,0,0.15);
    }
    50%{
        transform: scale(1.03);
        box-shadow:
            0 0 0 1px rgba(245,196,0,0.75),
            0 14px 36px rgba(245,196,0,0.24),
            0 0 75px rgba(245,196,0,0.22);
    }
}

@keyframes heroDateShimmer{
    0%{ transform: translateX(-140%); }
    55%{ transform: translateX(140%); }
    100%{ transform: translateX(140%); }
}

/* Mobile refinement */
@media (max-width: 768px){
    .hero-date-pill{
        font-size: 14px;
        padding: 10px 14px;
        gap: 8px;
        text-align: center;
    }
}
.hero-date-pill-wrap{
    margin-top: 18px;
    margin-bottom: 18px; /* NEW */
}

/* ---------- HERO HEADLINE ---------- */
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--accent-yellow);
}

/* ---------- HERO DESCRIPTION ---------- */
.hero p {
    max-width: 720px;
    margin: 28px auto 40px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.75;
}

/* ---------- AUTHOR / CREDIBILITY ---------- */
.author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 44px;
}

.author-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author small {
    color: var(--text-muted);
    display: block;
    font-size: 12px;
    line-height: 1.4;
}

/* ---------- CTA BUTTONS ---------- */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.cta-primary {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 196, 0, 0.28);
}

.cta-secondary {
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.cta-secondary:hover {
    background-color: var(--accent-yellow);
    color: #000;
}

/* ---------- CREDENTIAL STRIP ---------- */
.credentials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
}

.credentials span::before {
    content: "●";
    color: var(--accent-yellow);
    margin-right: 8px;
}

/* ---------- RESPONSIVE (MOBILE) ---------- */
@media (max-width: 768px) {

    .hero {
        padding: 120px 16px 60px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .nav-links a {
        display: none;
    }

    .nav-links .btn {
        display: inline-block;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}
/* =========================================================
   AUDIENCE TAGS SECTION
   ========================================================= */

.audience-tags {
    padding: 120px 20px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.02),
        rgba(0,0,0,0.98)
    );
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.audience-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.audience-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.audience-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 48px;
    line-height: 1.3;
}

.audience-title span {
    color: var(--accent-yellow);
}

/* ---------- TAGS GRID ---------- */
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.tag {
    padding: 12px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 14px;
    color: var(--text-white);
    background: rgba(255,255,255,0.02);
    transition: all 0.25s ease;
    cursor: default;
    white-space: nowrap;
}

.tag:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    background: rgba(245,196,0,0.06);
}

/* Wider tag for long text */
.tag-wide {
    padding-left: 26px;
    padding-right: 26px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

    .audience-tags {
        padding: 90px 16px;
    }

    .audience-title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .tag {
        font-size: 13px;
        padding: 10px 18px;
    }
}
/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    padding: 140px 20px 120px;
    background:
        radial-gradient(circle at bottom right, rgba(120,0,0,0.25), transparent 55%),
        radial-gradient(circle at top left, rgba(255,0,0,0.15), transparent 45%),
        linear-gradient(180deg, #050505, #0b0003 60%, #050505);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Pill */
.hero-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 26px;
}

/* Title */
.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-title span {
    color: var(--accent-yellow);
}

/* Flags */
.hero-flags {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-flags .sep {
    margin: 0 8px;
}

/* Live Dot */
.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ff3b3b;
    border-radius: 50%;
    margin-right: 6px;
    animation: heartbeat 1.6s infinite;
}

/* Description */
.hero-desc {
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
}

/* Metrics */
/* HERO METRICS – REFINED */

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;                    /* space between items */
    font-size: 14px;
    font-weight: 700;             /* bold text */
    color: var(--accent-yellow);
    margin-bottom: 42px;
}

.hero-metrics span {
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.3px;
}

/* Separator styling */
.hero-metrics span:nth-child(even) {
    font-weight: 400;
    color: rgba(245, 196, 0, 0.35);  /* subtle line */
    margin: 0 4px;
}


/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 50px;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-btn.primary {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 40px rgba(245,196,0,0.45);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(245,196,0,0.65);
}

.hero-btn.outline {
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
}

.hero-btn.outline:hover {
    background: rgba(245,196,0,0.12);
    transform: translateY(-2px);
}

/* Instructor */
/* HERO INSTRUCTOR – CENTER ALIGN */

.hero-instructor {
    display: flex;
    flex-direction: column;          /* stack image + text */
    align-items: center;             /* horizontal center */
    justify-content: center;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;                  /* center block */
    text-align: center;              /* center text */
}

.hero-instructor img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent-yellow);
    object-fit: cover;
}

.hero-instructor small {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-instructor strong {
    display: block;
    font-size: 15px;
    margin-top: 4px;
}

.hero-instructor p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 720px;               /* keeps paragraph readable */
}


/* Animations */
@keyframes heartbeat {
    0% { transform: scale(1); opacity: 1; }
    40% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-actions {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 110px 16px 90px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-instructor {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================================================
   WHAT YOU WILL GAIN – SECTION
   ========================================================= */

.what-you-gain {
    padding: 120px 20px;
    background:
        radial-gradient(circle at top, rgba(245,196,0,0.06), transparent 55%),
        #0b0b0b;
    border-top: 1px solid var(--border-dark);
}

.wyg-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.wyg-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
}

.wyg-title span {
    color: var(--accent-yellow);
}

.wyg-subtitle {
    max-width: 720px;
    margin: 0 auto 64px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ---------- GRID ---------- */
.wyg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---------- CARD ---------- */
.wyg-card {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 34px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.wyg-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* ---------- ICON ---------- */
.wyg-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(245,196,0,0.12);
    color: var(--accent-yellow);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* ---------- TEXT ---------- */
.wyg-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.wyg-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .wyg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .what-you-gain {
        padding: 90px 16px;
    }

    .wyg-title {
        font-size: 30px;
    }

    .wyg-subtitle {
        margin-bottom: 44px;
    }

    .wyg-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   COURSE STRUCTURE SECTION
   ========================================================= */

.course-structure {
    padding: 120px 20px;
    background:
        radial-gradient(circle at top, rgba(245,196,0,0.05), transparent 60%),
        #0b0b0b;
    border-top: 1px solid var(--border-dark);
}

.cs-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Date pill */
.cs-date-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

/* Title */
.cs-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
}

.cs-title span {
    color: var(--accent-yellow);
}

.cs-subtitle {
    max-width: 720px;
    margin: 0 auto 64px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Cards grid */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}

.cs-card {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 30px 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.cs-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Icon */
.cs-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245,196,0,0.12);
    color: var(--accent-yellow);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Card text */
.cs-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cs-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Timeline */
.cs-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.cs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.cs-step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.cs-step-text strong {
    display: block;
    font-size: 14px;
}

.cs-step-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.cs-line {
    width: 80px;
    height: 2px;
    background: rgba(245,196,0,0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .cs-grid {
        grid-template-columns: 1fr;
    }

    .cs-timeline {
        flex-direction: column;
    }

    .cs-line {
        width: 2px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .course-structure {
        padding: 90px 16px;
    }

    .cs-title {
        font-size: 30px;
    }

    .cs-subtitle {
        margin-bottom: 44px;
    }
}
/*new*/
/* COURSE STRUCTURE – COMPACT + ICON UPGRADE */

/* Reduce vertical padding */
.course-structure {
    padding: 90px 20px;
}

/* Date pill icon alignment */
.cs-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Tighten subtitle spacing */
.cs-subtitle {
    margin-bottom: 44px;
}

/* Grid spacing reduced */
.cs-grid {
    gap: 22px;
    margin-bottom: 56px;
}

/* Cards more compact */
.cs-card {
    padding: 26px 24px;
}

/* Icon styling */
.cs-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(245,196,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cs-icon i {
    width: 22px;
    height: 22px;
    color: var(--accent-yellow);
    stroke-width: 2;
}

/* Title spacing tightened */
.cs-card h3 {
    margin-bottom: 6px;
}

/* Timeline spacing tightened */
/* COURSE STRUCTURE TIMELINE – SINGLE LINE */

/* Timeline container */
.cs-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;          /* 🔒 force single line */
    overflow-x: auto;           /* safety on very small screens */
    padding: 10px 0;
}

/* Step block */
.cs-step {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: fit-content;
}

/* Number circle */
.cs-step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Text */
.cs-step-text {
    text-align: left;
    white-space: nowrap;        /* prevents breaking */
}

.cs-step-text strong {
    display: block;
    font-size: 14px;
}

.cs-step-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Arrow */
.cs-arrow {
    font-size: 20px;
    color: rgba(245,196,0,0.6);
    font-weight: 600;
    flex-shrink: 0;
}
/*new cs arrows*/
/* =========================================================
   FORCE COURSE TIMELINE SINGLE-LINE (OVERRIDE)
   ========================================================= */

.course-structure .cs-timeline.cs-timeline-inline {
    display: flex !important;
    flex-direction: row !important;     /* 🔒 force horizontal */
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;        /* 🔒 no wrapping */
    overflow-x: auto;                    /* mobile safety */
    padding: 12px 0;
}

.course-structure .cs-timeline.cs-timeline-inline .cs-step {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.course-structure .cs-timeline.cs-timeline-inline .cs-step-text {
    white-space: nowrap;
    text-align: left;
}

/* Arrow */
.course-structure .cs-arrow {
    font-size: 20px;
    color: rgba(245,196,0,0.6);
    font-weight: 600;
    flex-shrink: 0;
}

/* Step circle */
.course-structure .cs-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
/*new 2*/
/* =========================================================
   COURSE TIMELINE – SPACING, SHRINK & LONG ARROWS
   ========================================================= */

.course-structure .cs-timeline.cs-timeline-inline {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;              /* ✅ more space between steps */
    flex-wrap: nowrap !important;
    padding: 16px 0;
}

/* Step block */
.course-structure .cs-timeline.cs-timeline-inline .cs-step {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 1;                    /* ✅ allow shrink on mobile */
}

/* Step text */
.course-structure .cs-step-text strong {
    font-size: 14px;
}

.course-structure .cs-step-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Number circle */
.course-structure .cs-step-circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
    flex-shrink: 0;
}

/* LONG ARROWS */
.course-structure .cs-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;                       /* ✅ longer arrow space */
    font-size: 22px;
    color: rgba(245,196,0,0.55);
    font-weight: 600;
    flex-shrink: 0;
}

/* MOBILE REFINEMENT */
@media (max-width: 600px) {
    .course-structure .cs-timeline.cs-timeline-inline {
        gap: 18px !important;          /* tighter gaps */
    }

    .course-structure .cs-step-circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .course-structure .cs-step-text strong {
        font-size: 13px;
    }

    .course-structure .cs-step-text span {
        font-size: 11px;
    }

    .course-structure .cs-arrow {
        width: 36px;
        font-size: 20px;
    }
}


/* =========================================================
   WHY GYNOVATE AI IS DIFFERENT
   ========================================================= */

.why-we-different {
    padding: 120px 20px;
    background:
        radial-gradient(circle at top, rgba(255,0,0,0.06), transparent 60%),
        #0b0b0b;
    border-top: 1px solid var(--border-dark);
}

.wwd-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Title */
.wwd-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 64px;
}

.wwd-title span {
    color: #ff3b3b; /* Red accent as per design */
}

/* Grid */
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Card */
.wwd-card {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: left;
    transition: all 0.3s ease;
}

.wwd-card:hover {
    border-color: #ff3b3b;
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.6);
}

/* Icon */
.wwd-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,59,59,0.12);
    color: #ff3b3b;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Text */
.wwd-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.wwd-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .wwd-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .why-we-different {
        padding: 90px 16px;
    }

    .wwd-title {
        font-size: 30px;
        margin-bottom: 44px;
    }
}
/* =========================================================
   MEET YOUR INSTRUCTOR
   ========================================================= */

.meet-instructor {
    padding: 120px 20px;
    background:
        radial-gradient(circle at left, rgba(245,196,0,0.08), transparent 55%),
        #0b0b0b;
    border-top: 1px solid var(--border-dark);
}

.mi-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.mi-left {
    position: relative;
}

.mi-carousel {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.15);
}

.mi-slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.mi-slide {
    min-width: 100%;
    height: 100%;
}

.mi-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Location badge */
.mi-location {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0,0,0,0.7);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* RIGHT */
.mi-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.mi-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}

.mi-title span {
    color: var(--accent-yellow);
}

.mi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.mi-tags span {
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(245,196,0,0.1);
    color: var(--accent-yellow);
    font-size: 12.5px;
    border: 1px solid rgba(245,196,0,0.3);
}

.mi-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* STATS */
.mi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.mi-stat {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
}

.mi-stat strong {
    display: block;
    font-size: 26px;
    color: var(--accent-yellow);
    margin-bottom: 6px;
}

.mi-stat span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ANIMATION */
@keyframes slideShow {
    0%   { transform: translateX(0%); }
    20%  { transform: translateX(0%); }
    25%  { transform: translateX(-100%); }
    40%  { transform: translateX(-100%); }
    45%  { transform: translateX(-200%); }
    60%  { transform: translateX(-200%); }
    65%  { transform: translateX(-300%); }
    80%  { transform: translateX(-300%); }
    85%  { transform: translateX(-400%); }
    100% { transform: translateX(-400%); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .mi-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .meet-instructor {
        padding: 90px 16px;
    }

    .mi-title {
        font-size: 30px;
    }

    .mi-stats {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   SUCCESS STORIES / TESTIMONIALS
   ========================================================= */

.success-stories {
    padding: 120px 20px;
    background:
        radial-gradient(circle at top, rgba(245,196,0,0.05), transparent 60%),
        #0b0b0b;
    border-top: 1px solid var(--border-dark);
}

.ss-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Pill */
.ss-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Title */
.ss-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ss-title span {
    color: var(--accent-yellow);
}

.ss-subtitle {
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: var(--text-muted);
}

/* Grid */
.ss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.ss-card {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.ss-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
}

/* Quote */
.ss-quote {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 26px;
    color: var(--accent-yellow);
}

/* Stars */
.ss-stars {
    color: var(--accent-yellow);
    font-size: 14px;
    margin-bottom: 14px;
}

/* Text */
.ss-text {
    font-size: 14.8px;
    line-height: 1.75;
    color: var(--text-white);
    margin-bottom: 24px;
}

/* Author */
.ss-author {
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 16px;
}

.ss-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.ss-author strong {
    font-size: 14px;
}

.ss-author small {
    font-size: 12px;
    color: var(--text-muted);
}

/* Stats */
.ss-stats {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ss-stats div {
    background: rgba(245,196,0,0.08);
    border: 1px solid rgba(245,196,0,0.3);
    border-radius: 14px;
    padding: 26px 16px;
}

.ss-stats strong {
    display: block;
    font-size: 26px;
    color: var(--accent-yellow);
}

.ss-stats span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1000px) {
    .ss-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .success-stories {
        padding: 90px 16px;
    }

    .ss-title {
        font-size: 30px;
    }

    .ss-grid,
    .ss-stats {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   PRICING GRID – FOUNDER OFFER
   ========================================================= */
/* =========================================================
   PRICING GRID – COMPACT & POLISHED
   ========================================================= */

.pricing-grid {
    padding: 100px 20px;
    background:
        radial-gradient(circle at center, rgba(245,196,0,0.08), transparent 60%),
        #0b0b0b;
    border-top: 1px solid var(--border-dark);
}

.pg-container {
    max-width: 950px;
    margin: auto;
    text-align: center;
}

/* Top Pill */
.pg-top-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #ff3b3b;
    color: #ff3b3b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

/* Title */
.pg-title {
    font-size: 40px;
    font-weight: 700;
}

.pg-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 44px;
}

/* Countdown */
.pg-countdown {
    max-width: 520px;
    margin: 0 auto 50px;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(255,0,0,0.3);
    background: rgba(255,0,0,0.05);
}

.pg-countdown-title {
    font-size: 13px;
    color: #ff3b3b;
    margin-bottom: 14px;
    font-weight: 600;
}

.pg-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pg-timer div {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,0,0,0.4);
    border-radius: 10px;
    padding: 12px;
}

.pg-timer strong {
    font-size: 22px;
    color: #ff3b3b;
}

.pg-timer span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

/* Card */
.pg-card {
    position: relative;
    border-radius: 20px;
    padding: 48px 36px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(245,196,0,0.35);
    box-shadow: 0 0 50px rgba(245,196,0,0.15);
}

/* Badge */
.pg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

/* Grid */
.pg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    text-align: left;
}

/* Pricing */
.pg-label {
    font-size: 13px;
    color: var(--text-muted);
}

.pg-price-main {
    font-size: 42px;
    color: var(--accent-yellow);
    font-weight: 800;
}

.pg-price-old {
    font-size: 18px;
    margin-left: 10px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.pg-save {
    font-size: 13px;
    color: var(--accent-yellow);
    margin: 12px 0 16px;
}

.pg-features {
    list-style: none;
    padding: 0;
}

.pg-features li {
    font-size: 14.5px;
    margin-bottom: 8px;
}

/* Bonus */
.pg-right {
    background: linear-gradient(
        to bottom,
        rgba(245,196,0,0.06),
        rgba(0,0,0,0)
    );
    border-radius: 16px;
    padding: 28px;
}

.pg-bonus-title {
    font-size: 13px;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 10px;
}

.pg-bonus-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Buttons */
.pg-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.pg-btn-animated {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
}

/* Primary */
.pg-btn-animated.primary {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 35px rgba(245,196,0,0.4);
}

.pg-btn-animated.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 55px rgba(245,196,0,0.65);
}

/* Outline */
.pg-btn-animated.outline {
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
}

.pg-btn-animated.outline:hover {
    background: rgba(245,196,0,0.12);
    transform: translateY(-2px);
}

/* CTA */
.pg-cta {
    text-align: center;
    margin-top: 42px;
}

.pg-secure {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .pg-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        padding: 80px 16px;
    }

    .pg-btn-animated {
        width: 100%;
    }
}
/*new pg*/
/* =========================================================
   PRICING GRID BUTTONS (ISOLATED)
   ========================================================= */

.pg-price-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* Primary (Yellow) */
.pg-primary-btn {
    background: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 35px rgba(245,196,0,0.45);
}

.pg-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 55px rgba(245,196,0,0.65);
}

/* Outline (Secondary) */
.pg-outline-btn {
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    background: transparent;
}

.pg-outline-btn:hover {
    background: rgba(245,196,0,0.12);
    transform: translateY(-2px);
}

/* Button stack spacing */
.pg-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
@media (max-width: 600px) {
    .pg-price-btn {
        width: 100%;
    }
}
/* =========================================================
   PRICING COUNTDOWN – TYPOGRAPHY & SPACING REFINEMENT
   ========================================================= */

/* Bigger, clearer numbers */
.pg-timer strong {
    font-size: 30px;              /* was ~22–26px */
    font-weight: 800;
    line-height: 1;
}

/* Label spacing */
.pg-timer span {
    margin-top: 4px;
    font-size: 12px;
}

/* Countdown date with Lucide icon */

.pg-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-size: 13px;
    color: var(--text-muted);
}

.pg-date i {
    width: 18px;
    height: 18px;
    color: var(--accent-yellow);
    stroke-width: 2;
}


/* Optional: slightly increase gap between timer boxes */
.pg-timer {
    gap: 16px;
}

/* Mobile refinement */
@media (max-width: 600px) {
    .pg-timer strong {
        font-size: 24px;          /* scales down gracefully */
    }

    .pg-date {
        margin-top: 18px;
    }
}

/* =========================================================
   FINAL CALL TO ACTION
   ========================================================= */

.final-cta {
    padding: 140px 20px;
    background:
        radial-gradient(circle at center, rgba(245,196,0,0.08), transparent 60%),
        radial-gradient(circle at top left, rgba(255,0,0,0.08), transparent 55%),
        #0b0b0b;
    border-top: 1px solid var(--border-dark);
}

.cta-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* Highlight boxes */
/* =========================================================
   CTA HIGHLIGHTS – ICON + COLOR REFINEMENT
   ========================================================= */

.cta-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

/* Base box */
.cta-box {
    padding: 18px 14px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Icon */
.cta-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* RED THEME */
.cta-red {
    background: rgba(255, 59, 59, 0.12);
    border: 1px solid rgba(255, 59, 59, 0.35);
}

.cta-red .cta-icon {
    background: rgba(255, 59, 59, 0.18);
}

.cta-red .cta-icon i,
.cta-red strong {
    color: #ff3b3b;
}

/* YELLOW THEME */
.cta-yellow {
    background: rgba(245, 196, 0, 0.12);
    border: 1px solid rgba(245, 196, 0, 0.45);
}

.cta-yellow .cta-icon {
    background: rgba(245, 196, 0, 0.18);
}

.cta-yellow .cta-icon i,
.cta-yellow strong {
    color: var(--accent-yellow);
}

/* Typography */
.cta-box strong {
    font-size: 16px;
    font-weight: 800;
}

.cta-box small {
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 600px) {
    .cta-highlights {
        grid-template-columns: 1fr;
    }
}


/* Title */
.cta-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-title span {
    color: var(--accent-yellow);
}

/* Text */
.cta-text {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 14px;
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: #000;
    padding: 20px 42px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 22px;
    box-shadow: 0 0 40px rgba(245,196,0,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(245,196,0,0.6);
}

/* Contact */
.cta-contact {
    font-size: 13px;
    color: var(--text-muted);
}

.cta-contact a {
    color: var(--accent-yellow);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .cta-highlights {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .final-cta {
        padding: 100px 16px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }
}
/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background:
        radial-gradient(circle at top, rgba(245,196,0,0.06), transparent 60%),
        #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 80px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* BRAND */
.footer-logo {
    width: 140px;
    margin-bottom: 14px;
}

.footer-powered {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-powered strong {
    color: var(--accent-yellow);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.6;
}

/* COLUMNS */
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer-col a {
    color: var(--accent-yellow);
    text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 22px 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 4px 0;
}

.footer-credit strong {
    color: var(--accent-yellow);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 14px;
    }
}
/* MEET YOUR INSTRUCTOR – STATS WITH ICONS */

.mi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.mi-stat {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
}

.mi-stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 10px;
    background: rgba(245,196,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mi-stat-icon i {
    width: 20px;
    height: 20px;
    color: var(--accent-yellow);
    stroke-width: 2;
}

.mi-stat strong {
    display: block;
    font-size: 26px;
    color: var(--accent-yellow);
    margin-bottom: 4px;
}

.mi-stat span {
    font-size: 13px;
    color: var(--text-muted);
}
/* =========================================================
   SUCCESS STORIES – PREMIUM STATS BAR (REWORKED)
   ========================================================= */

.ss-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 760px;
    margin: 64px auto 0;
    padding: 22px 32px;

    border-radius: 20px;
    background: linear-gradient(
        to right,
        rgba(245,196,0,0.08),
        rgba(245,196,0,0.04)
    );
    border: 1px solid rgba(245,196,0,0.35);

    gap: 24px;
    flex-wrap: nowrap; /* 🔒 always one line */
}

/* Individual stat */
.ss-stat {
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

/* Number */
.ss-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1.1;
    margin-bottom: 4px;
}

/* Label */
.ss-stat span {
    font-size: 13px;
    color: var(--text-muted);
}

/* MOBILE REFINEMENT */
@media (max-width: 600px) {
    .ss-stats-bar {
        padding: 16px 18px;
        gap: 12px;
    }

    .ss-stat strong {
        font-size: 18px;
    }

    .ss-stat span {
        font-size: 11.5px;
    }
}
/* =========================================================
   WHATSAPP FLOATING PILL
   ========================================================= */

.whatsapp-pill {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;
    border-radius: 999px;

    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);

    animation: whatsappPulse 3.5s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Icon */
.whatsapp-pill i {
    font-size: 18px;
}

/* Hover */
.whatsapp-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .whatsapp-pill {
        bottom: 18px;
        right: 18px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .whatsapp-pill span {
        display: none; /* icon-only on mobile */
    }
}
/* =========================================================
   FAQS SECTION
   ========================================================= */

.faqs-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #1a0f0f, #000);
}

.faqs-container {
    max-width: 900px;
    margin: auto;
}

/* Pill */
.faqs-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--accent-yellow);
    border: 1px solid rgba(245,196,0,0.4);
    margin-bottom: 18px;
    justify-content: center;
}
.faqs-pill-wrap {
    text-align: center;
}

/* Title */
.faqs-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
}

.faqs-title span {
    color: var(--accent-yellow);
}

.faqs-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* FAQ Items */
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(245,196,0,0.25);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: var(--text-muted);
    font-size: 14px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 16px 22px 22px;
}

.faq-highlight {
    display: block;
    color: var(--accent-yellow);
    margin-bottom: 12px;
}

.faq-answer ul {
    columns: 3;              /* 👈 change from 2 to 3 */
    column-gap: 28px;
    padding-left: 18px;
}

.faq-answer li {
    margin-bottom: 6px;
}

/* Mobile 
/* ================= FAQ – FIRST ANSWER MOBILE FIX ================= */

@media (max-width: 600px) {

    .faq-answer ul {
        columns: 2;                 /* 👈 KEY CHANGE */
        column-gap: 20px;
        padding-left: 14px;
    }

    .faq-answer li {
        font-size: 13px;             /* slightly smaller */
        line-height: 1.45;           /* tighter */
        margin-bottom: 4px;          /* less vertical waste */
    }

    .faq-highlight {
        font-size: 13px;
        margin-bottom: 10px;
        display: block;
    }
}

/* =========================================================
   ENQUIRY FORM
   ========================================================= */

.enquiry-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #1a0f0f, #000);
    display: flex;
    justify-content: center;
}

.enquiry-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(245,196,0,0.35);
    border-radius: 18px;
    padding: 36px;
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.enquiry-box h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.enquiry-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.enquiry-box input,
.enquiry-box select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #000;
    color: #fff;
    font-size: 14px;
}

.enquiry-box input:focus,
.enquiry-box select:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.enquiry-btn {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #f5c400, #ffdd55);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245,196,0,0.4);
}

.enquiry-msg {
    margin-top: 14px;
    font-size: 14px;
}
/* ================================
   PRICING GRID - DATE PILL (Animated)
================================ */
.pg-date-pill-wrap{
    margin: 14px 0 14px;
    display: flex;
    justify-content: flex-start;
}

.pg-date-pill{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f6cf3b, #f0b800);
    color: #111;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(240, 184, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    animation: pgPillFloat 2.2s ease-in-out infinite;
}

.pg-date-pill::before{
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.45), transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

.pg-date-pill-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pg-date-pill-icon svg{
    width: 16px;
    height: 16px;
}

.pg-date-pill-text{
    white-space: nowrap;
}

.pg-date-pill-sep{
    opacity: 0.55;
    font-weight: 700;
}

.pg-date-pill-price{
    white-space: nowrap;
    font-weight: 900;
}

@keyframes pgPillFloat{
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* CTA inside LEFT column */
.pg-left-cta{
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Make sure secure line looks neat */
.pg-secure{
    font-size: 12.5px;
    opacity: 0.85;
    line-height: 1.5;
}
