* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0B3910;
    --dark-green: #062108;
    --light-green: #1a5a25;
    --accent-green: #2d7a3d;
    --gold: #d4af37;
    --light-gold: #f4e4b8;
    --black: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
    --dark-gray: #333333;
    --spacing-unit: 8px;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 3);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

 .language-selector {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 0.75);
    border-radius: 50px;
}

.nav-lang-item {
    display: flex;
    align-items: center;
    margin-left: calc(var(--spacing-unit) * 2);
    padding-left: calc(var(--spacing-unit) * 3);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.lang-btn {
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 30px;
    transition: all 0.3s ease;
} 

.lang-btn:hover,
.lang-btn.active {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2");
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(11, 57, 16, 0.95);
    transition: all 0.4s ease;
    padding: calc(var(--spacing-unit) * 2) 0;
}

.navbar.scrolled {
    padding: calc(var(--spacing-unit) * 1) 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
}

.logo {
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-img {
    height: 72px;
    width: auto;
    display: block;
    margin-left: calc(var(--spacing-unit) * 4);
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 56px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    min-width: 0;
}

.logo-text-desktop {
    font-family: var(--font-secondary);
    font-size: clamp(0.8rem, 1.4vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .logo-text-desktop {
        font-size: clamp(0.7rem, 1.2vw, 1.1rem);
        letter-spacing: 1px;
    }

    .nav-menu {
        gap: calc(var(--spacing-unit) * 2.5);
    }

    .logo-img {
        margin-left: calc(var(--spacing-unit) * 1.5);
    }
}

@media (max-width: 768px) {
    .logo-text-desktop {
        display: none;
    }
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.footer-logo-row h3 {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .footer-logo-img {
        height: 44px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 48px;
        margin-left: calc(var(--spacing-unit) * 1);
    }
    .navbar.scrolled .logo-img {
        height: 40px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: calc(var(--spacing-unit) * 5);
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: calc(var(--spacing-unit) * 1) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
    flex-shrink: 0;
}

.mobile-lang-selector {
    position: relative;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 1.5);
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.mobile-lang-btn i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.mobile-lang-selector.active .mobile-lang-btn i {
    transform: rotate(180deg);
}

.mobile-lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--primary-green);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

.mobile-lang-selector.active .mobile-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-lang-option {
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 1.5);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.mobile-lang-option:hover,
.mobile-lang-option.active {
    background: var(--gold);
    color: var(--black);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 7s linear forwards;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 57, 16, 0.8), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 calc(var(--spacing-unit) * 3);
}

.hero-content > * {
    opacity: 0;
}

body.loaded .hero-content > * {
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content > *:nth-child(3) { animation-delay: 0.7s; }
.hero-content > *:nth-child(4) { animation-delay: 0.9s; }
.hero-content > *:nth-child(5) { animation-delay: 1.1s; }

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: calc(var(--spacing-unit) * 1) 0;
}

.hero-buttons {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    flex-wrap: wrap;
    justify-content: center;
}

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

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: calc(var(--spacing-unit) * 1);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

body.loaded .hero-content h1.hero-title {
    animation: heroTitleReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: calc(var(--spacing-unit) * 5);
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
    background: linear-gradient(135deg, var(--gold), #c9a336);
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e8c547, var(--gold));
}

.cta-button-secondary {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.about-section .cta-button-secondary,
.about-section .gallery-cta {
    margin-top: calc(var(--spacing-unit) * 4);
}

.about-section .cta-button-secondary {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.about-section .cta-button-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 calc(var(--spacing-unit) * 4);
    z-index: 3;
    transform: translateY(-50%);
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.3);
    width: 40px;
    border-radius: 10px;
}

.slider-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--gold);
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    animation: dotProgress 5s linear forwards;
}

.hero:hover .slider-dot.active::after {
    animation-play-state: paused;
}

@keyframes dotProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: calc(var(--spacing-unit) * 2);
    letter-spacing: 2px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto calc(var(--spacing-unit) * 2);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    font-weight: 300;
}

.about-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}
.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-unit) * 4);
}

