/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
============================================================ */
:root {
    --color-dark: #1a1a2e;
    --color-dark-2: #111b2d;
    --color-dark-3: #0d1a2e;
    --color-light: #eee8e2;
    --color-white: #ffffff;
    --color-accent: #FF5A3C;
    --color-accent-dark: #e5492e;
    --color-dark-green: #185649;
    --color-dark-green-2: #13473c;
    --color-text-muted-brown: #9F908D;
    --color-text-body: rgba(26, 26, 46, 0.65);
    --color-text-light: rgba(255, 255, 255, 0.75);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-border-light: rgba(26, 26, 46, 0.12);

    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --nav-height: 70px;
    --section-pad: 140px;
    --container: 1440px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-white);
    color: var(--color-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================================
   UTILITIES
============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.section-heading {
    font-size: clamp(3.5rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.text-muted {
    color: var(--color-text-muted-brown);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--color-light);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #e8e5de;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border: none;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease,
        background 0.4s ease, backdrop-filter 0.4s ease,
        -webkit-backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    will-change: transform, opacity, background;
}

/* Entrance animation — navbar fades in after hero expands */
#navbar.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hide header when scrolling down — slide up only, no opacity flicker */
#navbar.header-hidden {
    transform: translateY(-100%);
}

/* From https://css.glass */
#navbar.header-scrolled-up {
    background: rgba(165, 156, 147, 0.35);
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100%;
    padding: 0 3vw;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 18px;
    width: auto;
    display: block;
}



.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links li {
    position: relative;
}

.nav-links>li>a {
    padding: 10px 24px;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    transition: color 0.3s, background 0.3s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links>li>a:hover {
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.95);
}

/* Dropdown chevron */
.dropdown-chevron {
    margin-left: 4px;
    transition: transform 0.25s ease;
}

.has-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* Mega Dropdown — shared */
.mega-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Grid layout — "How it works" */
.mega-grid {
    width: 580px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mega-item:hover {
    background: #f5f3f0;
}

.mega-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 2px;
}

.mega-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
}

.mega-desc {
    display: block;
    font-size: 0.76rem;
    color: #6b6b6b;
    line-height: 1.45;
    margin-top: 3px;
}

/* Split layout — "Your activity" */
.mega-split {
    width: 600px;
    display: flex;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.mega-split-image {
    width: 220px;
    flex-shrink: 0;
}

.mega-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px 0 0 16px;
}

.mega-split-links {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-link-item {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.mega-link-item:hover {
    background: #f5f3f0;
}

.mega-link-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
}

.mega-link-desc {
    display: block;
    font-size: 0.76rem;
    color: #6b6b6b;
    line-height: 1.4;
    margin-top: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 10px;
    border-radius: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s, background 0.2s;
}

.lang-current:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-current svg {
    transition: transform 0.2s;
}

.lang-dropdown.open + .lang-current svg,
.lang-current[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px;
    min-width: 120px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.lang-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1a1a2e;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.15s;
}

.lang-option:hover {
    background: #f5f3f0;
}

.lang-option.active {
    color: var(--color-accent);
    font-weight: 600;
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    background: #ff5a3c;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.72rem;
    border-radius: 100px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: #e5492e;
    transform: translateY(-1px);
}

.btn-arrow {
    font-size: 0.9em;
    transition: transform 0.2s;
}

.btn-nav-cta:hover .btn-arrow {
    transform: translateX(3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(11, 20, 34, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 40px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-white);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 16px;
}

/* ============================================================
   HERO → COLLAGE SCROLL SEQUENCE
============================================================ */
.hero-scroll-sequence {
    position: relative;
    margin-bottom: 80px;
    /* height is set dynamically by GSAP, but we need a tall container */
}

.hero-sticky {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-sticky-bg {
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 0;
}

/* The video card — starts as a centered rounded card, expands to fullscreen */
.hero-card {
    position: relative;
    z-index: 5;
    width: 60%;
    height: 70vh;
    border-radius: 24px;
    overflow: hidden;
    will-change: width, height, border-radius, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1),
        height 1.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* After entrance animation: card expands to fill the screen */
.hero-sticky.expanded .hero-card {
    width: 100%;
    height: 100%;
    border-radius: 0px;
}

.hero-card .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 20, 34, 0.25);
}

/* Hero content — hidden initially, fades in after card expansion */
.hero-card .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 40px 0;
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-sticky.expanded .hero-card .hero-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Collage images — initially hidden, GSAP fades them in */
.collage-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    will-change: transform, opacity;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Collage positions — tight asymmetric cluster overlapping behind hero card.
   Hero card shrinks to ~34vw centered at ~-12vh via GSAP.
   Cards use squarer aspect ratios and overlap behind the video. */
.collage-img-1 {
    width: 210px;
    height: 260px;
    top: 14%;
    left: calc(50% - 16vw);
    z-index: 1;
    transform: translate(-60px, 20px) rotate(-5deg);
}

.collage-img-2 {
    width: 200px;
    height: 180px;
    top: 3%;
    left: calc(50% - 3vw);
    z-index: 3;
    transform: translate(10px, -50px) rotate(2deg);
}

.collage-img-3 {
    width: 190px;
    height: 240px;
    top: 10%;
    left: calc(50% + 8vw);
    z-index: 1;
    transform: translate(60px, -20px) rotate(4deg);
}

.collage-img-4 {
    width: 200px;
    height: 160px;
    top: 38%;
    left: calc(50% + 6vw);
    z-index: 1;
    transform: translate(50px, 40px) rotate(-2deg);
}

/* Vision text — inside pinned container, revealed by GSAP */
.collage-vision-text {
    position: absolute;
    z-index: 4;
    bottom: calc(8% - 4px);
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    text-align: left;
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    will-change: transform, opacity;
}

.collage-vision-text h2 {
    font-size: clamp(2.325rem, 4.6vw, 3.925rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.collage-vision-text .text-muted {
    color: var(--color-text-muted-brown);
}

.collage-vision-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-body);
    max-width: 700px;
    margin: 0;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 20, 34, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 40px;
}

.hero-tagline {
    margin-bottom: 48px;
    text-align: center;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 450;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 4px;
    text-align: center;
}

.hero-line-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 18px);
    width: 100%;
}

