/* =========================================================
   BAUNDULE UI SYSTEM
   Clean • Professional • Optimized
========================================================= */

@import url("branding.css");

/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --nav-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-speed: 0.35s;
}

/* =========================================================
   Z-INDEX LAYER SYSTEM
========================================================= */

.site-header {
    z-index: 1000;
}

.offcanvas-backdrop {
    z-index: 1990 !important;
}

.baundule-offcanvas {
    z-index: 2000 !important;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background var(--nav-speed) var(--nav-ease),
        backdrop-filter var(--nav-speed) var(--nav-ease),
        border-color var(--nav-speed) var(--nav-ease),
        box-shadow var(--nav-speed) var(--nav-ease),
        padding var(--nav-speed) var(--nav-ease);
}

.site-header.is-scrolled {
    padding: 4px 0;
    background: var(--nav-surface);
    border-color: var(--nav-border-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--nav-shadow);
}

/* =========================================================
   NAVBAR
========================================================= */

.modern-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
    padding-top: 8px;
    transition:
        min-height var(--nav-speed) var(--nav-ease),
        padding var(--nav-speed) var(--nav-ease),
        gap var(--nav-speed) var(--nav-ease);
}

.site-header.is-scrolled .modern-navbar {
    min-height: 76px;
    padding-top: 4px;
}

/* =========================================================
   LOGO
========================================================= */

.logo-image {
    width: auto;
    height: 70px;
    transition:
        height var(--nav-speed) var(--nav-ease),
        opacity 0.3s var(--nav-ease),
        transform 0.3s var(--nav-ease);
}

.logo-dark {
    display: none !important;
}

.site-header.is-scrolled .logo-light {
    display: none !important;
}

.site-header.is-scrolled .logo-dark {
    display: block !important;
    height: 58px;
}

/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-pill-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: var(--nav-radius-full);
    transition:
        background var(--nav-speed) ease,
        box-shadow var(--nav-speed) ease;
}

.site-header.is-scrolled .nav-pill-group {
    background: rgba(17, 17, 17, 0.03);
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.modern-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding-inline: 16px !important;
    border-radius: var(--nav-radius-full);

    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.01em;

    color: var(--nav-text-light);
    text-decoration: none;

    transition:
        color var(--nav-speed) ease,
        background var(--nav-speed) ease,
        transform var(--nav-speed) ease;
}

.site-header.is-scrolled .modern-nav-link {
    color: var(--nav-text-dark);
}

.modern-nav-link:hover {
    color: var(--bs-primary);
    background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .modern-nav-link:hover {
    background: rgba(0, 0, 0, 0.04);
}

.modern-nav-link.active {
    color: var(--bs-primary) !important;
}

.modern-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;

    width: 0;
    height: 2px;

    opacity: 0;
    border-radius: 999px;

    background: var(--bs-primary);

    transform: translateX(-50%);
    transition:
        width var(--nav-speed) ease,
        opacity var(--nav-speed) ease;
}

.modern-nav-link:hover::after,
.modern-nav-link.active::after {
    width: 38%;
    opacity: 1;
}

/* =========================================================
   USER AVATAR
========================================================= */

.user-avatar {
    height: 40px;
}

/* =========================================================
   CTA BUTTONS
========================================================= */

.nav-cta-btn,
.nav-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 42px;
    padding: 8px 16px;

    border-radius: var(--nav-radius-full);

    font-size: 13.5px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background var(--nav-speed) ease,
        color var(--nav-speed) ease,
        border-color var(--nav-speed) ease,
        transform var(--nav-speed) ease;
}

.nav-cta-btn {
    padding-inline: 18px;
    color: var(--bs-dark);
    background: var(--color-primary);
}

.nav-cta-btn:hover {
    color: var(--color-primary);
    background: var(--bs-dark);
    transform: translateY(-1px);
}

.nav-cta-secondary {
    padding-inline: 14px;
    color: var(--bs-dark);
    background: var(--bs-white);
}

.nav-cta-secondary:hover {
    color: var(--bs-dark);
    background: var(--color-primary);
    transform: translateY(-1px);
}

.nav-cta-btn i,
.nav-cta-secondary i {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    line-height: 1;
}

/* =========================================================
   TOGGLER
========================================================= */

.custom-toggler {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    transition:
        background var(--nav-speed) ease,
        border-color var(--nav-speed) ease,
        box-shadow var(--nav-speed) ease,
        transform var(--nav-speed) ease;
}

.custom-toggler:hover {
    transform: translateY(-1px);
}

.site-header.is-scrolled .custom-toggler {
    background: #fff;
    border-color: var(--nav-border-soft);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.toggler-line {
    width: 18px;
    height: 2px;

    border-radius: 999px;
    background: #fff;

    transition: background var(--nav-speed) ease;
}

.site-header.is-scrolled .toggler-line {
    background: #111;
}

/* =========================================================
   MEGA MENU
========================================================= */

.mega-dropdown {
    position: relative;
}

.mega-dropdown::after {
    display: none;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;

    width: min(1080px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);

    padding: 18px;

    opacity: 0;
    visibility: hidden;

    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: var(--nav-shadow-lg);

    z-index: 1100;

    transform: translateX(-50%) translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.mega-dropdown.open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .mega-dropdown:hover > .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.navbar,
.navbar-nav,
.nav-item {
    overflow: visible !important;
}

/* =========================================================
   MEGA GRID
========================================================= */

.mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.mega-item {
    position: relative;
    display: block;
    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;

    background: #fff;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);

    text-decoration: none;

    transition:
        border-color var(--nav-speed) ease,
        box-shadow var(--nav-speed) ease,
        transform var(--nav-speed) ease;
}

.mega-item:hover {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.mega-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;

    transition: transform var(--nav-speed) ease;
}

.mega-item:hover img {
    transform: scale(1.03);
}

.mega-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.05)
    );
}