.feature-item {
    text-align: center;
    padding: calc(var(--spacing-unit) * 3);
    background: var(--white);
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 57, 16, 0.15);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.feature-item h3 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: calc(var(--spacing-unit) * 1);
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    aspect-ratio: 4 / 3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.founder-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--primary-green);
    color: var(--white);
    overflow: hidden;
}

.founder-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: calc(var(--spacing-unit) * 10);
    align-items: center;
}

.founder-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.founder-name {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.founder-role {
    font-size: 1.1rem;
    color: var(--light-gold);
    font-weight: 300;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    border-radius: 30px;
    font-size: 0.9rem;
}

.credential-badge i {
    color: var(--gold);
    font-size: 0.95rem;
}

.founder-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.founder-quote {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: calc(var(--spacing-unit) * 3);
    margin: calc(var(--spacing-unit) * 5) 0;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
    }

    .founder-image {
        order: -1;
    }
}

.services-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
}

.service-card {
    background: var(--gray);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 20px 60px rgba(11, 57, 16, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: calc(var(--spacing-unit) * 1) 0;
    padding-left: calc(var(--spacing-unit) * 3);
    position: relative;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.gallery-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--primary-green);
}

.gallery-section .section-title {
    color: var(--white);
}

.gallery-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.gallery-cta {
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 6);
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-thumb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    pointer-events: none;
    transform: scale(1.5);
}

.gallery-item:hover .gallery-thumb-video {
    transform: scale(1.8);
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    pointer-events: none;
}

.gallery-item:hover video {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 57, 16, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: calc(var(--spacing-unit) * 3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.testimonials-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--primary-green);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    height: 360px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: var(--white);
    padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 5);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

#t1:checked ~ .testimonial-track .card-1,
#t2:checked ~ .testimonial-track .card-2,
#t3:checked ~ .testimonial-track .card-3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 0.5);
}

.author-name {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.author-location {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 5);
}

.nav-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
}

.testimonial-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

#t1:checked ~ .testimonial-controls .prev-for-1,
#t2:checked ~ .testimonial-controls .prev-for-2,
#t3:checked ~ .testimonial-controls .prev-for-3,
#t1:checked ~ .testimonial-controls .next-for-1,
#t2:checked ~ .testimonial-controls .next-for-2,
#t3:checked ~ .testimonial-controls .next-for-3 {
    opacity: 1;
    pointer-events: auto;
}

.testimonial-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: calc(var(--spacing-unit) * 1.5);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

#t1:checked ~ .testimonial-controls .testimonial-dots .dot-1,
#t2:checked ~ .testimonial-controls .testimonial-dots .dot-2,
#t3:checked ~ .testimonial-controls .testimonial-dots .dot-3 {
    background: var(--gold);
    width: 28px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .testimonial-slider {
        max-width: 100%;
        padding: 0 calc(var(--spacing-unit) * 2);
    }

    .testimonial-track {
        height: auto;
    }

    .testimonial-card {
        position: relative;
        display: none;
        padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 3);
        min-height: auto;
    }

    #t1:checked ~ .testimonial-track .card-1,
    #t2:checked ~ .testimonial-track .card-2,
    #t3:checked ~ .testimonial-track .card-3 {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.65;
    }

    .testimonial-controls {
        margin-top: calc(var(--spacing-unit) * 3);
        gap: calc(var(--spacing-unit) * 2);
    }

    .nav-wrapper,
    .testimonial-btn {
        width: 42px;
        height: 42px;
    }

    .testimonial-btn {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        padding: 0 calc(var(--spacing-unit) * 1.5);
    }

    .testimonial-card {
        padding: calc(var(--spacing-unit) * 3.5) calc(var(--spacing-unit) * 2.5);
        border-radius: 18px;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial-controls {
        margin-top: calc(var(--spacing-unit) * 2.5);
        gap: calc(var(--spacing-unit) * 1.5);
    }

    .nav-wrapper,
    .testimonial-btn {
        width: 38px;
        height: 38px;
    }

    .testimonial-btn {
        font-size: 0.85rem;
    }

    .testimonial-dots {
        gap: calc(var(--spacing-unit) * 1);
    }
}

