:root {

    /* Fonts */
    --font-heading: "Parkinsans", serif;
    --font-body: "Inter", sans-serif;

    /* Typography */
    --h1: clamp(2.125rem, -0.0166rem + 4.46vw, 5rem);
    --h2: clamp(1.75rem, 0.493rem + 2.62vw, 3.4375rem);
    --h3: clamp(1.625rem, 0.5076rem + 2.33vw, 3.125rem);
    --h4: clamp(1.25rem, 0.5569rem + 1.44vw, 2rem);
    --h5: clamp(1.125rem, 1rem + .72vw, 1.75rem);
    --h6: clamp(1rem, .85rem + .4vw, 1.25rem);

    --text-sm: .875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;

    /* Brand */
    --primary: #3f67f8;
    --primary-dark: #062aac;
    --secondary: #103051;

    /* Status */
    --success: #00cc99;
    --warning: #feb930;
    --danger: #ff3346;
    --orange: #f97316;

    /* Neutral */
    --white: #fff;
    --black: #000;

    --bg: #f6f7f9;
    --border: #e5e7eb;

    --text: #6b7280;
    --heading: #070713;

    /* Spacing */
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;

    /* Section rhythm — vertical padding shared by every full-width
       content section (see assets/css classes ending in -section, plus
       .page-banner / .page-cta). Change here to re-tune site-wide. */
    --section-py: 60px;

    /* Utilities */
    --translate-x-50: translateX(-50%);
    --translate-y-50: translateY(-50%);

    /* Component-specific */
    --process-num: clamp(4.5rem, 7vw, 5.625rem);
    --flair: #dce9ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

/* --- Custom Cursor --- */
.cursor,
.dot {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    visibility: hidden;
    mix-blend-mode: difference;
    z-index: 9999999;
}

.cursor {
    width: 32px;
    height: 32px;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    color: var(--white);
}

.dot {
    width: 4px;
    height: 4px;
    background-color: var(--white);
}

@media (hover: none) {
    * { cursor: auto; }
    .cursor, .dot { display: none; }
}

p {
    margin: 0;
}

/* Site-wide horizontal clip: AOS fade-left/right start elements translated
   ±100px, which can push past the viewport and create a page-wide horizontal
   scrollbar. "clip" (not "hidden") leaves overflow-y visible, so it doesn't
   establish a scroll container and the sticky header keeps working. */
html,
body {
    overflow-x: clip;
}

a,
li {
    text-decoration: none;
    list-style: none;
}

/* ==========================================
   Site preloader (logo + progress bar).
   Overlays the whole viewport until window
   'load'; custom.js adds .is-loaded to fade
   it out, then removes it from the DOM.
   ========================================== */
.edu-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.edu-preloader.is-loaded {
    opacity: 0;
    visibility: hidden;
}

.edu-preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
}

.edu-preloader-logo {
    width: clamp(150px, 30vw, 230px);
    height: auto;
    animation: eduPreloaderPulse 1.6s ease-in-out infinite;
}

.edu-preloader-bar {
    position: relative;
    width: 170px;
    height: 3px;
    border-radius: 999px;
    background: var(--border);
    overflow: hidden;
}

.edu-preloader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--success));
    animation: eduPreloaderBar 1.1s ease-in-out infinite;
}

@keyframes eduPreloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.93); opacity: 0.72; }
}

@keyframes eduPreloaderBar {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}

@media (prefers-reduced-motion: reduce) {
    .edu-preloader-logo,
    .edu-preloader-bar-fill {
        animation: none;
    }
}

/* header top nav */
.edu-nav {
    background-color: var(--secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.35s ease;
    will-change: transform;
}

/* Hide-on-scroll-down / reveal-on-scroll-up */
.edu-nav.edu-nav--hidden {
    transform: translateY(-100%);
}

.edu-top-nav {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    padding: 14px 0;
}

.top-nav-left i {
    color: var(--white);
    font-size: 12px;
    margin-right: 5px;
    margin-left: 10px;
}

.top-nav-left a {
    color: var(--white);
    transition: color 0.25s;
}

.top-nav-left a:hover {
    color: var(--success);
}

.top-nav-right i {
    color: var(--white);
    font-size: 18px;
}

.top-nav-right span {
    color: rgba(255, 255, 255, 0.6);
}

.top-nav-right a {
    display: inline-flex;
    color: var(--white);
    transition: color 0.25s;
}

.top-nav-right a:hover {
    color: var(--success);
}

/* header main nav */

.edu-main-header {
    background-color: var(--white);
    padding: 20px 0 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.edu-logo img {
    width: 160px;
    height: auto;
    margin: 0 0 0 20px;
}

.edu-main-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--black);
    font-size: 16px;
}

/* "More" dropdown in the main nav */
.edu-nav-dropdown .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 6px;
}

.edu-nav-dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    padding: 8px;
    margin-top: 8px;
    box-shadow: 0 12px 30px rgba(16, 48, 81, 0.12);
    min-width: 190px;
}

.edu-nav-dropdown-menu .dropdown-item {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--black);
    border-radius: 0.375rem;
    padding: 10px 14px;
    transition: background 0.2s, color 0.2s;
}

.edu-nav-dropdown-menu .dropdown-item:hover,
.edu-nav-dropdown-menu .dropdown-item:focus {
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    color: var(--primary);
}

.edu-main-right {
    padding: 0px 20px;
}

.edu-nav-help {
    margin: 0 24px 0 0;
}