.hero-icon-cycle {
    position: relative;
    width: clamp(4.5rem, 10vw, 8.5rem);
    height: clamp(4.5rem, 10vw, 8.5rem);
    overflow: hidden;
    flex-shrink: 0;
}

.hero-cycle-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    transition: opacity 2.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.hero-cycle-icon.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-cycle-icon.exiting {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
}

.hero-cycle-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-energy-word {
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 450;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--color-white);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    border: 1.5px solid #fff;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.hero-btn-fill:hover {
    background: #FF5A3C;
    border-color: #FF5A3C;
    color: #fff;
    transform: translateY(-2px);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 100px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* ============================================================
   FEATURED IMAGE (replaces gallery strip)
============================================================ */
.featured-image-section {
    background: var(--color-white);
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.featured-image-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    will-change: transform, border-radius;
    transition: transform 0.05s linear;
}

.featured-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* (Vision section content now handled by .collage-vision-text inside pinned container) */

/* ============================================================
   EXPERTISE — Horizontal Scroll
============================================================ */
.expertise {
    background: var(--color-light);
    padding: calc(var(--section-pad) * 1.4) 0;
}

.expertise-header {
    margin-bottom: 48px;
    padding: 0 40px;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.expertise-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.03em;
}

.expertise-header h2 .text-muted {
    font-weight: 400;
}

.expertise-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    padding: 0 80px;
    max-width: none;
    margin: 0 auto;
}

.expertise-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    flex: 1 1 280px;
    max-width: none;
    aspect-ratio: 2.3/4;
    cursor: pointer;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card:hover {
    transform: scale(0.98);
}

/* Card background (image+video, hidden by default, shown on hover) */
.expertise-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.expertise-card:hover .expertise-card-bg {
    opacity: 1;
}

.expertise-card-bg video,
.expertise-card-bg .expertise-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card-bg video {
    opacity: 0;
    z-index: 2;
}

.expertise-card-bg .expertise-thumb {
    opacity: 1;
    z-index: 1;
}

.expertise-card:hover .expertise-card-bg video {
    opacity: 1;
}

.expertise-card:hover .expertise-card-bg .expertise-thumb {
    opacity: 0;
}

/* Dark overlay on hover */
.expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card:hover::after {
    opacity: 1;
}