.mega-item span,
.mega-item small {
    position: absolute;
    left: 12px;
    right: 12px;
    z-index: 2;

    padding: 4px 8px;

    color: #fff;

    border-radius: 6px;
    background: rgba(0, 0, 0, 0.45);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mega-item span {
    bottom: 24px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.mega-item small {
    bottom: 6px;

    font-size: 11px;
    line-height: 1.35;
}

/* =========================================================
   OFFCANVAS
========================================================= */

body.offcanvas-open {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.baundule-offcanvas {
    width: min(420px, 100vw) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;

    border-left: 1px solid var(--color-border);

    background: linear-gradient(180deg, #fffdf8 0%, #faf7ef 100%);

    box-shadow: -24px 0 64px rgba(18, 18, 18, 0.14);

    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* =========================================================
   OFFCANVAS HEADER
========================================================= */

.baundule-offcanvas .offcanvas-header {
    position: sticky;
    top: 0;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    border-bottom: 1px solid var(--color-divider);

    background: rgba(255, 253, 248, 0.92);

    backdrop-filter: blur(14px);
}

.offcanvas-logo {
    width: auto;
    height: 42px;
}

/* =========================================================
   OFFCANVAS BODY
========================================================= */

.baundule-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;

    height: 100%;

    overflow-x: hidden;
    overflow-y: auto;
}

/* =========================================================
   USER BOX
========================================================= */

.offcanvas-user-box {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 20px;

    border-bottom: 1px solid var(--color-divider);

    background: rgba(255, 255, 255, 0.6);
}

.offcanvas-user-box .user-avatar {
    width: 44px;
    height: 44px;

    object-fit: cover;
    border-radius: 50%;
}

/* =========================================================
   OFFCANVAS NAVIGATION
========================================================= */

.offcanvas-nav {
    padding: 12px;
}

.offcanvas-menu {
    display: grid;
    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.offcanvas-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 48px;
    padding: 14px 16px;

    border: 1px solid transparent;
    border-radius: 14px;

    color: var(--color-text);

    font-weight: 600;
    text-decoration: none;

    transition: all 0.25s ease;
}

.offcanvas-menu li a::after {
    content: "\f061";

    font: var(--fa-font-solid);
    font-size: 0.75rem;

    opacity: 0;

    transform: translateX(-6px);
    transition: 0.25s ease;
}

.offcanvas-menu li a:hover,
.offcanvas-menu li a.active {
    border-color: rgba(245, 196, 0, 0.2);
    background: rgba(245, 196, 0, 0.08);

    transform: translateX(2px);
}

.offcanvas-menu li a:hover::after,
.offcanvas-menu li a.active::after {
    opacity: 1;
    transform: translateX(0);
}

.offcanvas-menu .divider {
    height: 1px;
    margin: 10px 0;

    background: var(--color-divider);
}

/* =========================================================
   LOGIN LINK
========================================================= */

.offcanvas-menu .login-link {
    justify-content: center;

    color: var(--bs-white) !important;

    font-weight: 700;

    border-radius: 12px;
    background: var(--bs-dark);
}

.offcanvas-menu .login-link i {
    margin-right: 8px;
}

.offcanvas-menu .login-link:hover {
    transform: translateY(-1px);
}

/* =========================================================
   OFFCANVAS CTA
========================================================= */

.offcanvas-cta {
    margin-top: auto;
    padding: 18px 20px;

    border-top: 1px solid var(--color-divider);

    background: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   CLOSE BUTTON
========================================================= */

.baundule-offcanvas .btn-close {
    position: relative;

    width: 20px;
    height: 20px;

    opacity: 1;

    border: 1px solid var(--color-primary);
    border-radius: 50%;

    background: var(--color-primary);
}

.baundule-offcanvas .btn-close::before,
.baundule-offcanvas .btn-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 16px;
    height: 2px;

    background: var(--color-text);
}

.baundule-offcanvas .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.baundule-offcanvas .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================================================
   BACKDROP
========================================================= */

.offcanvas-backdrop.show {
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(3px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .nav-pill-group {
        display: none !important;
    }

    .logo-image,
    .site-header.is-scrolled .logo-dark {
        height: 46px;
    }

    .mega-menu {
        left: 12px !important;
        right: 12px !important;

        width: auto;
        max-width: none;

        opacity: 0;
        pointer-events: none;

        transform: translateY(8px) scale(0.98);

        transition: all 0.25s ease;
    }

    .mega-dropdown.open > .mega-menu {
        opacity: 1;
        pointer-events: auto;

        transform: translateY(0) scale(1);
    }

    .mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .mega-item img {
        height: 150px;
        border-radius: 12px;
    }
}

@media (max-width: 575px) {

    .baundule-offcanvas {
        width: 80% !important;

        border-left: 0;
        border-radius: 0;
    }

    .baundule-offcanvas .offcanvas-header {
        min-height: 64px;
        padding: 14px 16px;
    }

    .offcanvas-user-box,
    .offcanvas-cta,
    .offcanvas-contact {
        padding-inline: 16px;
    }

    .offcanvas-nav {
        padding: 10px;
    }

    .offcanvas-menu li a {
        min-height: 50px;
        padding: 14px;

        border-radius: 12px;
    }

    .offcanvas-cta .nav-cta-btn,
    .offcanvas-cta .nav-cta-secondary,
    .offcanvas-cta .login-link,
    .offcanvas-cta .btn {
        min-height: 52px;

        font-size: 14px;

        border-radius: 12px;
    }

    .mega-menu {
        position: static !important;

        display: none;

        margin-top: 10px;

        opacity: 1 !important;
        visibility: visible !important;

        background: transparent;
        box-shadow: none;

        transform: none !important;
    }

    .mega-dropdown.open .mega-menu {
        display: block;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mega-item img {
        height: 170px;
        border-radius: 14px;
    }
}

@media (max-width: 400px) {

    .logo-image {
        height: 42px;
    }

    .offcanvas-menu li a {
        padding: 13px;
        font-size: 14px;
    }

    .offcanvas-cta {
        padding: 14px;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .modern-nav-link,
    .nav-cta-btn,
    .nav-cta-secondary,
    .custom-toggler,
    .toggler-line,
    .offcanvas-menu li a,
    .baundule-offcanvas .btn-close,
    .social-links a,
    .mega-menu,
    .mega-item,
    .mega-item img {
        transition: none !important;
    }

    .offcanvas-menu li a:hover,
    .mega-item:hover,
    .custom-toggler:hover,
    .social-links a:hover {
        transform: none !important;
    }
}
/* =========================================================
   HERO SECTION
   Cinematic • Optimized • Professional
========================================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: visible;
    background: #050505;
    isolation: isolate;

    /* space for mobile floating stats */
    padding-bottom: 120px;
}

/* =========================================================
   MEDIA LAYER
========================================================= */

.hero-video-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* =========================================================
   SHARED MEDIA STYLES
========================================================= */

.hero-fallback-image,
.hero-bg-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    will-change: opacity, transform;
}

/* =========================================================
   FALLBACK IMAGE
========================================================= */

.hero-fallback-image {
    z-index: 1;

    opacity: 1;

    filter:
        brightness(0.72)
        saturate(1.08)
        contrast(1.04);

    transform: scale(1.04);

    transition:
        opacity 0.9s ease,
        transform 6s ease;
}

/* =========================================================
   BACKGROUND VIDEO
========================================================= */

.hero-bg-video {
    z-index: 2;

    opacity: 0;

    pointer-events: none;

    transition: opacity 1.2s ease;
}

/* =========================================================
   VIDEO READY STATE
========================================================= */

.hero-section.is-ready .hero-bg-video {
    opacity: 1;
}

.hero-section.is-ready .hero-fallback-image {
    opacity: 0;
    visibility: hidden;
}

/* =========================================================
   TOP OVERLAY
========================================================= */

.hero-top-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 180px;

    z-index: 3;

    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.62) 30%,
        rgba(0, 0, 0, 0.28) 65%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* =========================================================
   REMOVE FULL OVERLAY
========================================================= */

.hero-section::after {
    display: none;
}

/* =========================================================
   HERO FLOATING STATS
========================================================= */

.hero-floating-stats {
    position: absolute;
    left: 50%;
    bottom: 40px;

    z-index: 5;

    width: min(1180px, calc(100% - 24px));

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    padding: 0;

    transform: translateX(-50%);
}

/* =========================================================
   STAT CARD
========================================================= */

.hero-stat-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.10);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.hero-stat-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.08),
            transparent 55%
        );

    pointer-events: none;
}