.edu-nav-help .p1 {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
    margin: 0 0 4px 0;
}

.edu-nav-help .c1 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    font-size: 16px;
}

.edu-nav-help .c1 a {
    color: inherit;
    transition: color 0.25s;
}

.edu-nav-help .c1 a:hover {
    color: var(--primary);
}

.edu-nav-mail {
    background-color: var(--success);
    border-radius: 100px;
    padding: 10px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.edu-nav-mail.button--stroke::after {
    border-color: transparent;
}

.edu-nav-mail p {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--secondary);
    font-size: 16px;
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.edu-nav-mail:hover p,
.edu-nav-mail:hover .mail-icon {
    color: var(--white);
}

.edu-nav-help .clipboard {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 18px 0 0;
    font-size: 22px;
    color: var(--success);
}

.edu-nav-mail .mail-icon {
    color: var(--secondary);
    font-size: 18px;
    margin-right: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* header hamburger */
.edu-hamburger {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    margin-right: 10px;
    transition: transform 0.2s;
}

.edu-hamburger:active {
    transform: scale(0.9);
}

.edu-hamburger-box {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 18px;
}

.edu-hamburger-inner,
.edu-hamburger-inner::before,
.edu-hamburger-inner::after {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--secondary);
}

/* "Elastic" morph (springy cubic-bezier), ported from the MIT
   hamburgers.css library (Jonathan Suh) and adapted to a 7px bar gap.
   Closed state: shorter, centered middle bar (top/bottom stay full width).
   Middle width 14 in a 22 box => (22-14)/2 = 4px each side, exactly centered. */
.edu-hamburger-inner {
    top: 7px;
    width: 14px;
    left: 4px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.edu-hamburger-inner::before {
    content: "";
    top: -7px;
    left: -4px;
    transition: opacity 0.125s 0.275s ease;
}

.edu-hamburger-inner::after {
    content: "";
    top: 7px;
    left: -4px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), left 0.275s ease;
}

.edu-hamburger.active .edu-hamburger-inner {
    width: 22px;
    left: 0;
    transform: translate3d(0, 7px, 0) rotate(135deg);
    transition-delay: 0.075s;
}

.edu-hamburger.active .edu-hamburger-inner::before {
    opacity: 0;
    transition-delay: 0s;
}

.edu-hamburger.active .edu-hamburger-inner::after {
    left: 0;
    transform: translate3d(0, -14px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/* header mobile nav (offcanvas) */
.edu-mobile-nav-wrap {
    width: min(320px, 85vw);
    background: var(--secondary);
    box-shadow: -12px 0 40px rgba(7, 7, 19, 0.25);
}

.edu-mobile-nav-wrap .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-header{
    justify-content: space-between !important;
}

.edu-mobile-nav-logo img {
    width: 130px;
    filter: brightness(0) invert(1);
}

.edu-mobile-nav-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.edu-mobile-nav-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.edu-mobile-nav-wrap .offcanvas-body {
    padding: 12px 20px 24px;
    display: flex;
    flex-direction: column;
}

.edu-mobile-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.edu-mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.edu-mobile-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 6px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--white);
    font-size: 15px;
    transition: color 0.25s, padding-left 0.25s;
}

.edu-mobile-nav li a i {
    font-size: 13px;
    opacity: 0;
    color: var(--primary);
    transition: opacity 0.25s, transform 0.25s;
    transform: translateX(-6px);
}

.edu-mobile-nav li a:hover {
    color: var(--primary);
    padding-left: 12px;
}

.edu-mobile-nav li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.edu-mobile-nav-footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.edu-mobile-nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: background 0.25s, color 0.25s;
}

.edu-mobile-nav-contact i {
    color: var(--success);
    font-size: 16px;
}

.edu-mobile-nav-contact:hover {
    background: var(--primary);
    color: var(--white);
}

.edu-mobile-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    justify-content: center;
}

.edu-mobile-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.15rem;
    transition: background 0.25s, transform 0.25s;
}

.edu-mobile-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* header mobile help */
.edu-mobile-help {
    color: var(--secondary);
}

.edu-mobile-help i {
    font-size: 18px;
    color: var(--success);
}

.edu-mobile-help-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.2;
}

.edu-mobile-help-number {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.2;
}

