/* =============================================================================
   Study Abroad Landing Page — page-specific styles
   Scoped with .sa- prefix to prevent bleed into other pages.
   Enqueued only on the Study Abroad template (page-study-abroad.php).
   ============================================================================= */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
    --red: #E31E24;
    --red-dark: #b5171c;
    --red-light: rgba(227, 30, 36, .08);
    --dark: #111111;
    --mid: #444;
    --muted: #777;
    --light-bg: #FAFAFA;
    --white: #fff;
    --card-bg: rgba(255, 255, 255, .85);
    --glass: rgba(255, 255, 255, .72);
    --border: rgba(0, 0, 0, .07);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── Base reset for this page ────────────────────────────────── */
.sa-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sa-page {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

.sa-page img {
    max-width: 100%;
    height: auto;
}

.sa-page a {
    text-decoration: none;
}

.sa-page ul {
    list-style: none;
}

.sa-section {
    padding: 88px 0;
}

.sa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Headings ────────────────────────────────────────── */
.sa-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-light);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 16px;
}

.sa-section-title {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px;
}

.sa-section-title span {
    color: var(--red);
}

.sa-section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.sa-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(227, 30, 36, .35);
}

.sa-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227, 30, 36, .45);
    color: var(--white);
}

.sa-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    padding: 13px 30px;
    border: 2px solid rgba(0, 0, 0, .15);
    cursor: pointer;
    transition: var(--transition);
}

.sa-btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.sa-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--red);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.sa-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    color: var(--red);
}

/* ───────────────────────────────────────────────────────────────
   SECTION 1 — HERO
   ─────────────────────────────────────────────────────────────── */
.sa-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image:
        url('../images-optimized/book-counselling/book-hero.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 120px 0 160px;
}

/* Animated background shapes */
.sa-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.sa-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
    animation: sa-float 8s ease-in-out infinite;
}

.sa-hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--red);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.sa-hero-blob-2 {
    width: 400px;
    height: 400px;
    background: #6c63ff;
    bottom: -150px;
    left: -100px;
    animation-delay: -4s;
}

.sa-hero-blob-3 {
    width: 300px;
    height: 300px;
    background: var(--red);
    top: 40%;
    left: 30%;
    opacity: .12;
    animation-delay: -2s;
}

/* World map dot pattern */
.sa-hero-map {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .6) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Floating particles */
.sa-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sa-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    animation: sa-particle-float 6s ease-in-out infinite;
}

@keyframes sa-float {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-30px) scale(1.05)
    }
}

@keyframes sa-particle-float {

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

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

@keyframes sa-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes sa-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes sa-scaleIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes sa-marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes sa-spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes sa-pulse-ring {
    0% {
        transform: scale(.95);
        opacity: 1
    }

    70% {
        transform: scale(1.1);
        opacity: 0
    }

    100% {
        transform: scale(1.1);
        opacity: 0
    }
}

@keyframes sa-progress-load {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.sa-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Hero Left */
.sa-hero-left {
    animation: sa-fadeInUp .8s ease forwards;
}

.sa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 30, 36, .1);
    border: 1px solid rgba(227, 30, 36, .3);
    color: var(--red);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.sa-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

.sa-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.sa-hero-title .highlight {
    color: var(--red);
    display: block;
}

.sa-hero-subtitle {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.sa-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.sa-hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 100px;
    padding: 8px 16px;
    color: #444;
    font-size: .85rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.sa-hero-badge-item:hover {
    background: rgba(227, 30, 36, .1);
    border-color: rgba(227, 30, 36, .3);
}

.sa-hero-badge-item i {
    color: var(--red);
    font-size: .9rem;
}

.sa-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sa-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px 10px 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: #fff;
    border-radius: 100px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.sa-btn-outline .play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: .8rem;
    transition: var(--transition);
}

.sa-btn-outline:hover {
    background: #fcfcfc;
    border-color: rgba(0, 0, 0, .15);
    color: var(--black);
}

.sa-btn-outline:hover .play-icon {
    background: #eee;
}

.sa-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.sa-btn-dark:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

/* Hero Right – Destination Selector Card */
.sa-hero-right {
    animation: sa-fadeInRight .9s .2s ease both;
}

.sa-dest-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.sa-dest-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
}