.hero-stat-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255,255,255,0.22);

    background: rgba(255,255,255,0.14);

    box-shadow:
        0 18px 42px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

/* =========================================================
   ICON
========================================================= */

.hero-stat-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #ffd84d
        );

    color: #111;

    font-size: 22px;

    box-shadow:
        0 10px 24px rgba(245, 196, 0, 0.28);
}

.hero-stat-icon i {
    line-height: 1;
}

/* =========================================================
   CONTENT
========================================================= */

.hero-stat-content h3 {
    margin: 0 0 4px;

    color: #fff;

    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-content p {
    margin: 0;

    color: rgba(255,255,255,0.78);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hero-section {
        padding-bottom: 150px;
    }

    .hero-top-overlay {
        height: 140px;

        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.66) 36%,
            rgba(0, 0, 0, 0.24) 72%,
            rgba(0, 0, 0, 0) 100%
        );
    }

    .hero-fallback-image {
        transform: scale(1.02);
    }

    .hero-floating-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 14px;

        bottom: 26px;
    }

    .hero-stat-card {
        padding: 16px;

        border-radius: 18px;
    }

    .hero-stat-icon {
        width: 52px;
        height: 52px;

        border-radius: 16px;

        font-size: 20px;
    }

    .hero-stat-content h3 {
        font-size: 24px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .hero-section {
        min-height: 92vh;

        /* important for floating cards */
        padding-bottom: 170px;
    }

    .hero-floating-stats {

        width: calc(100% - 12px);

        /* all 4 cards side by side */
        grid-template-columns: repeat(4, 1fr);

        gap: 6px;

        /* pushed below hero content */
        bottom: -45px;

        z-index: 20;
    }

    .hero-stat-card {

        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 8px;

        padding: 12px 6px;

        border-radius: 14px;

        /* solid premium mobile background */
        background: #111827;

        border: 1px solid rgba(255,255,255,0.06);

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-stat-card:hover {
        transform: translateY(-2px);

        background: #0f172a;
    }

    .hero-stat-icon {

        width: 38px;
        height: 38px;

        border-radius: 12px;

        font-size: 15px;
    }

    .hero-stat-content h3 {

        font-size: 15px;

        margin-bottom: 2px;
    }

    .hero-stat-content p {

        font-size: 10px;

        line-height: 1.3;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-bg-video {
        display: none;
    }

    .hero-fallback-image {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none;
    }

    .hero-fallback-image,
    .hero-bg-video,
    .hero-stat-card {
        transition: none !important;
    }

    .hero-stat-card:hover {
        transform: none !important;
    }
}
/* =========================================================
   WHY CHOOSE BAUNDULE
========================================================= */

.why-baundule-section {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            to bottom,
            #fffdf8 0%,
            #f8f5ed 100%
        );

    overflow: hidden;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.why-baundule-section .section-heading {
    margin-bottom: 70px;
}

.why-baundule-section .heading-content {
    max-width: 860px;
    margin: 0 auto;
}

/* =========================================================
   KICKER
========================================================= */

.why-baundule-section .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 24px;

    color: #b88917;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.why-baundule-section .section-kicker::before,
.why-baundule-section .section-kicker::after {
    content: "";

    width: 42px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(184,137,23,0.85),
            transparent
        );
}

/* =========================================================
   TITLE
========================================================= */

.why-baundule-section .section-title {
    margin-bottom: 24px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 700;

    line-height: 0.98;
    letter-spacing: -0.04em;

    color: #111111;
}

.why-baundule-section .section-title span {
    display: block;

    margin-top: 10px;

    color: #d4a017;
}

/* =========================================================
   SUBTITLE
========================================================= */

.why-baundule-section .section-subtitle {
    max-width: 720px;
    margin: 0 auto;

    color: #66707b;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.9;
}

/* =========================================================
   WRAPPER
========================================================= */

.why-baundule-wrapper {
    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 40px;

    align-items: center;
}

/* =========================================================
   IMAGE SIDE
========================================================= */

.why-image-box {
    position: relative;

    overflow: hidden;

    border-radius: 34px;
}

.why-main-image {
    width: 100%;
    height: 600px;

    object-fit: cover;

    border-radius: 34px;

    box-shadow:
        0 24px 60px rgba(0,0,0,0.14);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.why-image-box:hover .why-main-image {
    transform: scale(1.03);
}

/* =========================================================
   GRID
========================================================= */

.why-baundule-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

/* =========================================================
   CARD
========================================================= */

.why-card {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    min-height: 290px;

    padding: 34px 28px;

    border-radius: 28px;

    background: rgba(255,255,255,0.82);

    border: 1px solid rgba(0,0,0,0.05);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            var(--color-primary),
            #ffd84d
        );

    transition: opacity .35s ease;
}

.why-card:hover {
    transform: translateY(-8px);

    border-color: rgba(245, 196, 0, 0.22);

    box-shadow:
        0 24px 50px rgba(0,0,0,0.10);
}

.why-card:hover::before {
    opacity: 1;
}

/* =========================================================
   ICON
========================================================= */

.why-icon {
    width: 74px;
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 24px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            #ffd84d
        );

    color: #111;

    font-size: 28px;

    box-shadow:
        0 14px 30px rgba(245, 196, 0, 0.22);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.why-card h3 {
    margin-bottom: 14px;

    color: #111;

    font-size: 22px;
    font-weight: 700;

    line-height: 1.3;
}

.why-card p {
    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.8;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .why-baundule-section {
        padding: 140px 0 100px;
    }

    .why-baundule-section .section-title {
        font-size: clamp(2.7rem, 7vw, 4.4rem);
    }

    .why-baundule-section .section-subtitle {
        font-size: 16px;
        line-height: 1.8;
    }

    .why-baundule-wrapper {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .why-main-image {
        height: 520px;
    }

    .why-baundule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .why-baundule-section {

        /* adjusted because hero stats now overlap */
        padding: 130px 0 80px;
    }

    .why-baundule-section .section-heading {
        margin-bottom: 42px;
    }

    .why-baundule-section .section-kicker {

        gap: 8px;

        margin-bottom: 16px;

        font-size: 10px;

        letter-spacing: 0.16em;
    }

    .why-baundule-section .section-kicker::before,
    .why-baundule-section .section-kicker::after {
        width: 18px;
    }

    .why-baundule-section .section-title {

        font-size: 2.2rem;

        line-height: 1.08;

        margin-bottom: 18px;
    }

    .why-baundule-section .section-title span {
        margin-top: 4px;
    }

    .why-baundule-section .section-subtitle {

        max-width: 100%;

        font-size: 14px;

        line-height: 1.8;
    }

    .why-baundule-wrapper {
        gap: 26px;
    }

    .why-main-image {

        height: 300px;

        border-radius: 24px;
    }

    .why-baundule-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .why-card {

        min-height: auto;

        padding: 18px 12px;

        border-radius: 18px;
    }

    .why-icon {

        width: 54px;
        height: 54px;

        margin-bottom: 14px;

        border-radius: 16px;

        font-size: 20px;
    }

    .why-card h3 {

        font-size: 16px;

        margin-bottom: 8px;

        line-height: 1.4;
    }

    .why-card p {

        font-size: 12px;

        line-height: 1.6;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .why-card,
    .why-main-image {
        transition: none !important;
    }

    .why-card:hover,
    .why-image-box:hover .why-main-image {
        transform: none !important;
    }
}
/* ======================================================
   PREMIUM TOUR CAROUSEL - FINAL PRODUCTION
====================================================== */

.tour-packages-section {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            rgba(8, 12, 18, 0.72),
            rgba(8, 12, 18, 0.82)
        ),
        url('../img/webs/hero-fallback.webp')
        center center / cover no-repeat fixed;

    overflow: hidden;
}

/* DARK LUXURY OVERLAY */
.tour-packages-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top,
            rgba(212, 175, 55, 0.10),
            transparent 45%
        );

    pointer-events: none;

    z-index: 1;
}