/* whatsapp floating button */
.edu-whatsapp-btn {
    position: fixed;
    bottom: 48px;
    right: 48px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edu-whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* hero section */
.edu-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Vertical social bar — fixed to the right edge, persists through the
   whole index page (only rendered on index.php). */
.edu-hero-social {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem 0.55rem;
    background: color-mix(in srgb, var(--secondary) 94%, transparent);
    border-radius: 16px 0 0 16px;
    box-shadow: 0 12px 30px rgba(16, 48, 81, 0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.edu-hero-social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.edu-hero-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .edu-hero-social {
        display: none;
    }
}

/* show first slide while Owl is still initialising (Owl sets display:none before .owl-loaded) */
.edu-hero-org:not(.owl-loaded) {
    display: block !important;
    overflow: hidden;
}
.edu-hero-org:not(.owl-loaded) .edu-hero-slide:not(:first-child) {
    display: none;
}

.edu-hero-slide picture {
    display: block;
    width: 100%;
}

.edu-hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.owl-item.active .edu-hero-slide img {
    animation: hero-zoom 5s ease forwards;
}

@keyframes hero-zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}


/* owl dots */
.edu-hero .owl-dots {
    position: absolute;
    bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.edu-hero .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    transition: background 0.2s, transform 0.2s !important;
    margin: 0 !important;
}

.edu-hero .owl-dot.active span {
    background: var(--white) !important;
    transform: scale(1.3);
}

/* --- Services Section --- */
.services-section {
    background-color: var(--bg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: var(--section-py) 0;
}

/* content sits above the decorative .services-shape (absolute, z-index:1)
   now that the old .services-bg flow wrapper is unwrapped */
.services-section > .container {
    position: relative;
    z-index: 2;
}

.services-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* --- Section Header --- */
.services-header {
    max-width: 690px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.services-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.services-badge span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--black);
}

.services-title {
    font-family: var(--font-heading);
    color: var(--heading);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: var(--h2);
}

.services-desc {
    font-family: var(--font-body);
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

/* --- Service Card --- */
.service-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 50px 60px 120px;
    position: relative;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.shadow-top {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Icon circle */
.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-icon.icon-green {
    background-color: color-mix(in srgb, var(--success) 15%, white);
    color: var(--success);
}

.service-icon.icon-red {
    background-color: color-mix(in srgb, var(--danger) 12%, white);
    color: var(--danger);
}

.service-icon.icon-amber {
    background-color: color-mix(in srgb, var(--warning) 18%, white);
    color: var(--warning);
}

.service-icon.icon-blue {
    background-color: color-mix(in srgb, var(--primary) 12%, white);
    color: var(--primary);
}

.service-icon.icon-orange {
    background-color: color-mix(in srgb, var(--orange) 12%, white);
    color: var(--orange);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-family: var(--font-body);
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Bottom-left notch arrow */
.card-notch {
    position: absolute;
    bottom: 0;
    left: 60px;
    width: 60px;
    height: 60px;
    background-color: var(--bg);
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    justify-content: center;
    margin-bottom: -10px;
    text-decoration: none;
}

.card-notch-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.card-notch-circle i {
    background: linear-gradient(to right, var(--success) 50%, var(--white) 50%);
    background-size: 200%;
    background-position: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease;
}

.service-card:hover .card-notch {
    background-color: color-mix(in srgb, var(--primary) 12%, white);
}

.service-card:hover .card-notch-circle {
    background-color: var(--secondary);
}

.service-card:hover .card-notch-circle i {
    background-position: 0%;
}

/* --- CTA Button --- */
.services-cta-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 0.75rem;
}


/* ==========================================
   WORKING PROCESS SECTION
   ========================================== */

/* Section header — matches services section typographic scale */
.process-section h2 {
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 500;
    color: var(--heading);
}

.process-section .section-badge-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-lg);
    color: var(--black);
}

.process-section .section-badge-text i {
    font-size: var(--h6);
    color: var(--primary);
}

.process-section .section-desc {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--text);
}

/* Per-card accent colour — driven by root brand tokens */
.process-steps [class*=col]:nth-child(1) { --card-accent: var(--primary); }
.process-steps [class*=col]:nth-child(2) { --card-accent: var(--success); }
.process-steps [class*=col]:nth-child(3) { --card-accent: var(--warning); }

.process-card {
    position: relative;
    height: 100%;
    padding: var(--space-7) var(--space-6);
    background: var(--white);
    border-radius: 1rem;
    border-top: 4px solid var(--card-accent);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    background: color-mix(in srgb, var(--card-accent) 4%, var(--white));
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: var(--h5);
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 0;
}

.process-divider {
    display: block;
    width: 60px;
    height: 4px;
    margin: var(--space-5) 0 var(--space-4);
    border-radius: 2px;
    background-color: var(--card-accent);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-card:hover .process-divider {
    width: 140px;
}

.process-card p {
    max-width: 310px;
    line-height: 1.9;
    color: var(--text);
}

.process-number {
    position: absolute;
    right: var(--space-5);
    bottom: var(--space-2);
    font-size: var(--process-num);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    color: color-mix(in srgb, var(--secondary) 10%, transparent);
    transition: transform 0.35s ease, color 0.35s ease;
}

.process-card:hover .process-number {
    transform: translateY(-6px);
    color: color-mix(in srgb, var(--card-accent) 22%, transparent);
}

/* ==========================================
   DESTINATION / COUNTRIES SECTION
   ========================================== */
.destination-section {
    background: var(--bg);
    padding: var(--section-py) 0;
}

.destination-title {
    text-align: center;
    margin-bottom: var(--space-7);
}

.destination-title > span {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: var(--space-3);
}

.destination-title h2 {
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 500;
    color: var(--heading);
    line-height: 1.2;
    margin: 0;
}

.destination-title p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--text-base);
    color: var(--text);
    line-height: 1.7;
    max-width: 560px;
    margin: var(--space-4) auto 0;
}