/* ─── FAQ SECTION ───────────────────────────────────────────────────── */
.faq-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--white);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.faq-item {
    background: var(--gray);
    border-radius: 16px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(11, 57, 16, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--spacing-unit) * 3);
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-green);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 4);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .faq-question {
        padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 3);
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 3);
        font-size: 0.95rem;
    }
}

.contact-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--primary-green);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: var(--light-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: start;
}

.contact-item {
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 5);
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-top: calc(var(--spacing-unit) * 1);
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--light-gold);
}

.contact-item a,
.contact-item p {
    color: var(--white);
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 3);
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 4);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: calc(var(--spacing-unit) * 2);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-group label {
    position: absolute;
    left: calc(var(--spacing-unit) * 2);
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group textarea + label {
    top: calc(var(--spacing-unit) * 3);
    transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: calc(var(--spacing-unit) * 1);
    font-size: 0.85rem;
    background: var(--primary-green);
    color: var(--gold);
    padding: 0 calc(var(--spacing-unit) * 1);
    border-radius: 4px;
}

.submit-btn {
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
    background: linear-gradient(135deg, var(--gold), #c9a336);
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 6);
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.footer-section h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--gold);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: calc(var(--spacing-unit) * 1);
}

.footer-bottom {
    text-align: center;
    padding-top: calc(var(--spacing-unit) * 4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.footer-host {
    font-size: 0.85rem !important;
}

.footer-legal-links {
    margin-top: calc(var(--spacing-unit) * 1);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

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

/* ─── PRIVACY / LEGAL PAGE ──────────────────────────────────────── */
.page-banner {
    padding: calc(var(--spacing-unit) * 18) 0 calc(var(--spacing-unit) * 8);
    background: var(--primary-green);
    text-align: center;
}

.page-banner h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    letter-spacing: 2px;
}

.legal-section {
    padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 15);
    background: var(--white);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-secondary);
    color: var(--primary-green);
    font-size: 1.9rem;
    margin: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 2);
    border-left: 3px solid var(--gold);
    padding-left: calc(var(--spacing-unit) * 2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content .legal-updated {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.legal-content a {
    color: var(--primary-green);
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
}

.legal-content a:hover {
    color: var(--gold);
}


.footer-legal-links {
    margin-top: calc(var(--spacing-unit) * 1);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

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

/* ─── PRIVACY / LEGAL PAGE ──────────────────────────────────────── */
.page-banner {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    background: linear-gradient(135deg, rgba(11, 57, 16, 0.92), rgba(0, 0, 0, 0.75)),
                url('./hero3.webp');
    background-size: cover;
    background-position: center;
}
@media (max-width: 480px) {
    .services-page-hero,
    .page-banner-about,
    .gallery-hero,
    .page-banner {
        height: 480px;
    }
}

.page-banner h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.page-banner-about {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    background: linear-gradient(135deg, rgba(11, 57, 16, 0.88), rgba(0, 0, 0, 0.7)),
                url('./about_bg.webp');
    background-size: cover;
    background-position: center;
}

.page-banner-about h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.legal-section {
    padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 15);
    background: var(--white);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-secondary);
    color: var(--primary-green);
    font-size: 1.9rem;
    margin: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 1);
    border-left: 3px solid var(--gold);
    padding-left: calc(var(--spacing-unit) * 2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content .legal-updated {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: calc(var(--spacing-unit) * 2);
    padding-left: calc(var(--spacing-unit) * 2);
}

.legal-content a {
    color: var(--primary-green);
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
}

.legal-content a:hover {
    color: var(--gold);
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(11, 57, 16, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    background: #000000;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-green);
}


@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--primary-green);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: calc(var(--spacing-unit) * 4);
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-controls {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-top: calc(var(--spacing-unit) * 8);
    }

    .section-title {
        font-size: 2rem;
    }

   .nav-lang-item {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        padding-top: calc(var(--spacing-unit) * 3);
        margin-top: calc(var(--spacing-unit) * 2);
        justify-content: center;
    }

    .language-selector {
        gap: calc(var(--spacing-unit) * 1);
        padding: 6px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .slider-controls {
        padding: 0 calc(var(--spacing-unit) * 2);
    }

    .slider-btn {
        width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 calc(var(--spacing-unit) * 2);
        gap: calc(var(--spacing-unit) * 1);
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .mobile-controls {
        gap: calc(var(--spacing-unit) * 1);
    }

    .mobile-lang-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .nav-toggle span {
        width: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }

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

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

.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ─── PARTNERS SECTION ─────────────────────────────────────────────── */
.partners-section {
    padding: calc(var(--spacing-unit) * 15) 0 calc(var(--spacing-unit) * 12);
    background: var(--gray);
    overflow: hidden;
}

/* Native horizontal scrollbar used to move partner logos */
.partners-mask {
    overflow-x: auto;
    overflow-y: hidden;
    margin: calc(var(--spacing-unit) * 3 - 20px) 0 0;
    padding: 0 0 14px;
    scroll-behavior: smooth;
}

/* Firefox only — Chrome/Edge/Safari use the webkit rules further down */
@supports not selector(::-webkit-scrollbar) {
    .partners-mask {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-green) transparent;
    }
}

.partners-track {
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
    width: max-content;
    padding: 20px max(24px, calc((100vw - 1200px) / 2));
}

.partner-card {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-unit) * 3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(11, 57, 16, 0.12);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}



@media (max-width: 768px) {
    .partner-card {
        width: 150px;
        height: 90px;
        padding: calc(var(--spacing-unit) * 2);
    }

    .partners-mask {
        padding-bottom: 12px;
    }
}
/* ==========================================================
   FINAL SCROLLBAR COLOUR OVERRIDE
   Normal = luxury green | Hover / drag = gold
   ========================================================== */

/* Firefox normal scrollbar colour (ignored by Chrome/Edge/Safari so it can't block the hover) */
@supports not selector(::-webkit-scrollbar) {
    html,
    body {
        scrollbar-width: thin;
        scrollbar-color: #145A20 #F5F5F5;
    }
}

/* Main page scrollbar — Chrome, Edge and Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 12px;
    height: 16px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #F5F5F5;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #145A20 !important;
    border: 3px solid #F5F5F5;
    border-radius: 999px;
}

/* Main page scrollbar: gold only on the actual scrollbar thumb */
html::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:active {
    background: #D4AF37 !important;
}


/* Partner slider scrollbar (Firefox only — Chrome/Edge/Safari use the webkit rules below) */
@supports not selector(::-webkit-scrollbar) {
    .partners-mask {
        scrollbar-width: thin;
        scrollbar-color: #145A20 #F5F5F5;
    }
}

.partners-mask::-webkit-scrollbar {
    height: 10px;
}

.partners-mask::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 999px;
}

.partners-mask::-webkit-scrollbar-thumb {
    background: #145A20 !important;
    border: 0 !important;
    border-radius: 999px;
}

/* Partner scrollbar: gold only when its thumb is hovered/clicked */
.partners-mask::-webkit-scrollbar-thumb:hover,
.partners-mask::-webkit-scrollbar-thumb:active {
    background: #D4AF37 !important;
}

/* ─── FULL GALLERY PAGE ─────────────────────────────────────────── */
.gallery-hero {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    background: linear-gradient(135deg, rgba(11, 57, 16, 0.85), rgba(0, 0, 0, 0.65)),
                url('./gallery_bg.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.gallery-hero h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: calc(var(--spacing-unit) * 2);
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.gallery-hero p {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 300;
    color: var(--light-gold);
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.full-gallery-section {
    padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
    gap: calc(var(--spacing-unit) * 3);
}

.full-gallery-grid .gallery-item {
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.full-gallery-grid .span-col-2 { grid-column: span 2; }
.full-gallery-grid .span-row-2 { grid-row: span 2; }

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.35s ease;
    z-index: 2;
}

.gallery-item:hover .video-play-icon {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.12);
}

.video-duration-badge {
    position: absolute;
    bottom: calc(var(--spacing-unit) * 2);
    right: calc(var(--spacing-unit) * 2);
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    z-index: 2;
}

@media (max-width: 1024px) {
    .full-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .full-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .full-gallery-grid .span-row-2 { grid-row: span 1; }
}

@media (max-width: 480px) {
    .full-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .full-gallery-grid .span-col-2,
    .full-gallery-grid .span-row-2 { grid-column: span 1; grid-row: span 1; }
}

/* ─── LIGHTBOX ───────────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 33, 8, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: none;
}

.lightbox-media-wrap {
    max-width: 90vw;
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-media-wrap img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.25s ease;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
}

.lightbox-media-wrap img.zoomed {
    cursor: grab;
}

.lightbox-media-wrap video {
    max-width: 90vw;
    max-height: 82vh;
    outline: none;
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: calc(var(--spacing-unit) * 4);
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 3);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 30px;
    max-width: 80vw;
}

.lightbox-counter {
    position: absolute;
    top: calc(var(--spacing-unit) * 3);
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.lightbox-close,
.lightbox-nav,
.lightbox-zoom-controls button,
.lightbox-fullscreen {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--white);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-zoom-controls button:hover,
.lightbox-fullscreen:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.lightbox-close,
.lightbox-fullscreen,
.lightbox-nav {
    position: absolute;
}

.lightbox-close {
    top: calc(var(--spacing-unit) * 3);
    right: calc(var(--spacing-unit) * 3);
}

.lightbox-fullscreen {
    top: calc(var(--spacing-unit) * 3);
    right: calc(var(--spacing-unit) * 10);
}

.lightbox-nav.prev { left: calc(var(--spacing-unit) * 3); }
.lightbox-nav.next { right: calc(var(--spacing-unit) * 3); }
.lightbox-nav { top: 50%; transform: translateY(-50%); }

.lightbox-zoom-controls {
    position: absolute;
    bottom: calc(var(--spacing-unit) * 3);
    right: calc(var(--spacing-unit) * 3);
    display: flex;
    gap: calc(var(--spacing-unit) * 1.5);
}

@media (max-width: 768px) {
    .lightbox-nav { width: 38px; height: 38px; }
    .lightbox-close, .lightbox-fullscreen { width: 38px; height: 38px; }
    .lightbox-fullscreen { right: calc(var(--spacing-unit) * 8); }
    .lightbox-caption { font-size: 0.95rem; bottom: calc(var(--spacing-unit) * 12); }
    .lightbox-zoom-controls { bottom: calc(var(--spacing-unit) * 12); }
}

/* ─── ABOUT PAGE — COMMITMENT & SEO SECTIONS ───────────────────────── */
.commitment-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--primary-green);
    color: var(--white);
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.commitment-highlight {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: calc(var(--spacing-unit) * 3) 0;
    margin: calc(var(--spacing-unit) * 5) 0;
}

.commitment-section .section-title {
    color: var(--white);
}

.seo-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--gray);
}