.sa-dest-card-title span {
    color: var(--red);
}

.sa-countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.sa-country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.sa-country-item:hover,
.sa-country-item.active {
    background: var(--red);
    transform: translateY(-2px);
}

.sa-country-flag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: #f4f4f4;
    transition: var(--transition);
}

.sa-country-item:hover .sa-country-flag,
.sa-country-item.active .sa-country-flag {
    background: rgba(255, 255, 255, 0.2);
}

.sa-country-name {
    font-size: .75rem;
    font-weight: 600;
    color: #444;
    text-align: center;
    transition: var(--transition);
}

.sa-country-item:hover .sa-country-name,
.sa-country-item.active .sa-country-name {
    color: var(--white);
}

/* Other Countries */
.sa-other-countries {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    padding-bottom: 24px;
}

.sa-other-countries-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-weight: 500;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--transition);
}

.sa-other-countries-toggle:hover {
    color: var(--black);
}

.sa-other-countries-toggle i.fa-globe {
    font-size: 1.1rem;
    color: #000;
}

/* ───────────────────────────────────────────────────────────────
   SECTION 2 — TRUST METRICS
   ─────────────────────────────────────────────────────────────── */
.sa-metrics {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 0 64px;
}

.sa-metrics-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sa-metric-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sa-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), #ff6b6b);
}

.sa-metric-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(227, 30, 36, .1);
}

.sa-metric-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    margin: 0 auto 14px;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-metric-icon i {
    color: var(--red);
    font-size: 1.3rem;
}

.sa-metric-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.sa-metric-label {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 500;
}

@media (min-width: 1024px) {
    .sa-metrics-inner {
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
        padding: 32px 40px;
        border: 1px solid rgba(0, 0, 0, .05);
        gap: 24px;
    }

    .sa-metric-card {
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .sa-metric-card::before {
        display: none;
    }

    .sa-metric-card:hover {
        transform: translateY(-2px);
        box-shadow: none;
    }

    .sa-metric-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .sa-metric-num {
        color: var(--red);
        font-size: 1.2rem;
    }
}

/* ───────────────────────────────────────────────────────────────
   SECTION 3 — HOW WE HELP
   ─────────────────────────────────────────────────────────────── */
.sa-how {
    background: var(--white);
}

.sa-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.sa-how-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sa-how-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, var(--red-light), transparent);
    transition: var(--transition);
}

.sa-how-card:hover {
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(227, 30, 36, .12), var(--shadow-md);
}

.sa-how-card:hover::before {
    opacity: 1;
}

.sa-how-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--red-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.sa-how-card:hover .sa-how-icon {
    background: var(--red);
}

.sa-how-icon i {
    color: var(--red);
    font-size: 1.4rem;
    transition: var(--transition);
}

.sa-how-card:hover .sa-how-icon i {
    color: var(--white);
}

.sa-how-step {
    position: absolute;
    top: 24px;
    right: 24px;
    font-weight: 800;
    color: rgba(0, 0, 0, .08);
    font-family: var(--font-main);
    letter-spacing: -.02em;
    font-size: 3rem;
    line-height: 1;
    z-index: 0;
}

.sa-how-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sa-how-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ───────────────────────────────────────────────────────────────
   SECTION 4 — STUDY DESTINATIONS
   ─────────────────────────────────────────────────────────────── */
.sa-destinations {
    background: var(--light-bg);
}

.sa-destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.sa-dest-country-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.sa-dest-country-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sa-dest-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.sa-dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.sa-dest-country-card:hover .sa-dest-img-wrap img {
    transform: scale(1.08);
}

.sa-dest-flag-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 1.3rem;
    line-height: 1;
}

.sa-dest-card-body {
    padding: 22px;
}

.sa-dest-card-name {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--dark);
}

.sa-dest-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.sa-dest-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .83rem;
    color: var(--muted);
}

.sa-dest-info-item i {
    color: var(--red);
    width: 14px;
    flex-shrink: 0;
}

.sa-dest-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--red);
    border: 1.5px solid var(--red);
    border-radius: 100px;
    padding: 8px 18px;
    transition: var(--transition);
}