.expertise-card-content {
    position: relative;
    z-index: 4;
    padding: 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.expertise-card:hover .expertise-card-content {
    color: var(--color-white);
}

.expertise-card-icon {
    width: 96px;
    height: 96px;
    position: relative;
}

.expertise-card-icon img,
.expertise-card-icon svg {
    width: 88px;
    height: 88px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0s;
}

.expertise-card-icon .icon-default {
    opacity: 1;
}

.expertise-card-icon .icon-hover {
    opacity: 0;
}

.expertise-card:hover .expertise-card-icon .icon-default {
    opacity: 0;
}

.expertise-card:hover .expertise-card-icon .icon-hover {
    opacity: 1;
}

.expertise-card-content h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--color-dark);
}

.expertise-card:hover .expertise-card-content h3 {
    color: var(--color-white);
}

.expertise-card:hover .expertise-card-content h3 .text-muted {
    color: rgba(255, 255, 255, 0.75);
}

.expertise-card-content .expertise-card-text-bottom {
    margin-top: auto;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.expertise-card-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    color: rgba(255, 255, 255, 0.8);
}

.expertise-card:hover .expertise-card-content p {
    opacity: 1;
    max-height: 200px;
}

/* ============================================================
   STATS — Green Card + 2x2 Grid
============================================================ */
.stats {
    background: var(--color-white);
    padding: var(--section-pad) 0;
}

.stats-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: stretch;
}

.stats-info-card {
    background: var(--color-dark-green);
    border-radius: 24px;
    padding: 72px 60px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 640px;
}

.stats-info-card h2 {
    font-size: clamp(3.5rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.stats-accent {
    color: var(--color-accent);
}

.stats-info-card .btn-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
    width: fit-content;
}

.stats-info-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Decorative graphic on the green card */
.stats-deco {
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 220px;
    height: 260px;
    opacity: 0.18;
}

.stats-deco svg {
    width: 100%;
    height: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stat-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition-delay: var(--delay, 0ms);
}

.stat-icon {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 60px;
    height: 60px;
    stroke: #FF5937;
    fill: none;
    stroke-width: 2;
    overflow: visible;
}

/* ── Transmission Tower — electricity sparks ── */
.spark {
    opacity: 0;
    animation: spark-flash 4s ease-in-out infinite;
}

.spark-1 {
    animation-delay: 0s;
}

.spark-2 {
    animation-delay: 1.5s;
}

@keyframes spark-flash {

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

    8% {
        opacity: 0.9;
        transform: scale(1.05);
    }

    16% {
        opacity: 0;
        transform: scale(0.9);
    }

    24% {
        opacity: 0.7;
        transform: scale(1.02);
    }

    32% {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* ── Load Curve — repeating draw in/out ── */
.load-line {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: draw-curve-loop 6s ease-in-out infinite;
}

@keyframes draw-curve-loop {
    0% {
        stroke-dashoffset: 80;
    }

    40% {
        stroke-dashoffset: 0;
    }

    60% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -80;
    }
}

/* ── Industrial Plant — rising smoke ── */
.smoke {
    opacity: 0;
    animation: rise-smoke 4s ease-out infinite;
}

.smoke-1 {
    animation-delay: 0s;
}

.smoke-2 {
    animation-delay: 1s;
}

.smoke-3 {
    animation-delay: 2s;
}

@keyframes rise-smoke {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }

    15% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.4;
        transform: translateY(-4px) scaleX(1.2);
    }

    100% {
        opacity: 0;
        transform: translateY(-8px) scaleX(1.5);
    }
}

/* ── Three Stacked Layers — wave float ── */
.layer-top {
    animation: layer-float-top 4s ease-in-out infinite;
}

.layer-mid {
    animation: layer-float-mid 4s ease-in-out infinite;
}

.layer-bottom {
    animation: layer-float-bottom 4s ease-in-out infinite;
}

@keyframes layer-float-top {

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

    50% {
        transform: translateY(-2.5px);
    }
}

@keyframes layer-float-mid {

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

    60% {
        transform: translateY(-1.5px);
    }
}

@keyframes layer-float-bottom {

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

    70% {
        transform: translateY(-0.8px);
    }
}

.stat-number {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--color-dark);
    line-height: 1;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.4;
}

/* ============================================================
   BRAND PROMISE
============================================================ */
.brand-promise {
    background: var(--color-white);
    padding: var(--section-pad) 0 280px;
}

.brand-promise-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-promise-content .section-heading {
    margin-bottom: 28px;
}

.brand-promise-content .section-heading .text-muted {
    font-weight: 400;
}