/* Card */
.destination-card {
    border-radius: 1.25rem;
    background: var(--white);
    padding: var(--space-3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.destination-card-inner {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.destination-img {
    overflow: hidden;
}

.destination-img img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.45s ease;
}

.destination-card:hover .destination-img img {
    transform: scale(1.05);
}

/* Content */
.destination-content {
    position: relative;
    padding: 2.5rem var(--space-3) var(--space-3);
    text-align: center;
}

.destination-content .flag {
    position: absolute;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg);
    background: var(--white);
}

.destination-content h3 {
    font-family: var(--font-heading);
    font-size: var(--h6);
    font-weight: 600;
    color: var(--heading);
    margin-bottom: var(--space-2);
}

.destination-content p {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.destination-content a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    transition: gap 0.2s ease;
}

.destination-content a:hover {
    gap: var(--space-2);
}

/* Swiper nav */
.destination-slider {
    position: relative;
    overflow: visible;
    padding-top: var(--space-3);
    margin-top: calc(-1 * var(--space-3));
}

/* Horizontal-only clip: hides the swiper's off-screen slides (avoids a
   page-wide horizontal scrollbar) without re-clipping the vertical
   hover shadow/lift that .destination-slider's own "overflow: visible"
   deliberately preserves. "clip" (not "hidden") avoids the CSS quirk
   where pairing hidden|auto|scroll on one axis with visible on the
   other silently forces the visible axis to compute as "auto" too. */
.destination-section .container {
    overflow-x: clip;
}

/* Static grid variant (countries.php) — same section rhythm as
   .destination-section, but deliberately without its slider-only
   "overflow: hidden" container rule, which would otherwise clip
   card hover shadows and the flag badges on edge cards. */
.countries-section {
    background: var(--bg);
    padding: var(--section-py) 0;
}

.destination-slider .swiper-button-prev,
.destination-slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    top: 61%;
    transform: translateY(-50%);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.destination-slider .swiper-button-prev:hover,
.destination-slider .swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.destination-slider .swiper-button-prev::after,
.destination-slider .swiper-button-next::after {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--heading);
    transition: color 0.25s ease;
}

.destination-slider .swiper-button-prev:hover::after,
.destination-slider .swiper-button-next:hover::after {
    color: var(--white);
}

/* ==========================================
   EVENTS SECTION
   ========================================== */
.event-section {
    padding: var(--section-py) 0;
    background: var(--white);
}

.event-section-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.event-section .section-badge-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-lg);
    color: var(--heading);
}

.event-section .section-badge-text i {
    font-size: var(--h6);
    color: var(--primary);
}

.event-section h2 {
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 500;
    color: var(--heading);
    margin: var(--space-3) 0 0;
}

.event-section-desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    max-width: 54ch;
    margin: var(--space-3) auto 0;
    line-height: 1.65;
}

/* Card */
.event-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.event-img {
    position: relative;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-date {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--secondary);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: 0.375rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
}

.event-content {
    padding: var(--space-4) var(--space-5);
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-content h3 {
    font-family: var(--font-heading);
    font-size: var(--h6);
    font-weight: 600;
    color: var(--heading);
    margin-bottom: var(--space-2);
}

.event-meta {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-3);
}

.event-meta span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.event-meta i {
    color: var(--primary);
    font-size: var(--text-base);
    flex-shrink: 0;
}

.event-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: var(--space-3) var(--space-4);
    border-radius: 0.375rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-top: auto;
    transition: background 0.3s ease;
}

.event-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.event-btn-arrow {
    background: var(--white);
    color: var(--primary);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
                color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.event-btn:hover .event-btn-arrow {
    color: var(--secondary);
}

.event-btn.button--stroke {
    transition: none;
}

.event-btn.button--stroke::after {
    border-color: transparent;
}

.event-btn.button--stroke:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.event-btn.hover-style-two:hover .event-btn-arrow {
    background-color: var(--secondary);
    color: var(--white);
}

/* Swiper nav — same pattern as destination slider */
.event-slider {
    position: relative;
    overflow: visible;
    padding-top: var(--space-3);
    margin-top: calc(-1 * var(--space-3));
}

/* Horizontal-only clip — same reasoning as .destination-section .container */
.event-section .container {
    overflow-x: clip;
}

.event-slider .swiper-button-prev,
.event-slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    top: 61%;
    transform: translateY(-50%);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.event-slider .swiper-button-prev:hover,
.event-slider .swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.event-slider .swiper-button-prev::after,
.event-slider .swiper-button-next::after {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--heading);
    transition: color 0.25s ease;
}

.event-slider .swiper-button-prev:hover::after,
.event-slider .swiper-button-next:hover::after {
    color: var(--white);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--secondary);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

/* Decorative watermark map, floats behind all footer content */
.footer-map-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-inline: auto;
    width: min(900px, 90%);
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.footer > section {
    position: relative;
    z-index: 1;
}

/* Newsletter strip */
.footer-newsletter-title {
    font-family: var(--font-heading);
    font-size: var(--h5);
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.footer-newsletter-desc {
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--white) 60%, transparent);
    margin: 0;
}

/* Logo */
.footer-logo {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* About blurb */
.footer-about {
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--white) 60%, transparent);
    line-height: 1.8;
    max-width: 34ch;
    margin-bottom: var(--space-5);
}

/* Social icons */
.footer-social-link {
    font-size: var(--text-xl);
    color: color-mix(in srgb, var(--white) 70%, transparent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    color: var(--success);
    transform: translateY(-3px);
}

/* Column headings */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: var(--space-5);
    display: block;
}

/* Nav links */
.footer-nav-link {
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--white) 60%, transparent);
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: var(--white);
}

/* Contact */
.footer-contact-icon {
    color: var(--success);
    font-size: var(--text-base);
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--white) 60%, transparent);
}

.footer-contact-link {
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--white) 60%, transparent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: var(--white);
}

/* Subscribe input */
.footer-input {
    padding: 1rem 1rem 1rem 2.75rem;
    border: 0;
    border-radius: 0.75rem;
}