.sa-dest-learn:hover {
    background: var(--red);
    color: var(--white);
}

/* ───────────────────────────────────────────────────────────────
   SECTION 5 — SUCCESS STORIES
   ─────────────────────────────────────────────────────────────── */
.sa-testimonials {
    background: #ffffff !important;
    overflow: hidden;
}

.sa-testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.sa-testimonials .sa-section-title {
    color: #111;
    margin: 0;
}

.sa-testimonials .sa-section-title span {
    color: var(--red);
}

.sa-view-all {
    color: var(--red);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.sa-view-all:hover {
    color: #b3161c;
}

.sa-slider-container {
    position: relative;
    padding: 0 50px;
}

.sa-slider-wrap {
    overflow: hidden;
}

.sa-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.sa-testi-card {
    flex: 0 0 calc(50% - 12px);
    background: #111111;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Subtle dot pattern background on right */
.sa-testi-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 16px 16px;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
    pointer-events: none;
}

.sa-testi-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.sa-testi-rating-num {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: normal;
    margin-left: 8px;
}

.sa-testi-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.sa-testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sa-testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.sa-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-testi-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.sa-testi-uni {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

.sa-testi-flag-icon {
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sa-testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.sa-testi-nav:hover {
    background: #e0e0e0;
}

.sa-testi-nav.prev {
    left: 0;
}

.sa-testi-nav.next {
    right: 0;
}

@media (max-width: 900px) {
    .sa-testi-card {
        flex: 0 0 100%;
    }
}

/* Slider controls */
.sa-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.sa-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.sa-slider-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.sa-slider-dots {
    display: flex;
    gap: 8px;
}

.sa-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: var(--transition);
}

.sa-slider-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 100px;
}

/* ───────────────────────────────────────────────────────────────
   SECTION 6 — VIDEO TESTIMONIALS
   ─────────────────────────────────────────────────────────────── */
.sa-videos {
    background: var(--light-bg);
}

.sa-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sa-video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.sa-video-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg), 0 0 0 2px var(--red);
}

.sa-video-thumb {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #1a1a2e;
}

.sa-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.sa-video-card:hover .sa-video-thumb img {
    transform: scale(1.06);
}

.sa-video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
}

.sa-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.sa-play-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .4);
    animation: sa-pulse-ring 2s ease-in-out infinite;
}

.sa-play-btn i {
    color: var(--red);
    font-size: 1.2rem;
    margin-left: 3px;
}

.sa-video-card:hover .sa-play-btn {
    background: var(--red);
    box-shadow: 0 8px 24px rgba(227, 30, 36, .5);
}

.sa-video-card:hover .sa-play-btn i {
    color: var(--white);
}

.sa-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px;
}

.sa-video-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
}

.sa-video-dest {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

/* ───────────────────────────────────────────────────────────────
   SECTION 7 — FREE COUNSELLING CTA
   ─────────────────────────────────────────────────────────────── */
.sa-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0505 50%, #1a0000 100%);
    padding: 88px 0;
}

.sa-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(227, 30, 36, .35), transparent 60%);
}

.sa-cta-map {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .6) 1px, transparent 1px);
    background-size: 28px 28px;
}

.sa-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

.sa-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.sa-cta-title span {
    color: var(--red);
}

.sa-cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sa-cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: rgba(255, 255, 255, .8);
}

.sa-cta-benefit i {
    color: #4ade80;
    font-size: 1rem;
}

.sa-cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sa-cta-illustration {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

/* ───────────────────────────────────────────────────────────────
   SECTION 8 — FIND A CENTRE
   ─────────────────────────────────────────────────────────────── */
.sa-centres {
    background: var(--white);
}

.sa-search-bar {
    display: flex;
    gap: 12px;
    max-width: 520px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 100px;
    padding: 6px 6px 6px 20px;
    box-shadow: var(--shadow-sm);
    margin: 32px 0 48px;
    transition: var(--transition);
}

.sa-search-bar:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, .08);
}

.sa-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--dark);
    font-family: var(--font-main);
    background: transparent;
}

.sa-search-bar button {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
}

.sa-search-bar button:hover {
    background: var(--red-dark);
}

.sa-centres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sa-centre-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.sa-centre-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(227, 30, 36, .1);
}