/* CONTENT */
.tour-packages-section > * {
    position: relative;
    z-index: 2;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.tour-packages-section .section-heading {
    max-width: 860px;

    margin: 0 auto 70px;

    text-align: center;
}

/* KICKER */
.tour-packages-section .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #d4af37;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 24px;
}

.tour-packages-section .section-kicker::before,
.tour-packages-section .section-kicker::after {
    content: "";

    width: 46px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(212,175,55,0.8),
            transparent
        );
}

/* TITLE */
.tour-packages-section .section-title {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3.4rem, 5vw, 6rem);
    line-height: 0.95;
    font-weight: 700;

    letter-spacing: -1.8px;

    color: #ffffff;

    margin-bottom: 28px;

    text-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

/* SUBTITLE */
.tour-packages-section .section-subtitle {
    max-width: 760px;

    margin-inline: auto;

    font-size: 19px;
    line-height: 1.9;
    font-weight: 400;

    color: rgba(255,255,255,0.78);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .tour-packages-section {
        padding: 100px 0;
        background-attachment: scroll;
    }

    .tour-packages-section .section-heading {
        margin-bottom: 56px;
    }

    .tour-packages-section .section-title {
        font-size: clamp(2.8rem, 7vw, 4.5rem);
    }

    .tour-packages-section .section-subtitle {
        font-size: 17px;
        line-height: 1.8;
    }
}