.footer-input-icon {
    position: absolute;
    top: 50%;
    left: 0.9rem;
    transform: translateY(-50%);
    color: var(--text);
    pointer-events: none;
}

/* Get-in-touch CTA circle */
.footer-cta {
    width: 140px;
    height: 140px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: var(--space-2);
    transition: opacity 0.2s;
}

.footer-cta:hover {
    opacity: .85;
}

.footer-cta-icon {
    font-size: var(--text-xl);
    color: var(--white);
}

.footer-cta-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}

/* Bottom bar */
.footer-copyright {
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--white) 45%, transparent);
    margin: 0;
}

.footer-legal-link {
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--white) 45%, transparent);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: var(--white);
}

/* ==========================================
   Button System — GSAP liquid fill
   (use data-block="button" + .button__flair inside)
   ========================================== */
.button__label {
    position: relative;
    text-align: center;
    transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.button--stroke {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    z-index: 1;
}

.button--stroke:hover {
    color: var(--secondary);
}

.button--stroke::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 0.125rem solid transparent;
    border-radius: inherit;
    pointer-events: none;
}

.button--stroke .button__flair {
    transform: scale(0);
    transform-origin: 0 0;
}

.button--stroke .button__label {
    transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.button__flair {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.button__flair::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    aspect-ratio: 1 / 1;
    background-color: var(--flair);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn-main-two {
    background-color: var(--success) !important;
    color: var(--white) !important;
}

.btn-main-two.button--stroke::after {
    border-color: transparent;
}

.hover-style-two:hover,
.hover-style-two:active {
    color: var(--white) !important;
}

.hover-style-two:hover i,
.hover-style-two:active i {
    color: var(--white) !important;
}

.hover-style-two:hover.button--stroke::after,
.hover-style-two:active.button--stroke::after {
    border-color: transparent;
}

.hover-style-two .button__flair::before {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.active-scale-094:active {
    transform: scale(0.94);
}

/* Guarantee fill buttons clip their flair regardless of element type */
[data-block="button"] {
    overflow: hidden;
    position: relative;
}

/* ==========================================
   Utilities
   ========================================== */
.container-two {
    max-width: 1170px;
    width: 100%;
    margin-inline: auto;
}

.text-line-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.text-neutral-900 {
    color: var(--heading);
}

.active--translate-y-2:active {
    transform: translateY(-8px);
}

/* --- Animations --- */
@keyframes upDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.anim-updown {
    animation: upDown 3s ease-in-out infinite;
}

@keyframes wobble {
    0%   { transform: translateX(0); }
    10%  { transform: translateX(-6px); }
    25%  { transform: translateX(5px); }
    40%  { transform: translateX(-3px); }
    55%  { transform: translateX(2px); }
    70%  { transform: translateX(-1px); }
    85%  { transform: translateX(0.5px); }
    100% { transform: translateX(0); }
}

.anim-wobble {
    display: inline-flex;
}

.service-card:hover .anim-wobble {
    animation: wobble 0.9s ease-out forwards;
}

/* ==========================================
   Shared: section eyebrow badge
   (promoted from process-section/event-section scoping)
   ========================================== */
.section-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-lg);
    color: var(--black);
}

.section-badge-text i {
    font-size: var(--h6);
    color: var(--primary);
}

/* ==========================================
   PAGE BANNER (inner-page hero / breadcrumb)
   Shared by about-us.php / contact-us.php
   ========================================== */
.page-banner {
    position: relative;
    overflow: hidden;
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--secondary) 0%, color-mix(in srgb, var(--secondary) 80%, var(--primary-dark)) 100%);
    text-align: center;
}

.page-banner-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    opacity: 0.6;
    pointer-events: none;
}

.page-banner-shape {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 340px;
    opacity: 0.5;
    pointer-events: none;
}

.page-banner--contact {
    background: linear-gradient(135deg, var(--secondary) 0%, color-mix(in srgb, var(--secondary) 78%, var(--success)) 100%);
}

.page-banner--contact .page-banner-shape {
    right: auto;
    left: -60px;
}

.page-banner--countries {
    background: linear-gradient(135deg, var(--secondary) 0%, color-mix(in srgb, var(--secondary) 82%, var(--warning)) 100%);
}

/* Breadcrumb banner photos (assets/images/breadcrumbs). The --photo pages show
   the image on its own (headline is baked into the artwork); only a soft
   bottom fade darkens the strip where the breadcrumb sits. --soon still keeps
   its overlay copy, so it uses a heavier all-over scrim. */
.page-banner--about,
.page-banner--countries,
.page-banner--contact,
.page-banner--soon {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Image-only header: photo carries the headline, breadcrumb pinned bottom. */
.page-banner--photo {
    min-height: clamp(200px, 31.25vw, 600px);
    display: flex;
    align-items: flex-end;
    padding-top: var(--section-py);
    padding-bottom: var(--space-5);
    text-align: center;
}

.page-banner--about {
    background-image:
        linear-gradient(to top, color-mix(in srgb, var(--secondary) 62%, transparent) 0%, transparent 50%),
        url(../images/breadcrumbs/1920-600-banners-04.webp);
}

.page-banner--countries {
    background-image:
        linear-gradient(to top, color-mix(in srgb, var(--secondary) 62%, transparent) 0%, transparent 50%),
        url(../images/breadcrumbs/1920-600-banners-03.webp);
}

.page-banner--contact {
    background-image:
        linear-gradient(to top, color-mix(in srgb, var(--secondary) 62%, transparent) 0%, transparent 50%),
        url(../images/breadcrumbs/1920-600-banners-01.webp);
}

.page-banner--soon {
    background-image:
        linear-gradient(135deg, color-mix(in srgb, var(--secondary) 90%, transparent) 0%, color-mix(in srgb, var(--secondary) 76%, transparent) 100%),
        url(../images/breadcrumbs/1920-600-banners-05.webp);
}

.page-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-banner .section-badge-text {
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.page-banner .section-badge-text i {
    color: var(--success);
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: var(--h1);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-5);
}

.page-banner-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.65);
}