.seo-content {
    max-width: 850px;
    margin: 0 auto;
}

.seo-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.seo-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--dark-gray);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.about-cta-section {
    position: relative;
    padding: calc(var(--spacing-unit) * 14) 0;
    background: linear-gradient(135deg, rgba(11, 57, 16, 0.92), rgba(0, 0, 0, 0.8)),
                url('./paris_cta.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.about-cta-section h2 {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.about-cta-section p {
    color: var(--light-gold);
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

/* ─── PROCESS SECTION ───────────────────────────────────────────── */
.process-section {
    padding: calc(var(--spacing-unit) * 15) 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    align-items: stretch;
    gap: calc(var(--spacing-unit) * 2);
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.4rem;
    opacity: 0.7;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 3);
    background: var(--gray);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 57, 16, 0.12);
}

.process-number {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: calc(var(--spacing-unit) * 2);
    line-height: 1;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* ─── STATS SECTION ─────────────────────────────────────────────── */
.stats-section {
    padding: calc(var(--spacing-unit) * 10) 0;
    background: var(--dark-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--spacing-unit) * 4);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }
    .process-arrow {
        transform: rotate(90deg);
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 3);
    }
}

@media (max-width: 768px) {
    .commitment-content p,
    .seo-content p {
        font-size: 1rem;
    }

    .commitment-highlight {
        font-size: 1.15rem;
    }
}