@media (max-width: 575px) {

    .tour-packages-section {
        padding: 80px 0;
    }

    .tour-packages-section .section-kicker {
        font-size: 11px;
        letter-spacing: 3px;
        gap: 10px;
    }

    .tour-packages-section .section-kicker::before,
    .tour-packages-section .section-kicker::after {
        width: 24px;
    }

    .tour-packages-section .section-title {
        font-size: 2.6rem;

        line-height: 1.05;

        margin-bottom: 20px;
    }

    .tour-packages-section .section-subtitle {
        font-size: 15px;
        line-height: 1.8;

        max-width: 95%;
    }
}


/* ================= CONTROLS ================= */
.carousel-footer-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.ctrl-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.ctrl-btn:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #000;
    transform: translateY(-2px);
}

/* ======================================================
   VIEWPORT (FIXED FOR AUTO SLIDE)
====================================================== */
.tour-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;

    /* CRITICAL */
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    -ms-overflow-style: none;

    padding: 20px 0 40px;
}

.tour-viewport::-webkit-scrollbar {
    display: none;
}

/* ======================================================
   TRACK (SYNC WITH JS GAP)
====================================================== */
.tour-track {
    display: flex;
    gap: 28px; /* MUST MATCH JS */
    padding: 0 12px;
}

/* ======================================================
   CARD (SYNC WITH JS WIDTH)
====================================================== */
.tour-card {
    flex: 0 0 380px;
    max-width: 85vw;

    /* SNAP FIX */
    scroll-snap-align: start;
}

/* CARD INNER */
.tour-card-inner {
    background: var(--bs-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);

    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;

    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--bs-primary);

    transition: all 0.3s ease;
}

.tour-card-inner:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.tour-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #eee;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.15);
}

/* BADGE */
.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bs-primary);
    color: var(--bs-secondary);
    padding: 5px 12px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

/* CONTENT */
.tour-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.location-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-faint);
    margin-bottom: 10px;
}

.tour-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--bs-secondary);
}

/* ======================================================
   FOOTER
====================================================== */
.tour-footer {
    border-top: 1px solid rgba(0,0,0,0.08);

    padding-top: 24px;
    margin-top: auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 20px;
}

/* META */
.meta-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.duration {
    font-size: 16px;
    font-weight: 700;

    color: #4c5a67;
}

.price-label {
    font-size: 14px;
    color: #8b9197;
}

.price-value {
    font-size: 22px;
    font-weight: 800;

    color: var(--bs-secondary);
}

/* ======================================================
   CTA
====================================================== */
.tour-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 800;

    color: var(--bs-secondary);

    text-decoration: none;

    transition: all 0.3s ease;
}

.tour-link svg {
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-link {
    color: var(--bs-primary);
}

.tour-card:hover .tour-link svg {
    transform: translateX(5px);
}

/* ======================================================
   EMPTY STATE
====================================================== */
.empty-msg {
    width: 100%;

    text-align: center;

    padding: 60px 20px;

    font-size: 16px;
    color: #7b8794;
}


/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 991px) {
    .carousel-footer-controls {
        display: none;
    }

    .tour-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 575px) {
    .tour-card {
        flex: 0 0 260px;
    }

    .tour-img-wrapper {
        height: 200px;
    }
}