.page-banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s;
}

.page-banner-breadcrumb a:hover {
    color: var(--success);
}

.page-banner-breadcrumb i {
    font-size: 0.7rem;
}

.page-banner-breadcrumb span {
    color: var(--success);
    font-weight: 600;
}

/* Mask-reveal hover heading — cursor-tracked gradient reveal.
   --mask-x/--mask-y are set by the existing pointermove listener in custom.js;
   used once, on the About page banner H1 only. */
.section-title-negative {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
}

.section-title-negative::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0;
    -webkit-mask-image: radial-gradient(circle 160px at var(--mask-x, -999px) var(--mask-y, -999px), black 0%, transparent 100%);
    mask-image: radial-gradient(circle 160px at var(--mask-x, -999px) var(--mask-y, -999px), black 0%, transparent 100%);
    pointer-events: none;
}

/* --- CTA (shared by About & Contact) --- */
.page-cta {
    position: relative;
    overflow: hidden;
    padding: var(--section-py) 0;
    background: var(--secondary);
    text-align: center;
}

.page-cta-shape {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 260px;
    opacity: 0.5;
    pointer-events: none;
}

.page-cta h2 {
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 500;
    color: var(--white);
    max-width: 620px;
    margin: 0 auto var(--space-4);
    line-height: 1.2;
}

.page-cta p {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto var(--space-6);
}

.page-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.page-cta-badge-wrap {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

/* --- Company Intro --- */
.about-intro {
    padding: var(--section-py) 0;
}

/* --- Media: single hero image + soft brand panel + stat card --- */
.about-intro-figure {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 var(--space-5) var(--space-5) 0;
}

.about-intro-figure::before {
    content: "";
    position: absolute;
    top: -1.25rem;
    right: 0;
    width: 62%;
    height: 62%;
    background: color-mix(in srgb, var(--primary) 12%, var(--white));
    border-radius: 1.5rem;
    z-index: 0;
}

.about-intro-figure-img {
    position: relative;
    z-index: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(7, 7, 19, 0.16);
}

.about-intro-figure-img img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3.1;
    object-fit: cover;
}

.about-intro-stat {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(7, 7, 19, 0.12);
}

.about-intro-stat strong {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
}

.about-intro-stat span {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.25;
    color: var(--secondary);
}

/* --- Content --- */
.about-intro-content h2 {
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 500;
    color: var(--heading);
    line-height: 1.15;
    margin: var(--space-3) 0 var(--space-3);
}

.about-intro-subheading {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.about-intro-lead {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.about-intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5) var(--space-4);
    margin-bottom: var(--space-6);
}

.about-intro-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.about-intro-feature-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--success) 14%, var(--white));
    color: var(--success);
    font-size: 1.3rem;
}

.about-intro-feature h4 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--heading);
    margin: 0 0 0.15rem;
}

.about-intro-feature p {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

.about-intro-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4) var(--space-6);
}

/* Compact, light button (replaces the heavy full-width blue bar).
   Color on the anchor so the label inherits it and flips to white
   via .hover-style-two:hover. */
.about-intro-actions .event-btn {
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    color: var(--secondary);
}

.about-intro-actions .button--stroke::after {
    border-color: transparent;
}

.about-intro-call {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.25s;
}

.about-intro-call i {
    color: var(--primary);
    font-size: 1.3rem;
}

.about-intro-call:hover {
    color: var(--primary);
}

@media (max-width: 575px) {
    .about-intro-features {
        grid-template-columns: 1fr;
    }
}

/* --- Mission & Vision --- */
.mv-section {
    padding: var(--section-py) 0 calc(var(--section-py) + var(--space-5));
    background: var(--bg);
}

.mv-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-6);
}

.mv-card {
    position: relative;
    overflow: hidden;
    padding: var(--space-7) var(--space-6);
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.mv-card--mission {
    background: var(--secondary);
    color: var(--white);
}

.mv-card--vision {
    background: var(--white);
    border: 1px solid var(--border);
    margin-top: -2.5rem;
    margin-left: 2.5rem;
}

.mv-card .mv-icon {
    position: absolute;
    right: -0.5rem;
    bottom: -1rem;
    font-size: 8rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
}

.mv-card--vision .mv-icon {
    color: color-mix(in srgb, var(--secondary) 8%, transparent);
}

.mv-card .mv-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
    color: var(--success);
    position: relative;
    z-index: 1;
}

.mv-card--vision .mv-label {
    color: var(--primary);
}

.mv-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: var(--h4);
    font-weight: 500;
    margin-bottom: var(--space-3);
}

.mv-card--vision h3 {
    color: var(--heading);
}