/* ─── DEDICATED SERVICES PAGE ─────────────────────────────────── */
.services-page-hero {
    height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    background: linear-gradient(135deg, rgba(11,57,16,.9), rgba(0,0,0,.72)),
                url('./services_hero_bg.webp');
    background-size: cover;
    background-position: center;
}
.services-hero-inner { max-width: 850px; }
.eyebrow { display: inline-block; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; font-weight: 600; margin-bottom: 18px; }
.services-page-hero h1 { font-family: var(--font-secondary); font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: 3px; margin-bottom: 16px; }
.services-page-hero p,
.services-hero-inner p {
    max-width: 680px;
    margin: 0 auto 34px;
    color: var(--light-gold);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 300;
}
.services-hero-inner .cta-button {
    margin-top: calc(var(--spacing-unit) * 1);
}

/* About + Services + Privacy hero animations */
.services-page-hero .services-hero-inner > *,
.page-banner-about .services-hero-inner > *,
.page-banner .services-hero-inner > * {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
}

/* Staggered animation timing, same style as index hero */
.services-page-hero .services-hero-inner > *:nth-child(1),
.page-banner-about .services-hero-inner > *:nth-child(1),
.page-banner .services-hero-inner > *:nth-child(1) {
    animation-delay: 0.2s;
}