/* =========================================================
   PREMIUM EXPERIENCE SECTION
========================================================= */

.experience-section {
    position: relative;

    padding: 140px 0;

    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #fcfbf8 100%
        );

    overflow: hidden;
}

/* SOFT BACKGROUND GLOW */
.experience-section::before {
    content: "";

    position: absolute;

    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            rgba(245, 196, 0, 0.08),
            transparent 70%
        );

    pointer-events: none;
}

/* =========================================================
   EXPERIENCE SECTION HEADING
   Premium Editorial Style
========================================================= */

.experience-heading {
    max-width: 760px;
    margin: 0 auto 55px;

    text-align: center;
}

/* =========================================================
   KICKER
========================================================= */

.experience-heading .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 24px;

    color: #b88917;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.experience-heading .section-kicker::before,
.experience-heading .section-kicker::after {
    content: "";

    width: 42px;
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(184,137,23,0.8),
            transparent
        );
}

/* =========================================================
   TITLE
========================================================= */

.experience-heading .section-title {
    margin: 0 0 24px;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.04em;

    color: #111111;
}

.experience-heading .section-title span {
    display: block;

    margin-top: 10px;

    color: #d4a017;
}

/* =========================================================
   SUBTITLE
========================================================= */

.experience-heading .section-subtitle {
    max-width: 680px;
    margin: 0 auto;

    color: #66707b;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .experience-heading {
        margin-bottom: 40px;
    }

    .experience-heading .section-kicker {
        gap: 10px;

        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .experience-heading .section-kicker::before,
    .experience-heading .section-kicker::after {
        width: 20px;
    }

    .experience-heading .section-title {
        font-size: 2.5rem;

        line-height: 1.08;
    }

    .experience-heading .section-title span {
        margin-top: 6px;
    }

    .experience-heading .section-subtitle {
        font-size: 15px;
        line-height: 1.8;
    }
}


/* =========================================================
   LEFT SIDE
========================================================= */

.featured-video-box {
    position: relative;
}

.video-wrapper {
    position: relative;

    overflow: hidden;
    border-radius: 34px;

    aspect-ratio: 16 / 10;

    background: #f4f4f4;

    box-shadow:
        0 40px 100px rgba(0,0,0,0.08);

    transform: translateZ(0);
}

.video-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    border: 1px solid rgba(255,255,255,0.18);

    pointer-events: none;
}

.video-cover {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-wrapper:hover .video-cover {
    transform: scale(1.08);
}

/* OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.08),
            transparent
        );
}

/* =========================================================
   PLAY BUTTON
========================================================= */

.play-trigger {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 84px;
    height: 84px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.96);
    color: #111111;

    font-size: 20px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.22);

    z-index: 2;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

/* RINGS */
.play-trigger::before,
.play-trigger::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    inset: 0;

    border: 1px solid rgba(255,255,255,0.4);

    animation: pulseRing 2.5s linear infinite;
}

.play-trigger::after {
    animation-delay: 1s;
}

.play-trigger:hover {
    background: #f5c400;

    transform:
        translate(-50%, -50%)
        scale(1.08);
}

@keyframes pulseRing {

    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.experience-right {
    position: relative;

    padding-left: 40px;
}

/* INTRO */
.experience-intro {
    margin-bottom: 42px;

    padding-left: 28px;

    border-left: 2px solid rgba(212, 175, 55, 0.4);
}

.intro-text {
    font-size: 18px;
    line-height: 2;

    color: #59636f;

    max-width: 580px;
}

/* =========================================================
   TESTIMONIAL SLIDER
========================================================= */

.testimonial-slider {
    position: relative;

    overflow: hidden;

    padding-bottom: 10px;
}

/* TRACK */
.testimonial-track {
    display: flex;
    align-items: stretch;

    gap: 26px;

    width: max-content;

    animation: testimonialScroll 28s linear infinite;

    will-change: transform;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* =========================================================
   CARD
========================================================= */

.testimonial-card {
    position: relative;

    flex: 0 0 520px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fcfcfc 100%
        );

    border-radius: 32px;

    padding: 42px;

    border: 1px solid rgba(0,0,0,0.05);

    overflow: hidden;
}

/* TOP ACCENT */
.testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            to right,
            #d4af37,
            #f5c400
        );
}
/* =========================================================
   STARS
========================================================= */

.star-rating {
    display: flex;
    gap: 6px;

    margin-bottom: 24px;
}

.star-rating i {
    color: #d4af37;

    font-size: 13px;
}

/* =========================================================
   QUOTE
========================================================= */

.quote {
    font-family: 'Cormorant Garamond', serif;

    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.5px;

    color: #171717;

    margin-bottom: 24px;
}

/* =========================================================
   REVIEW
========================================================= */

.review {
    font-size: 16px;
    line-height: 1.95;

    color: #66707b;

    margin-bottom: 34px;
}

/* =========================================================
   AUTHOR
========================================================= */

.testimonial-author {
    display: flex;
    align-items: center;

    gap: 16px;
}