.mv-card p {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    max-width: 420px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.mv-card--mission p {
    color: rgba(255, 255, 255, 0.8);
}

.mv-card--vision p {
    color: var(--text);
}

/* --- Timeline / Journey --- */
.journey-section {
    padding: var(--section-py) 0;
}

.journey-track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.journey-track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, var(--primary), var(--success));
    border-radius: 2px;
}

.journey-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: var(--space-7);
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    z-index: 2;
}

.journey-item:nth-child(even) .journey-dot {
    border-color: var(--success);
}

.journey-card {
    width: calc(50% - var(--space-6));
    background: var(--white);
    padding: var(--space-5) var(--space-6);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.journey-year {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2);
}

.journey-card h3 {
    font-family: var(--font-heading);
    font-size: var(--h6);
    font-weight: 600;
    color: var(--heading);
    margin-bottom: var(--space-2);
}

.journey-card p {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* --- Core Values (hover-fan row) --- */
.values-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.values-row {
    display: flex;
    gap: var(--space-4);
    height: 420px;
}

.value-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: var(--space-6) var(--space-4);
    border-radius: 1.25rem;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease;
}

.value-panel:nth-child(2n) {
    background: color-mix(in srgb, var(--secondary) 85%, var(--primary));
}

.value-panel:nth-child(3n) {
    background: color-mix(in srgb, var(--secondary) 70%, var(--primary));
}

.value-panel:hover,
.value-panel:focus-within {
    flex: 2.2;
}

.value-panel-icon {
    width: 52px;
    height: 52px;
    margin-bottom: var(--space-5);
    object-fit: contain;
}

.value-panel h3 {
    font-family: var(--font-heading);
    font-size: var(--h6);
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: var(--space-2);
}

.value-panel p {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 260px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease 0.1s, max-height 0.4s ease;
}

.value-panel:hover p,
.value-panel:focus-within p {
    opacity: 1;
    max-height: 140px;
}

.value-panel-index {
    position: absolute;
    top: var(--space-4);
    right: var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--h4);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
}

@media (hover: none) {
    .value-panel {
        flex: 2.2 !important;
    }

    .value-panel p {
        opacity: 1;
        max-height: none;
    }
}

/* --- Stats / Achievements --- */
.stats-section {
    padding: var(--section-py) 0;
    background: var(--secondary);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-3);
}

.stat-number .counter {
    visibility: hidden;
}

.stat-item .stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.65);
}

/* --- Team Showcase --- */
.team-section {
    padding: var(--section-py) 0;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-card-img {
    overflow: hidden;
}

.team-card-img img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.team-card:hover .team-card-img img {
    transform: scale(1.05);
}

.team-card-social {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    background: linear-gradient(to top, rgba(7, 7, 19, 0.75), transparent);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.team-card:hover .team-card-social {
    transform: translateY(0);
    opacity: 1;
}

.team-card-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 0.9rem;
    transition: background 0.25s, color 0.25s;
}

.team-card-social a:hover {
    background: var(--primary);
}

.team-card-content {
    padding: var(--space-4) var(--space-2) 0;
    text-align: center;
}

.team-card-content h3 {
    font-family: var(--font-heading);
    font-size: var(--h6);
    font-weight: 600;
    color: var(--heading);
    margin-bottom: var(--space-1);
}

.team-card-content span {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 500;
}

/* --- Process / Workflow (light stepper) --- */
.workflow-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.workflow-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: var(--space-6);
}

.workflow-track::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 26px;
    right: 26px;
    height: 0;
    border-top: 2px dashed var(--border);
    z-index: 0;
}

.workflow-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 160px;
}

.workflow-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    transition: background 0.3s, color 0.3s;
}

.workflow-step:hover .workflow-step-num {
    background: var(--primary);
    color: var(--white);
}

.workflow-step h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--heading);
    margin-bottom: var(--space-1);
}

.workflow-step p {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
    margin: 0;
}

/* --- Testimonials --- */
.testimonial-section {
    padding: var(--section-py) 0;
}

.testimonial-slider {
    padding-bottom: var(--space-6);
}

.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: 1.25rem;
    padding: var(--space-6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.testimonial-quote-icon {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    width: 46px;
    opacity: 0.12;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--warning);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.15rem;
}

.testimonial-author span {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
}

/* --- Partners --- */
.partners-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-7);
}

.partners-row img {
    max-height: 48px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.partners-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

/* --- Contact Form (split + glass card) --- */
/* ==========================================
   CONTACT PAGE — reference redesign
   (reservation-style card + underline form,
    Label-pill reason cards). JS-coupled hooks
    kept: #contactForm, .contact-field,
    .contact-field-error, .contact-form-submit,
    .contact-form-status.
   ========================================== */
.contact-form-section {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 5%, var(--white)) 0%, var(--white) 60%);
}

/* --- Left: static reservation/calendar mockup --- */
.reservation-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: var(--space-6);
    box-shadow: 0 24px 60px rgba(7, 7, 19, 0.08);
}

.reservation-card-head {
    text-align: center;
    padding-bottom: var(--space-5);
    margin-bottom: var(--space-5);
    border-bottom: 1px solid var(--border);
}

.reservation-host {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
}

.reservation-card-head h3 {
    font-family: var(--font-heading);
    font-size: var(--h5);
    font-weight: 600;
    color: var(--heading);
    margin: var(--space-1) 0 var(--space-3);
}

.reservation-duration {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
}

.reservation-card-body h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--heading);
    text-align: center;
    margin-bottom: var(--space-5);
}

.reservation-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.reservation-cal-month {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--heading);
}