.services-page-hero .services-hero-inner > *:nth-child(2),
.page-banner-about .services-hero-inner > *:nth-child(2),
.page-banner .services-hero-inner > *:nth-child(2) {
    animation-delay: 0.4s;
}

.services-page-hero .services-hero-inner > *:nth-child(3),
.page-banner-about .services-hero-inner > *:nth-child(3),
.page-banner .services-hero-inner > *:nth-child(3) {
    animation-delay: 0.6s;
}

.services-page-hero .services-hero-inner > *:nth-child(4),
.page-banner-about .services-hero-inner > *:nth-child(4),
.page-banner .services-hero-inner > *:nth-child(4) {
    animation-delay: 0.8s;
}

.services-page-hero .services-hero-inner > *:nth-child(5),
.page-banner-about .services-hero-inner > *:nth-child(5),
.page-banner .services-hero-inner > *:nth-child(5) {
    animation-delay: 1s;
}

/* Special title reveal animation, matching index hero title */
.services-page-hero .services-hero-inner h1,
.page-banner-about .services-hero-inner h1,
.page-banner .services-hero-inner h1 {
    animation: heroTitleReveal 1.2s ease forwards;
    animation-delay: 0.3s;
}

.services-page-section { padding: 120px 0; background: var(--white); }
.services-intro-header { max-width: 850px; margin-left: auto; margin-right: auto; }
.services-lead { max-width: 720px; margin: 25px auto 0; line-height: 1.8; color: var(--dark-gray); }
.services-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.service-detail-card { background: var(--gray); border-radius: 20px; overflow: hidden; border: 1px solid rgba(11,57,16,.08); transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease; }
.service-detail-card:hover { transform: translateY(-9px); border-color: var(--gold); box-shadow: 0 22px 55px rgba(11,57,16,.16); }
.service-card-image { position: relative; height: 260px; overflow: hidden; }
.service-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.58), transparent 52%); pointer-events: none; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-detail-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-number {
    position: absolute;
    top: clamp(12px, 2vw, 18px);
    right: clamp(12px, 2vw, 18px);
    left: auto;
    bottom: auto;
    z-index: 5;

    display: grid;
    place-items: center;

    width: clamp(48px, 5vw, 58px);
    height: clamp(34px, 4vw, 40px);
    padding: 0;

    border-radius: 999px;
    background: rgba(11, 57, 16, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.7);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);

    color: var(--light-gold);
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    text-align: center;

    transform: translateZ(0);
    pointer-events: none;
}
.image-credit { position: absolute; z-index: 2; right: 14px; bottom: 14px; color: rgba(255,255,255,.78); font-size: .7rem; text-decoration: underline; }
.service-card-body { padding: 30px 32px 34px; }
.service-card-body .service-icon { width: 58px; height: 58px; border-radius: 15px; margin-top: -60px; position: relative; z-index: 3; margin-bottom: 22px; box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.service-card-body .service-icon i { font-size: 1.55rem; }
.service-card-body h2 { font-family: var(--font-secondary); font-size: 2rem; line-height: 1.1; color: var(--primary-green); margin-bottom: 14px; }
.service-card-body p { line-height: 1.78; margin-bottom: 18px; }
.service-card-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; color: var(--primary-green); font-size: .85rem; font-weight: 700; letter-spacing: .4px; }
.service-card-link:hover { color: var(--gold); gap: 14px; }
.services-seo-section { padding: 105px 0; color: var(--white); background: var(--primary-green); }
.services-seo-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.services-seo-section h2 { font-family: var(--font-secondary); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.08; }
.services-seo-copy p { color: rgba(255,255,255,.88); line-height: 1.85; margin-bottom: 18px; }
.services-process-strip { padding: 110px 0; background: var(--gray); }
.services-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.services-process-grid > div { background: var(--white); padding: 32px; border-radius: 16px; border-top: 3px solid var(--gold); }
.services-process-grid span { color: var(--gold); font-family: var(--font-secondary); font-size: 2.4rem; font-weight: 700; }
.services-process-grid h3 { color: var(--primary-green); margin: 12px 0 8px; font-size: 1.15rem; }
.services-process-grid p { line-height: 1.7; font-size: .95rem; }
.services-cta-section { padding: 120px 0; text-align: center; color: var(--white); background: linear-gradient(135deg, rgba(11,57,16,.88), rgba(0,0,0,.76)), url('./services_hero_bg.webp'); background-size: cover; background-position: center; }
.services-cta-section h2 { max-width: 760px; margin: 0 auto 16px; font-family: var(--font-secondary); font-size: clamp(2.2rem, 4.5vw, 3.7rem); line-height: 1.1; }
.services-cta-section p { color: var(--light-gold); margin-bottom: 30px; font-size: 1.1rem; }
.image-source-note { display: block; margin-top: 28px; color: rgba(255,255,255,.65); font-size: .72rem; }
.image-source-note a { color: var(--light-gold); text-decoration: underline; }
@media (max-width: 800px) {
    .services-page-section, .services-seo-section, .services-process-strip, .services-cta-section { padding: 78px 0; }
    .services-detail-grid, .services-seo-layout { grid-template-columns: 1fr; }
    .services-seo-layout { gap: 30px; }
    .services-process-grid { grid-template-columns: 1fr; }
    .service-card-image { height: 220px; }
}
@media (max-width: 480px) {
    .services-page-hero { min-height: 70vh; padding: 130px 18px 70px; }
    .service-card-body { padding: 27px 22px 28px; }
    .service-card-body h2 { font-size: 1.75rem; }
}