.author-avatar {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f5c400,
            #d4af37
        );

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 800;

    color: #111111;

    box-shadow:
        0 10px 25px rgba(212,175,55,0.25);
}

.author-info strong {
    display: block;

    font-size: 17px;
    font-weight: 700;

    color: #111111;

    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #8b9197;
}

/* =========================================================
   AUTO SLIDE
========================================================= */

@keyframes testimonialScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-546px * 3));
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .testimonial-card {
        flex: 0 0 480px;
    }
}

@media (max-width: 991px) {

    .experience-section {
        padding: 100px 0;
    }

    .experience-right {
        padding-left: 0;
        margin-top: 10px;
    }

    .section-heading {
        text-align: center;
    }

    .section-kicker {
        justify-content: center;
    }

    .section-subtitle {
        margin-inline: auto;
    }

    .experience-intro {
        padding-left: 20px;
    }

    .testimonial-card {
        flex: 0 0 88vw;

        padding: 34px;
    }

    .quote {
        font-size: 30px;
    }

    .testimonial-track {
        animation-duration: 22s;
    }
}

@media (max-width: 575px) {

    .experience-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle,
    .intro-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .video-wrapper {
        border-radius: 24px;
    }

    .play-trigger {
        width: 68px;
        height: 68px;

        font-size: 16px;
    }

    .testimonial-card {
        padding: 26px;

        border-radius: 24px;
    }

    .quote {
        font-size: 24px;
    }

    .review {
        font-size: 15px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;

        font-size: 16px;
    }
}
/* ======================================================
   BAUNDULE CONSULTATION SECTION
====================================================== */
.consultation-section {
    position: relative;
}

.consultation-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,239,228,0.92));
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}

.consultation-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(245,196,0,0.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.05), transparent 24%);
}

.consultation-info {
    position: relative;
    height: 100%;
    min-height: 100%;
    padding: 56px 42px;
    background:
        linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultation-kicker {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(245,196,0,0.14);
    border: 1px solid rgba(245,196,0,0.20);
    color: #f5c400;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.consultation-title {
    margin: 0 0 18px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.5rem + 1.8vw, 3.4rem);
    line-height: 1.05;
    max-width: 11ch;
}

.consultation-text {
    margin: 0 0 34px;
    color: rgba(255,255,255,0.74);
    max-width: 42ch;
    font-size: var(--text-sm);
    line-height: 1.8;
}

.consultation-points {
    display: grid;
    gap: 18px;
}

.consultation-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.consultation-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,196,0,0.10);
    color: #f5c400;
    box-shadow: inset 0 0 0 1px rgba(245,196,0,0.10);
}

.consultation-point-copy span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.consultation-point-copy a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
}

.consultation-point-copy p {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    max-width: 100%;
}

.consultation-form-wrap {
    position: relative;
    height: 100%;
    padding: 56px 42px;
    background: rgba(255,255,255,0.88);
}

.consultation-form-head {
    margin-bottom: 28px;
}

.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--bs-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.consultation-form-head h3 {
    margin-bottom: 10px;
    color: var(--bs-secondary);
    font-size: clamp(1.4rem, 1.15rem + .8vw, 2rem);
    line-height: 1.15;
}

.consultation-form-head p {
    margin: 0;
    max-width: 56ch;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

.consultation-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--bs-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.consultation-control {
    width: 100%;
    min-height: 58px;
    padding: 16px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    background: #f8f4ea;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.5;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.consultation-control::placeholder {
    color: #8e8a81;
}

.consultation-control:focus {
    outline: none;
    border-color: rgba(245,196,0,0.55);
    background: #fffdf8;
    box-shadow: 0 0 0 4px rgba(245,196,0,0.12);
}

.consultation-textarea {
    min-height: 150px;
    resize: vertical;
}

.consultation-submit {
    width: 100%;
    min-height: 58px;
    border: none;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.consultation-submit:hover {
    background: var(--bs-primary);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(245,196,0,0.20);
}

.consultation-note {
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.7;
    max-width: 100%;
}

@media (max-width: 991px) {
    .consultation-info,
    .consultation-form-wrap {
        padding: 40px 28px;
    }

    .consultation-title {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .consultation-shell {
        border-radius: 22px;
    }

    .consultation-info,
    .consultation-form-wrap {
        padding: 28px 20px;
    }

    .consultation-point {
        padding: 16px;
    }

    .consultation-control,
    .consultation-submit {
        min-height: 54px;
    }
}

/* ======================================================
   7. FOOTER (FINAL CLEAN VERSION)
====================================================== */
.premium-footer {
    padding: 80px 0 30px;
    background: #0d1117 url('../img/webs/footer-world-map.png') no-repeat center;
    background-size: cover;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* OVERLAY (BALANCED) */
.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.premium-footer .container {
    position: relative;
    z-index: 2;
}

/* LOGO */
.footer-logo {
    height: 62px;
    margin-bottom: 18px;
}

/* GRID */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 45px;
}

/* TAGLINE */
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
    max-width: 350px;
}

/* ================= TRUST BADGE ================= */
.footer-trust {
    display: inline-flex;          /* keeps width tight to content */
    flex-direction: column;        /* stack vertically */
    align-items: flex-start;       /* left aligned */
    gap: 6px;
    margin: 16px 0 10px;
}

/* GOOGLE LOGO */
.google-logo {
    height: 46px;
    width: auto;
    display: block;
}

/* TEXT LINE */
.trust-inline {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    line-height: 1.2;
}

/* HIGHLIGHT RATING */
.trust-inline strong {
    color: #f4c400;
    font-weight: 600;
}
/* ================= LINKS ================= */
.footer-links h6,
.footer-contact h6 {
    color: #f4c400;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
}

/* LINK BASE */
.footer-links a {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 22px; /* space for arrow */
    font-size: 14px;
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: "\00BB"; /* double arrow » */
    position: absolute;
    left: 0;
    top: 0;
    color: #f4c400;
    font-size: 13px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.footer-links a:hover {
    color: #fff;
    transform: translateX(6px);
}

/* ARROW ANIMATION */
.footer-links a:hover::before {
    transform: translateX(3px);
    opacity: 1;
}

/* ================= CONTACT ================= */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #f4c400;
    min-width: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

/* ================= BUTTON ================= */
.footer-btn {
    background: #f4c400;
    color: #111 !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #ffd84d;
    transform: translateY(-2px);
}

/* ================= SOCIAL ================= */
/* ================= FOOTER SOCIAL ================= */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--color-text-inverse);

    transition: all var(--transition-fast);
}

/* ICON */
.footer-social a i {
    font-size: 14px;
    transition: all var(--transition-fast);
}

/* HOVER */
.footer-social a:hover {
    background: var(--color-primary);
    color: #000;
    transform: translateY(-4px) scale(1.05);
}

/* ICON HOVER EFFECT */
.footer-social a:hover i {
    transform: scale(1.1);
    color: var(--bs-dark);
}

/* ================= DIVIDER ================= */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 40px 0 20px;
}