.reservation-cal-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--text);
    font-size: 0.9rem;
}

.reservation-cal-nav.is-active {
    background: var(--primary);
    color: var(--white);
}

.reservation-weekdays,
.reservation-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-2);
}

.reservation-weekdays span {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    padding-bottom: var(--space-2);
}

.reservation-days span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
}

.reservation-days span.is-available {
    background: color-mix(in srgb, var(--primary) 12%, var(--white));
    color: var(--primary);
    font-weight: 600;
}

.reservation-days span.has-dot::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
}

.reservation-tz {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
}

/* --- Right: form block with highlighted heading --- */
.contact-form-heading {
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 500;
    line-height: 1.12;
    color: var(--heading);
    margin-bottom: var(--space-4);
}

.contact-form-heading .hl {
    position: relative;
    color: var(--primary);
    white-space: nowrap;
}

.contact-form-heading .hl--underline svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35em;
    width: 100%;
    height: 0.5em;
    color: var(--primary);
    overflow: visible;
}

.contact-form-intro {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--space-6);
}

.contact-form-intro a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-field {
    margin-bottom: var(--space-5);
}

/* Underline-style field (reference look): floating label + bottom border */
.contact-field--underline label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
    margin-bottom: var(--space-2);
}

.contact-field--underline .form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 0.35rem 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--heading);
    background: transparent;
    transition: border-color 0.25s;
}

.contact-field--underline textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.contact-field--underline .form-control::placeholder {
    color: color-mix(in srgb, var(--text) 55%, transparent);
}

.contact-field--underline .form-control:focus {
    outline: none;
    border-bottom-color: var(--primary);
    box-shadow: 0 1px 0 0 var(--primary);
}

.contact-field--underline .form-control.is-invalid {
    border-bottom-color: var(--danger);
}

/* Terms checkbox row */
.contact-terms {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text);
    cursor: pointer;
}

.contact-terms input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.contact-terms a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-field-error {
    display: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--danger);
    margin-top: var(--space-1);
}

.contact-field.has-error .contact-field-error {
    display: block;
}

.contact-form-submit {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 999px;
}

.contact-form-submit.button--stroke::after {
    border-color: transparent;
}

.contact-form-submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.contact-form-status {
    display: none;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-4);
    border-radius: 0.75rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
}

.contact-form-status.is-visible {
    display: flex;
}

.contact-form-status.status-success {
    background: color-mix(in srgb, var(--success) 12%, white);
    color: var(--success);
}

.contact-form-status.status-error {
    background: color-mix(in srgb, var(--danger) 10%, white);
    color: var(--danger);
}

/* --- Contact Reason Cards (Label pill + question + accent link) --- */
.contact-info-section {
    padding: var(--section-py) 0;
}

.contact-reason-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: var(--space-6) var(--space-5);
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.contact-reason-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.3rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg) 60%, var(--white));
}

.contact-reason-card h3 {
    font-family: var(--font-heading);
    font-size: var(--h6);
    font-weight: 500;
    line-height: 1.3;
    color: var(--heading);
    margin: 0;
}

.contact-reason-link {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--orange);
    margin-top: auto;
    transition: color 0.25s;
}

.contact-reason-link:hover {
    color: color-mix(in srgb, var(--orange) 75%, var(--heading));
}

/* --- Social + Business Hours --- */
.social-hours-section {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.social-hours-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: var(--space-6);
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.social-hours-card h3 {
    font-family: var(--font-heading);
    font-size: var(--h5);
    font-weight: 500;
    color: var(--heading);
    margin-bottom: var(--space-5);
}

.social-icon-row {
    display: flex;
    gap: var(--space-4);
}

.social-icon-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--secondary);
    font-size: 1.35rem;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-icon-row a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li .day {
    font-weight: 600;
    color: var(--heading);
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--success);
    margin-top: var(--space-4);
}

.hours-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--success) 55%, transparent);
    }
    70% {
        box-shadow: 0 0 0 10px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

/* --- Map --- */
.contact-map-section {
    padding: 0 0 var(--section-py);
}

.contact-map-wrap {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.map-pin-card {
    position: absolute;
    left: var(--space-5);
    bottom: var(--space-5);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: var(--space-4) var(--space-5);
    box-shadow: 0 10px 30px rgba(7, 7, 19, 0.15);
    max-width: 280px;
}

.map-pin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-pin-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.2rem;
}

.map-pin-card a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
}

/* --- FAQ Teaser --- */
.faq-section {
    padding: var(--section-py) 0;
}

.edu-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: var(--space-4);
}

.edu-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.edu-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--text-lg);
    color: var(--heading);
    padding: var(--space-5);
    background: var(--white);
}

.edu-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: color-mix(in srgb, var(--primary) 5%, white);
    box-shadow: none;
}

.edu-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.edu-accordion .accordion-body {
    padding: 0 var(--space-5) var(--space-5);
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
}

/* ==========================================
   COMING SOON PAGE
   ========================================== */
.page-banner--soon {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: var(--section-py) 0;
}

.coming-soon-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 2.5rem;
    color: var(--success);
    animation: statusPulse 2.4s infinite;
}

.page-banner--soon .page-banner-breadcrumb {
    margin-bottom: var(--space-5);
    justify-content: center;
}

.page-banner--soon h1 {
    margin-bottom: var(--space-4);
}

.page-banner--soon p.coming-soon-text {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto var(--space-6);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-6);
}