.brand-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 40px;
    transition: opacity 0.2s ease;
}

.brand-promise-visual {
    display: flex;
    justify-content: center;
}

.brand-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 440px;
}

.brand-stack-item {
    padding: 20px 28px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    background: #e8e4db;
    color: #333333;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.brand-stack-item.active {
    background: #ff5a3c;
    color: var(--color-white);
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 90, 60, 0.3);
}

.brand-stack-item .brand-stack-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.brand-stack-item.active .brand-stack-icon {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.brand-stack-item:not(.active) .brand-stack-icon {
    opacity: 0.7;
    filter: none;
    color: #333333;
}

/* ============================================================
   BUILT FOR EUROPE
============================================================ */
.worldwide {
    background: var(--color-light);
    padding: 280px 0;
    color: var(--color-dark);
}

.worldwide-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.worldwide-header {
    margin-bottom: 24px;
}

.worldwide-title {
    font-size: clamp(3.5rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    color: var(--color-dark);
}

.worldwide-title .text-muted {
    font-size: 0.82em;
    font-weight: 400;
    display: block;
}

.worldwide-sub {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 48px;
}

.worldwide-sub .text-muted {
    color: #9F908D;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: #ffffff;
    color: #9F908D;
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-discover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.worldwide-map-col {
    position: relative;
}

.worldwide-map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 24px;
}

.world-map {
    width: 110%;
    max-width: none;
    display: block;
}

/* ============================================================
   PARKING CANOPY SOLUTIONS
============================================================ */
.parking-solutions {
    background: var(--color-white);
    padding: 280px 0;
}

.parking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.parking-content h2 {
    font-size: clamp(3.5rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.parking-content h2 .text-muted {
    font-weight: 400;
}

.typing-text {
    color: #9F908D;
}

.typing-text::after {
    content: '|';
    animation: blink-cursor 0.8s ease-in-out infinite;
    color: var(--color-dark);
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.parking-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 40px;
}

.parking-visual {
    position: relative;
}

.parking-visual img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.floating-label {
    position: absolute;
    padding: 10px 20px;
    background: rgba(238, 232, 226, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.floating-label.label-3 {
    transform: translateX(-50%) translateY(16px);
}

.floating-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-label.label-3.visible {
    transform: translateX(-50%) translateY(0);
}

.floating-label.label-1 {
    top: 15%;
    left: -10%;
}

.floating-label.label-2 {
    top: 10%;
    right: -5%;
}

.floating-label.label-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================================
   PROJECTS
============================================================ */
.projects-section {
    background: var(--color-light);
    padding: 280px 0;
}

.projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px;
}

.projects-header .section-heading {
    color: var(--color-dark);
}

.projects-header .section-heading .text-muted {
    font-weight: 400;
}

.projects-carousel-wrap {
    overflow: hidden;
    position: relative;
}

.projects-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.project-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    display: block;
    color: var(--color-dark);
    min-width: 450px;
}

.project-card:hover {
    transform: none;
    box-shadow: none;
}

.project-card-img {
    overflow: hidden;
    aspect-ratio: 16/19;
    position: relative;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out), opacity 0.4s ease;
}

.project-card:hover .project-card-img img {
    transform: none;
}

.project-card-vid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card-vid-poster {
    position: relative;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.project-card-video:hover .project-card-vid {
    opacity: 1;
}

.project-card-video:hover .project-card-img img {
    opacity: 0;
}

.project-card-body {
    padding: 30px 32px;
    transition: transform 0.35s ease;
}

.project-card:hover .project-card-body {
    transform: translateY(-8px);
}

.project-type {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-body);
    margin-bottom: 10px;
}

.project-type img {
    width: 16px;
    height: 16px;
}

.project-card-body h3 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.carousel-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 36px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--color-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    color: var(--color-dark);
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* ============================================================
   NEWS
============================================================ */
/* ── CONTACT SECTION ── */
.contact {
    background: var(--color-white);
    padding: var(--section-pad) 0;
}

.contact-header {
    margin-bottom: 64px;
    text-align: left;
}

.contact-header h2 {
    font-size: clamp(3.5rem, 6.5vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
}

.contact-header h2 .text-muted {
    font-weight: 400;
}

.contact-sub {
    margin-top: 16px;
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-text-body);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

/* ── CONTACT FORM ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-required {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted-brown);
    margin-left: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: var(--color-light);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-dark);
    outline: none;
    transition: box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 2px var(--color-accent);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%231a1a2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-body);
    cursor: pointer;
}

.form-link {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-link:hover {
    color: var(--color-accent-dark);
}

.btn-submit {
    align-self: flex-start;
    padding: 14px 36px;
    background: var(--color-light);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.btn-submit:hover {
    background: #e8e5de;
    transform: translateY(-2px);
}

/* ── FORM STATUS MESSAGE ── */
.form-status {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    animation: statusFadeIn 0.3s ease;
}

.form-status--success {
    background: rgba(24, 86, 73, 0.08);
    color: var(--color-dark-green);
    border: 1px solid rgba(24, 86, 73, 0.2);
}

.form-status--error {
    background: rgba(255, 90, 60, 0.08);
    color: #c0392b;
    border: 1px solid rgba(255, 90, 60, 0.2);
}

@keyframes statusFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

/* ── BOOKING CARD ── */
.booking-card {
    background: var(--color-dark-green);
    color: var(--color-white);
    border-radius: 24px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.booking-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.booking-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.booking-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-light);
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 4px 0;
}

.booking-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: background 0.25s, transform 0.2s;
    margin-top: 8px;
    text-align: center;
}

.btn-booking:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
    background: var(--color-dark-green);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-size: clamp(3.5rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    letter-spacing: -0.03em;
    max-width: 600px;
}

.cta-accent {
    color: var(--color-accent);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

/* Decorative shapes in CTA — diamonds removed, bolt kept */
.cta-banner::before,
.cta-banner::after {
    content: none;
}

.cta-bolt {
    position: absolute;
    width: 220px;
    height: 260px;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.cta-bolt--right {
    top: -30px;
    right: 25%;
}

.cta-bolt svg {
    width: 100%;
    height: 100%;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--color-dark-green);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-sub-footer {
    font-size: 0.48rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.22em;
    text-transform: lowercase;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
    font-size: 0.85rem;
    font-weight: 700;
}

.footer-social-icon:hover {
    border-color: var(--color-white);
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-center-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--delay, 0ms);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .stats-layout {
        grid-template-columns: 1fr;
    }

    .stats-info-card {
        min-height: auto;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

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

@media (max-width: 900px) {
    :root {
        --section-pad: 72px;
    }

    .nav-links,
    .nav-right .btn-primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .vision-collage {
        height: 380px;
        max-width: 500px;
    }

    .collage-card-1 {
        width: 200px;
        height: 260px;
    }

    .collage-card-2 {
        width: 220px;
        height: 240px;
    }

    .collage-card-3 {
        width: 240px;
        height: 280px;
    }

    .collage-card-4 {
        width: 180px;
        height: 220px;
    }

    .brand-promise-inner {
        grid-template-columns: 1fr;
    }

    .worldwide-inner {
        grid-template-columns: 1fr;
    }

    .parking-inner {
        grid-template-columns: 1fr;
    }

    .parking-visual {
        order: -1;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .project-card {
        min-width: 320px;
    }

    .floating-label.label-1 {
        left: 5%;
    }

    .floating-label.label-2 {
        right: 5%;
    }

    .parking-solutions,
    .worldwide,
    .projects-section {
        padding: 120px 0;
    }

    .brand-promise {
        padding: var(--section-pad) 0 120px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-pad: 56px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px 60px;
    }

    .hero-icon-item {
        width: 40px;
        height: 40px;
    }

    .hero-icon-item img {
        width: 20px;
    }

    .expertise-slider {
        padding: 0 20px;
    }

    .vision-collage {
        height: 300px;
        max-width: 360px;
    }

    .collage-card-1 {
        width: 150px;
        height: 200px;
    }

    .collage-card-2 {
        width: 170px;
        height: 180px;
    }

    .collage-card-3 {
        width: 180px;
        height: 220px;
    }

    .collage-card-4 {
        width: 140px;
        height: 170px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-info-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .project-card {
        min-width: 280px;
    }

    .floating-label.label-1 {
        left: 5%;
    }

    .floating-label.label-2 {
        right: 5%;
    }

    .floating-label.label-3 {
        left: 50%;
    }

    .parking-solutions,
    .worldwide,
    .projects-section {
        padding: 80px 0;
    }

    .brand-promise {
        padding: var(--section-pad) 0 80px;
    }
}