/* ================= BOTTOM ================= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fff;
}

/* CREDIT */
.footer-credit {
    color: rgba(255,255,255,0.5);
}

.footer-credit a {
    color: #f4c400;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .premium-footer {
        padding: 60px 0 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* ======================================================
   BAUNDULE MOBILE ACTION BAR — BRAND SYSTEM ALIGNED
   Uses Design Tokens • Premium • No Layout Hack
====================================================== */

/* ================= CONTAINER ================= */

.mobile-footer-bar {
    position: fixed;
    left: var(--space-3);
    right: var(--space-3);
    bottom: calc(var(--mobile-bar-offset) + var(--mobile-safe-bottom));

    height: var(--mobile-bar-height);
    padding: var(--space-1);

    display: none;
    align-items: center;
    justify-content: space-between;

    z-index: 999;

    /* BRAND SURFACE */
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);

    box-shadow: var(--shadow-md);
}

/* ================= ITEM ================= */

.mobile-footer-bar .mf-item {
    flex: 1;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: var(--text-xs);
    font-family: var(--font-body);
    font-weight: 600;

    color: var(--color-text-muted);
    text-decoration: none;

    border-radius: var(--radius-sm);

    transition: var(--transition-smooth);
}

.mobile-footer-bar .mf-item i {
    font-size: 18px;
    margin-bottom: 2px;
    transition: transform var(--transition-fast);
}

/* ================= INTERACTION ================= */

.mobile-footer-bar .mf-item:hover {
    color: var(--color-primary);
}

.mobile-footer-bar .mf-item:hover i {
    transform: translateY(-2px);
}

.mobile-footer-bar .mf-item:active {
    transform: scale(0.94);
}

/* ================= ACTIVE ================= */

.mobile-footer-bar .mf-item.active,
.mobile-footer-bar .mf-item[aria-current="page"] {
    color: var(--color-primary);
}

/* ================= WHATSAPP ================= */

.mobile-footer-bar .mf-item.whatsapp {
    color: #25D366;
}

/* ================= CENTER CTA (PLAN) ================= */

.mobile-footer-bar .mf-item.highlight {
    flex: 1.25;

    background: var(--color-brand-gradient);
    color: var(--color-text) !important;

    border-radius: var(--radius-md);
    height: 52px;

    font-weight: 700;

    box-shadow: var(--shadow-sm);
}

/* ensure consistency */
.mobile-footer-bar .mf-item.highlight i,
.mobile-footer-bar .mf-item.highlight span {
    color: var(--color-text);
}

/* subtle press */
.mobile-footer-bar .mf-item.highlight:active {
    transform: scale(0.96);
}

/* ================= MOBILE ONLY ================= */

@media (max-width: 768px) {
    .mobile-footer-bar {
        display: flex;
    }

    /* NO BODY GAP */
    body {
        padding-bottom: 0 !important;
    }

    /* SPACE HANDLED BY FOOTER */
    .premium-footer {
        padding-bottom: calc(var(--mobile-bar-height) + 40px);
    }
}
/* ================= BACK TO TOP - VERTICAL EDITORIAL STYLE ================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; /* Fixed width for vertical look */
    height: 56px; /* Taller height for stacking */
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    border-radius: 4px; /* Clean sharp corners for premium feel */
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    align-items: center;
    justify-content: center;
    gap: 4px; /* Tight gap between icon and text */
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.back-to-top span {
    font-size: 10px; /* Smaller text for vertical layout */
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.back-to-top i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* PREMIUM HOVER EFFECT */
.back-to-top:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: #b88917;
    box-shadow: 0 12px 25px rgba(184, 137, 23, 0.25);
    transform: translateY(-5px);
}

.back-to-top:hover i {
    transform: translateY(-3px); /* Upward movement on hover */
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 50px;
    }
}