/* ==========================================================
   ALM Section Scroll Reveal Animations
   Reliable scroll-triggered section transitions.
   ========================================================== */

.alm-section-reveal {
    opacity: 0 !important;
    transform: translate3d(0, 70px, 0) scale(0.985) !important;
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.alm-section-reveal.alm-section-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

/* Stagger cards/items inside each visible section */
.alm-section-visible .section-header,
.alm-section-visible .about-text,
.alm-section-visible .about-image,
.alm-section-visible .founder-text,
.alm-section-visible .founder-image,
.alm-section-visible .service-card,
.alm-section-visible .feature-item,
.alm-section-visible .gallery-item,
.alm-section-visible .partner-card,
.alm-section-visible .testimonial-slider,
.alm-section-visible .faq-item,
.alm-section-visible .contact-info,
.alm-section-visible .contact-form-wrapper,
.alm-section-visible .service-detail-card,
.alm-section-visible .process-step,
.alm-section-visible .stat-item {
    animation: almItemReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.alm-section-visible .section-title,
.alm-section-visible .founder-name {
    animation: sectionTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes sectionTitleReveal {
    from {
        letter-spacing: -1px;
    }
    to {
        letter-spacing: 2px;
    }
}

.alm-section-visible .service-card:nth-child(2),
.alm-section-visible .feature-item:nth-child(2),
.alm-section-visible .gallery-item:nth-child(2),
.alm-section-visible .partner-card:nth-child(2),
.alm-section-visible .faq-item:nth-child(2),
.alm-section-visible .service-detail-card:nth-child(2),
.alm-section-visible .process-step:nth-child(2),
.alm-section-visible .stat-item:nth-child(2) {
    animation-delay: 0.08s;
}

.alm-section-visible .service-card:nth-child(3),
.alm-section-visible .feature-item:nth-child(3),
.alm-section-visible .gallery-item:nth-child(3),
.alm-section-visible .partner-card:nth-child(3),
.alm-section-visible .faq-item:nth-child(3),
.alm-section-visible .service-detail-card:nth-child(3),
.alm-section-visible .process-step:nth-child(3),
.alm-section-visible .stat-item:nth-child(3) {
    animation-delay: 0.16s;
}

.alm-section-visible .service-card:nth-child(4),
.alm-section-visible .feature-item:nth-child(4),
.alm-section-visible .gallery-item:nth-child(4),
.alm-section-visible .partner-card:nth-child(4),
.alm-section-visible .faq-item:nth-child(4),
.alm-section-visible .service-detail-card:nth-child(4),
.alm-section-visible .process-step:nth-child(4),
.alm-section-visible .stat-item:nth-child(4) {
    animation-delay: 0.24s;
}

.alm-section-visible .service-card:nth-child(5),
.alm-section-visible .feature-item:nth-child(5),
.alm-section-visible .gallery-item:nth-child(5),
.alm-section-visible .partner-card:nth-child(5),
.alm-section-visible .faq-item:nth-child(5),
.alm-section-visible .service-detail-card:nth-child(5),
.alm-section-visible .process-step:nth-child(5),
.alm-section-visible .stat-item:nth-child(5) {
    animation-delay: 0.32s;
}

.alm-section-visible .service-card:nth-child(6),
.alm-section-visible .feature-item:nth-child(6),
.alm-section-visible .gallery-item:nth-child(6),
.alm-section-visible .partner-card:nth-child(6),
.alm-section-visible .faq-item:nth-child(6),
.alm-section-visible .service-detail-card:nth-child(6),
.alm-section-visible .process-step:nth-child(6),
.alm-section-visible .stat-item:nth-child(6) {
    animation-delay: 0.4s;
}

@keyframes almItemReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .alm-section-reveal,
    .alm-section-reveal.alm-section-visible {
        opacity: 1 !important;
        transform: none !important;
        filter: none;
        transition: none;
    }

    .alm-section-visible .section-header,
    .alm-section-visible .about-text,
    .alm-section-visible .about-image,
    .alm-section-visible .founder-text,
    .alm-section-visible .founder-image,
    .alm-section-visible .service-card,
    .alm-section-visible .feature-item,
    .alm-section-visible .gallery-item,
    .alm-section-visible .partner-card,
    .alm-section-visible .testimonial-slider,
    .alm-section-visible .faq-item,
    .alm-section-visible .contact-info,
    .alm-section-visible .contact-form-wrapper,
    .alm-section-visible .service-detail-card,
    .alm-section-visible .process-step,
    .alm-section-visible .stat-item {
        animation: none;
    }
}

/* ==========================================================
   Preloader
   ========================================================== */
body.is-loading {
    overflow: auto;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.7s;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.preloader-logo {
    width: 72px;
    height: auto;
    margin-bottom: calc(var(--spacing-unit) * 2.5);
    opacity: 0;
    animation: preloaderFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-name {
    font-family: var(--font-secondary);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    opacity: 0;
    animation: preloaderFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.preloader-name span {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 6px;
}

.preloader-bar {
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    margin-top: calc(var(--spacing-unit) * 4);
    overflow: hidden;
    opacity: 0;
    animation: preloaderFadeIn 0.6s ease forwards;
    animation-delay: 0.4s;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #e8c547);
    border-radius: 2px;
    animation: preloaderFill 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes preloaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloaderFill {
    from { width: 0%; }
    to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    #preloader,
    .preloader-logo,
    .preloader-name,
    .preloader-bar,
    .preloader-bar-fill {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: opacity 0.3s ease !important;
    }

    .preloader-bar-fill {
        width: 100% !important;
    }
}