.sa-centre-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: var(--red-light);
    border: 1.5px solid rgba(227, 30, 36, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sa-centre-icon i {
    color: var(--red);
    font-size: 1.2rem;
}

.sa-centre-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.sa-centre-sub {
    font-size: .8rem;
    color: var(--muted);
}

.sa-centre-arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: .85rem;
    transition: var(--transition);
}

.sa-centre-card:hover .sa-centre-arrow {
    color: var(--red);
    transform: translateX(4px);
}

/* ───────────────────────────────────────────────────────────────
   SECTION 9 — PARTNER UNIVERSITIES
   ─────────────────────────────────────────────────────────────── */
.sa-partners {
    background: var(--light-bg);
}

.sa-partners-trust {
    text-align: center;
    margin-bottom: 16px;
    font-size: .85rem;
    color: var(--muted);
    font-weight: 500;
}

.sa-partners-trust strong {
    color: var(--red);
}

.sa-marquee-wrap {
    overflow: hidden;
    margin-top: 48px;
    position: relative;
}

.sa-marquee-wrap::before,
.sa-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.sa-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}

.sa-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}

.sa-marquee {
    display: flex;
    gap: 24px;
    animation: sa-marquee 30s linear infinite;
    width: max-content;
}

.sa-marquee-wrap:hover .sa-marquee {
    animation-play-state: paused;
}

.sa-uni-logo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 28px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex-shrink: 0;
}

.sa-uni-logo-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.sa-uni-logo-card span {
    font-weight: 700;
    font-size: .8rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.3;
}

/* ───────────────────────────────────────────────────────────────
   SECTION 10 — FAQ
   ─────────────────────────────────────────────────────────────── */
.sa-faq {
    background: var(--white);
}

.sa-faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.sa-faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.sa-faq-item.open {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(227, 30, 36, .08);
}

.sa-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    gap: 16px;
}

.sa-faq-q i {
    color: var(--red);
    flex-shrink: 0;
    transition: var(--transition);
    font-size: .9rem;
}

.sa-faq-item.open .sa-faq-q i {
    transform: rotate(45deg);
}

.sa-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.sa-faq-item.open .sa-faq-a {
    max-height: 300px;
}

.sa-faq-a p {
    padding: 0 24px 20px;
    font-size: .93rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ───────────────────────────────────────────────────────────────
   SECTION 11 — FINAL CTA
   ─────────────────────────────────────────────────────────────── */
.sa-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red) 0%, #c41019 100%);
    padding: 96px 0;
    text-align: center;
}

.sa-final-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.sa-final-cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    animation: sa-float 7s ease-in-out infinite;
}

.sa-final-cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.sa-final-cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -80px;
    animation-delay: -3s;
}

.sa-final-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.sa-final-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .9);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sa-final-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.sa-final-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sa-final-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sa-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: var(--transition);
}

.sa-btn-outline-white:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
    color: var(--white);
}

/* ── Scroll Reveal Utility ────────────────────────────────────── */
.sa-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.sa-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .sa-hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .sa-hero-badges {
        justify-content: center;
    }

    .sa-hero-ctas {
        justify-content: center;
    }

    .sa-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .sa-metrics-inner {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .sa-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sa-cta-right {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .sa-section {
        padding: 64px 0;
    }

    .sa-metrics {
        margin-top: -40px;
    }

    .sa-metrics-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .sa-how-grid {
        grid-template-columns: 1fr;
    }

    .sa-destinations-grid {
        grid-template-columns: 1fr;
    }

    .sa-videos-grid {
        grid-template-columns: 1fr;
    }

    .sa-centres-grid {
        grid-template-columns: 1fr;
    }

    .sa-countries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .sa-cta-inner {
        gap: 40px;
    }

    .sa-cta-illustration {
        display: none;
    }

    .sa-testi-card {
        flex: 0 0 300px;
    }

    .sa-hero {
        padding: 100px 0 120px;
    }
}

@media (max-width: 480px) {
    .sa-metrics-inner {
        grid-template-columns: 1fr 1fr;
    }

    .sa-countries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .sa-hero-title {
        font-size: 2.2rem;
    }

    .sa-final-title {
        font-size: 1.8rem;
    }
}