/* ==========================================================================
   TNA ARCHITECTURE - CUSTOM PREMIUM STYLESHEET
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    --bg-color: #FAF9F6;              /* Premium Alabaster / Off-White */
    --text-primary: #111111;          /* Elegant Charcoal Black */
    --text-secondary: #555555;        /* Soft Charcoal */
    --text-muted: #888888;            /* Muted Grey */
    --accent: #000000;                /* Pure Solid Black */
    --accent-olive: #434B34;          /* Premium Olive Green */
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-condensed: 'Antonio', var(--font-sans);
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hide default cursor on desktop device if custom cursor is active */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }
    a, button, .hover-target {
        cursor: none;
    }
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--text-primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s var(--ease-out-expo), 
                height 0.3s var(--ease-out-expo), 
                background-color 0.3s var(--ease-out-expo),
                border 0.3s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.custom-cursor.active {
    opacity: 1;
}

.custom-cursor.hovered {
    width: 65px;
    height: 65px;
    background-color: rgba(17, 17, 17, 0.04);
    border: 1px solid var(--text-primary);
}

.custom-cursor .cursor-text {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.custom-cursor.hovered .cursor-text {
    opacity: 1;
}

/* Inverted cursor color on dark sections */
.custom-cursor.invert-cursor {
    background-color: #FAF9F6;
}

.custom-cursor.invert-cursor.hovered {
    background-color: rgba(250, 249, 246, 0.04);
    border: 1px solid #FAF9F6;
}

.custom-cursor.invert-cursor .cursor-text {
    color: #FAF9F6;
}

/* ==========================================================================
   MINIMALIST PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 80%;
    max-width: 320px;
}

.preloader-logo {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
}

.preloader-logo .logo-bold {
    font-family: var(--font-serif);
    font-weight: 700;
}

.preloader-logo .logo-light {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-secondary);
}

.preloader-bar-wrapper {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--text-primary);
}

.preloader-percentage {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    width: 100%;
    padding: 2.2rem 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    z-index: 105;
    position: relative;
}

.logo a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.header-logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.logo .logo-bold {
    font-family: var(--font-serif);
    font-weight: 700;
}

.logo .logo-light {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.nav-container {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link:hover, 
.nav-link.active {
    color: var(--text-primary);
}

/* Underline Indicator for Navigation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--text-primary);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link.active::after {
    width: 60%; /* matches exact length of underline in design */
}

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

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 102;
}

.menu-bar {
    width: 24px;
    height: 1.5px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* ==========================================================================
   MOBILE NAVIGATION OVERLAY
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-nav-overlay.open {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.mobile-nav-link {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover, 
.mobile-nav-link.active {
    color: var(--text-primary);
}

/* ==========================================================================
   MAIN HERO LAYOUT (SPLIT SCREEN)
   ========================================================================== */
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* 55% / 45% split */
    align-items: stretch;
    position: relative;
    overflow: hidden;
    height: 78vh;
    min-height: 550px;
    max-height: 720px;
}

/* Left Side: Content */
.hero-text-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 10% 3.5rem 15%; /* Shifted up slightly */
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.hero-bg-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 320px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

.hero-text-content {
    max-width: 580px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    opacity: 0;
    transform: translateY(15px);
}

.hero-title {
    font-family: var(--font-condensed);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--accent-olive);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.line-wrapper {
    display: block;
    overflow: hidden;
    margin-bottom: 0.15em;
    white-space: nowrap;
}

.line-content {
    display: block;
    transform: translateY(105%);
}

.divider-line {
    width: 48px;
    height: 1px;
    background-color: var(--text-primary);
    margin-bottom: 2.2rem;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-description {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    max-width: 450px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
}

/* Call to action buttons */
.btn-solid {
    background-color: var(--accent-olive);
    color: #FFFFFF;
    text-decoration: none;
    padding: 1.1rem 2.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    display: inline-block;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-solid span {
    position: relative;
    z-index: 2;
}

/* Premium Button Hover Overlay */
.btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #323827;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 1;
}

.btn-solid:hover::before {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.25);
    text-decoration: none;
    padding: 1.1rem 2.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    display: inline-block;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-outline span {
    position: relative;
    z-index: 2;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(67, 75, 52, 0.05);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 1;
}

.btn-outline:hover::before {
    transform: translateY(0);
}

.btn-outline:hover {
    border-color: var(--accent-olive);
    color: var(--accent-olive);
}

.btn-header {
    background-color: var(--accent-olive);
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.8rem 2.0rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    display: inline-block;
    transition: var(--transition-fast);
}

.btn-header:hover {
    background-color: #323827;
}

.btn-text {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
    transition: var(--transition-fast);
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.4s var(--ease-out-expo);
}

.btn-text:hover::after {
    width: 60%;
}

/* Right Side: Image */
.hero-image-section {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Revealed dynamically via GSAP clip-path */
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.15); /* For zoom-out reveal */
    filter: brightness(0.96); /* Elegant tone */
    transition: filter 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
    filter: brightness(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

/* ==========================================================================
   ABOUT SECTION LAYOUT (SPLIT SCREEN ALTERNATING)
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal 50/50 split */
    align-items: stretch;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    height: 70vh;
    min-height: 500px;
    max-height: 620px;
}

/* Left Side: Image */
.about-image-section {
    position: relative;
    height: 100%;
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Revealed dynamically via GSAP clip-path */
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.15); /* For zoom-out reveal */
    filter: brightness(0.96);
    transition: filter 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    filter: brightness(1);
}

/* Right Side: Content */
.about-text-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 10% 2.5rem 10%; /* Shifted up */
    background-color: var(--bg-color);
}

.about-text-content {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -12.5rem; /* Shift up for perfect visual alignment */
}

.about-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    margin-bottom: 1.2rem; /* Tightened */
    display: flex;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(15px);
}

.about-tag::after {
    content: '';
    display: inline-block;
    width: 48px;
    height: 1px;
    background-color: var(--text-secondary);
    opacity: 0.5;
}

.about-title {
    font-family: var(--font-condensed);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.2rem; /* Tightened */
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.about-line-wrapper {
    display: block;
    overflow: hidden;
    margin-bottom: 0.15em;
}

.about-line-content {
    display: block;
    transform: translateY(105%);
}

.about-divider-line {
    display: none;
}

.about-description {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

.about-description:last-of-type {
    margin-bottom: 1.5rem; /* Tightened */
}

.about-actions {
    opacity: 0;
    transform: translateY(20px);
}

/* ==========================================================================
   SERVICES SECTION (DARK / GRID)
   ========================================================================== */
.services-dark-container {
    background-color: #141612; /* Dark Premium Olive-Black */
    padding: 9rem 8%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.services-dark-layout {
    display: flex;
    gap: 4.5rem;
    align-items: stretch;
    width: 100%;
}

.services-dark-title {
    width: 20%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.services-dark-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #A7B38A; /* Lime Olive Green */
    margin-bottom: 1.2rem;
}

.services-dark-main-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.1;
    color: #FFFFFF;
}

.services-dark-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.services-dark-card {
    position: relative;
    padding: 3rem 1.8rem 2.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    transition: background-color 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.services-dark-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.services-dark-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scaleY(0);
    transform-origin: top;
}

.service-dark-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #A7B38A;
    transition: width 0.4s var(--ease-out-expo);
    z-index: 2;
}

.services-dark-card:hover .service-dark-hover-line {
    width: 100%;
}

.service-dark-num {
    position: absolute;
    top: 3rem;
    right: 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.4s ease;
}

.services-dark-card:hover .service-dark-num {
    color: #A7B38A;
}

.service-dark-icon {
    width: 36px;
    height: 36px;
    color: #A7B38A;
    margin-bottom: 2.5rem;
    transition: transform 0.4s var(--ease-out-expo), color 0.4s ease;
}

.services-dark-card:hover .service-dark-icon {
    transform: translateY(-8px) scale(1.05);
    color: #FFFFFF;
}

.service-dark-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.service-dark-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

/* Services Dark Responsive Styles */
@media (max-width: 1200px) {
    .services-dark-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-dark-card {
        padding: 3rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .services-dark-grid .services-dark-card:nth-child(3n+1) .services-dark-border {
        display: none;
    }
}

@media (max-width: 1024px) {
    .services-dark-layout {
        flex-direction: column;
        gap: 3rem;
    }
    
    .services-dark-title {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-dark-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .services-dark-container {
        padding: 5rem 6%;
    }
    
    .services-dark-grid {
        grid-template-columns: 1fr;
    }
    
    .services-dark-card {
        padding: 2.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .services-dark-border {
        display: none;
    }
    
    .service-dark-icon {
        margin-bottom: 1.8rem;
    }
    
    .service-dark-num {
        top: 2.5rem;
        right: 0;
    }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.choose-container {
    background-color: var(--bg-color);
    padding: 8rem 8%;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.choose-header {
    margin-bottom: 5.5rem;
    width: 100%;
}

.choose-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    align-items: start;
    width: 100%;
}

.choose-card {
    position: relative;
    padding: 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.choose-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--text-primary);
    opacity: 0.12;
    transform: scaleY(0);
    transform-origin: top;
}

/* Hide first border left to match design cleanly */
.choose-grid .choose-card:first-child .choose-border {
    display: none;
}

.choose-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.choose-circle {
    width: 80px;
    height: 80px;
    border: 1.5px solid var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: transform 0.4s var(--ease-out-expo), 
                background-color 0.3s ease, 
                color 0.3s ease;
    transform: scale(0);
}

.choose-circle:hover {
    background-color: var(--text-primary);
    color: #FFFFFF;
    transform: scale(1.05);
}

.choose-svg {
    width: 26px;
    height: 26px;
}

.choose-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.choose-card-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 240px;
}

/* ==========================================================================
   SELECTED WORK / PROJECTS SECTION
   ========================================================================== */
.projects-slider-container {
    background-color: var(--bg-color);
    padding: 8rem 0 8rem 8%;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.projects-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
    padding-right: 8%;
    width: 100%;
}

.projects-slider-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.projects-slider-view-all {
    font-family: var(--font-sans);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.projects-slider-view-all::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.4s var(--ease-out-expo);
}

.projects-slider-view-all:hover::after {
    width: 60%;
}

.projects-slider-wrapper {
    width: 100%;
    overflow: visible;
}

.projects-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-right: 8%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
}

.projects-slider-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.project-slider-card {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    scroll-snap-align: start;
}

.project-slider-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.project-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.15); /* Zoomed in initially, GSAP will scale to 1 */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-slider-image-wrapper:hover .project-slider-image {
    transform: scale(1.06);
}

.project-slider-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.project-slider-card-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.project-slider-card-location {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   STATS BANNER SECTION
   ========================================================================== */
.stats-banner-container {
    background-color: var(--accent-olive);
    color: #FAF9F6;
    padding: 4.5rem 8%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.stats-banner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    justify-content: center;
    opacity: 0;
    transform: translateY(25px);
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8CEB5;
    flex-shrink: 0;
}

.stat-icon {
    width: 34px;
    height: 34px;
    stroke-width: 1.5;
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-value {
    font-family: var(--font-condensed);
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.95;
    color: #FAF9F6;
    letter-spacing: -0.01em;
}

.stat-value-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FAF9F6;
    line-height: 1.15;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.7);
    margin-top: 0.15rem;
    line-height: 1.25;
}

.stat-label-sub {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.7);
    line-height: 1.25;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(250, 249, 246, 0.18);
    flex-shrink: 0;
    transform: scaleY(0);
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */

/* ==========================================================================
   TESTIMONIALS SECTION (SLIDER / CAROUSEL)
   ========================================================================== */
.testimonials-container {
    background-color: var(--bg-color);
    padding: 7rem 8%;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
    width: 100%;
}

.testimonials-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.testimonials-nav {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.testimonials-nav-btn {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-fast);
    padding: 0;
}

.testimonials-nav-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.testimonials-nav-btn:hover {
    border-color: var(--text-primary);
    background-color: rgba(17, 17, 17, 0.04);
}

.testimonials-nav-btn.prev:hover svg {
    transform: translateX(-2px);
}

.testimonials-nav-btn.next:hover svg {
    transform: translateX(2px);
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: visible;
}

.testimonials-track {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

.testimonial-card {
    position: relative;
    flex: 0 0 460px;
    margin-right: 30px;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
    border-color: var(--text-primary);
}

.testimonial-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--text-primary);
    opacity: 0.12;
    transform: scaleY(0);
    transform-origin: top;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.75;
    color: #333333;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.testimonial-client {
    margin-top: auto;
}

.testimonial-name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.testimonial-role {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-container {
    background-color: #121311;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contact-image-wrapper {
    flex: 0 0 32%;
    position: relative;
    overflow: hidden;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.95);
}

.contact-form-container {
    flex: 1;
    padding: 6.5rem 6%;
    display: flex;
    align-items: center;
}

.contact-form-inner {
    display: flex;
    align-items: stretch;
    gap: 4rem;
    width: 100%;
}

.contact-info-column {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-title {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.35;
    color: #FAF9F6;
    letter-spacing: 0.05em;
}

.contact-info-divider {
    width: 32px;
    height: 1px;
    background-color: rgba(250, 249, 246, 0.25);
    margin: 1.5rem 0 2rem 0;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
}

.contact-info-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8CEB5;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
}

.contact-info-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(250, 249, 246, 0.8);
    letter-spacing: 0.02em;
}

.contact-info-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

.contact-social-icon {
    color: #C8CEB5;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-social-icon svg {
    width: 18px;
    height: 18px;
}

.contact-social-icon:hover {
    color: #FAF9F6;
}

.contact-column-divider {
    width: 1px;
    background-color: rgba(250, 249, 246, 0.12);
    align-self: stretch;
    transform: scaleY(0);
}

.contact-form-column {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-input-new,
.contact-textarea-new,
.contact-select-new {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(250, 249, 246, 0.15);
    color: #FAF9F6;
    padding: 1.05rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition-fast);
    outline: none;
}

.contact-input-new:focus,
.contact-textarea-new:focus,
.contact-select-new:focus {
    border-color: #FAF9F6;
}

.contact-input-new::placeholder,
.contact-textarea-new::placeholder {
    color: rgba(250, 249, 246, 0.4);
}

.select-wrapper-new {
    position: relative;
    width: 100%;
}

.contact-select-new {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

.select-arrow-new {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: rgba(250, 249, 246, 0.4);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.contact-select-new:focus + .select-arrow-new {
    transform: translateY(-50%) rotate(180deg);
}

.contact-textarea-new {
    resize: none;
}

.contact-submit-new {
    background-color: var(--accent-olive);
    border: none;
    color: #FAF9F6;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 1.1rem 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    align-self: flex-start;
}

.contact-submit-new:hover {
    background-color: #353b29;
}

.submit-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.contact-submit-new:hover .submit-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: #121311;
    color: #FAF9F6;
    padding: 6rem 8% 3.5rem 8%;
    border-top: 1px solid rgba(250, 249, 246, 0.08);
    width: 100%;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(250, 249, 246, 0.08);
    padding-left: 3rem;
}

.footer-col.brand-col {
    border-left: none;
    padding-left: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 16px;
    width: auto;
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: 0.95;
    display: block;
}

.footer-philosophy {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.6);
    font-weight: 300;
    max-width: 260px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #FAF9F6;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(250, 249, 246, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #FAF9F6;
    transition: width 0.4s var(--ease-out-expo);
}

.footer-link:hover {
    color: #FAF9F6;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-info-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.6);
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.footer-info-text:last-of-type {
    margin-bottom: 0;
}

.footer-info-text .footer-link {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0;
}

.footer-newsletter-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(250, 249, 246, 0.6);
    font-weight: 300;
    margin-bottom: 1.25rem;
    max-width: 240px;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(250, 249, 246, 0.15);
    padding-bottom: 0.5rem;
    width: 100%;
}

.footer-newsletter-focus-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #FAF9F6;
    transition: width 0.4s var(--ease-out-expo);
}

.footer-newsletter-form:focus-within .footer-newsletter-focus-line {
    width: 100%;
}

.footer-newsletter-input {
    background: none;
    border: none;
    color: #FAF9F6;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    width: 100%;
    padding: 0.3rem 2.5rem 0.3rem 0;
    outline: none;
}

.footer-newsletter-input::placeholder {
    color: rgba(250, 249, 246, 0.3);
}

.footer-newsletter-submit {
    background: none;
    border: none;
    color: #C8CEB5;
    cursor: pointer;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    transition: var(--transition-fast);
}

.footer-newsletter-submit:hover {
    color: #FAF9F6;
}

.newsletter-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.footer-newsletter-submit:hover .newsletter-arrow {
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 249, 246, 0.08);
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: rgba(250, 249, 246, 0.4);
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 2.5rem;
}

.footer-social-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(250, 249, 246, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

.footer-social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #FAF9F6;
    transition: width 0.4s var(--ease-out-expo);
}

.footer-social-link:hover::after {
    width: 100%;
}

/* High-resolution widescreen layouts */
@media (min-width: 1440px) {
    .hero-text-section {
        padding: 3rem 12% 4rem 18%;
    }
    .hero-title {
        font-size: 5.2rem;
    }
}

/* Tablets and small desktops */
@media (max-width: 1024px) {
    .site-header {
        padding: 1.8rem 6%;
    }
    
    .hero-container {
        grid-template-columns: 1fr; /* Stack layout */
        min-height: auto;
        height: auto;
        max-height: none;
    }
    
    .hero-text-section {
        padding: 3rem 8%;
        order: 2; /* Text below image */
    }
    
    .hero-image-section {
        height: 60vh; /* Controlled height on tablet */
        order: 1; /* Image on top */
    }
    
    .hero-image-wrapper {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); /* Bottom reveal for vertical stack */
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    /* About section tablet styles */
    .about-container {
        grid-template-columns: 1fr; /* Stack layout */
        min-height: auto;
        height: auto;
        max-height: none;
    }
    
    .about-image-section {
        height: 60vh;
        order: 1; /* Image on top */
    }
    
    .about-text-section {
        padding: 4rem 8%;
        order: 2; /* Text below image */
    }
    
    .about-text-content {
        margin-top: 0;
    }
    
    .about-image-wrapper {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); /* Bottom reveal for stack */
    }
    
    .about-title {
        font-size: 3.2rem;
    }
    

    
    /* Why Choose Us Tablet styles */
    .choose-container {
        padding: 6rem 6%;
    }
    
    .choose-grid {
        grid-template-columns: repeat(3, 1fr); /* Wrap to multiple rows */
    }
    
    .choose-card {
        padding: 3rem 2rem;
    }
    
    /* Show borders for row elements except first of row */
    .choose-grid .choose-card:nth-child(3n+1) .choose-border {
        display: none;
    }
    .choose-grid .choose-card:not(:nth-child(3n+1)) .choose-border {
        display: block;
    }
    
    /* Projects Tablet styles */
    .projects-slider-container {
        padding: 6rem 0 6rem 6%;
    }
    
    .projects-slider-header {
        padding-right: 6%;
        margin-bottom: 2.5rem;
    }
    
    .project-slider-card {
        flex: 0 0 340px;
    }
    
    /* Stats Banner Tablet styles */
    .stats-banner-container {
        padding: 4rem 6%;
    }
    
    .stats-banner-wrapper {
        flex-wrap: wrap;
        gap: 3rem 2rem;
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 2rem);
        justify-content: flex-start;
        max-width: 280px;
    }
    
    .stat-item:last-child {
        flex: 0 0 100%;
        max-width: none;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Testimonials Tablet styles */
    .testimonials-container {
        padding: 6rem 6%;
    }
    
    .testimonials-header-line {
        margin-right: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 360px;
        margin-right: 35px;
        padding: 1.8rem 2rem;
    }
    
    .testimonial-text {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 2.2rem;
    }
    
    .testimonial-quote {
        font-size: 4rem;
        height: 35px;
    }
    
    /* Contact Section Tablet Styles */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-image-wrapper {
        flex: 0 0 350px;
        width: 100%;
    }
    
    .contact-form-container {
        padding: 5rem 6%;
    }
    
    .contact-form-inner {
        flex-direction: column;
        gap: 3.5rem;
    }
    
    .contact-column-divider {
        display: none;
    }
    
    /* Footer Tablet Styles */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 3rem;
    }
    
    .footer-col {
        border-left: none;
        padding-left: 0;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .line-wrapper {
        white-space: normal;
    }
    
    .nav-container {
        display: none; /* Hide standard nav */
    }
    
    .menu-toggle {
        display: flex; /* Show hamburger toggle */
    }
    
    /* Toggle active animation */
    .menu-toggle.active .menu-bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    
    .menu-toggle.active .menu-bar:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }
    
    .hero-image-section {
        height: 40vh;
    }
    
    .hero-text-section {
        padding: 3rem 6% 2.5rem 6%;
    }
    
    .location-tag {
        margin-bottom: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.15;
        margin-bottom: 1.2rem;
    }
    
    .divider-line {
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    
    .btn-solid,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-nav-links .mobile-cta {
        background-color: var(--accent-olive);
        color: #FFFFFF;
        padding: 0.8rem 2.2rem;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        margin-top: 1rem;
        display: inline-block;
        transition: var(--transition-fast);
    }
    
    .mobile-nav-links .mobile-cta:hover {
        background-color: #323827;
    }
    
    .btn-text {
        padding-left: 0.5rem;
    }
    
    /* About section mobile styles */
    .about-image-section {
        height: 40vh;
    }
    
    .about-text-section {
        padding: 3rem 6% 2.5rem 6%;
    }
    
    .about-tag {
        margin-bottom: 1.2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .about-divider-line {
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        margin-bottom: 1.2rem;
    }
    
    .about-description:last-of-type {
        margin-bottom: 2rem;
    }
    

    
    /* Why Choose Us Mobile styles */
    .choose-container {
        padding: 4rem 6%;
    }
    
    .choose-header {
        margin-bottom: 2rem;
    }
    
    .choose-grid {
        grid-template-columns: 1fr; /* Single column stack */
    }
    
    .choose-card {
        padding: 1.5rem 0;
    }
    
    .choose-icon-wrapper {
        margin-bottom: 1.2rem;
    }
    
    .choose-card-title {
        margin-bottom: 0.6rem;
    }
    
    .choose-border {
        width: 100%;
        height: 1px;
        left: 0;
        top: 0;
        transform: scaleX(0);
        transform-origin: left;
    }
    
    /* Display borders as horizontal lines for all except first */
    .choose-grid .choose-card:first-child .choose-border {
        display: none;
    }
    .choose-grid .choose-card:not(:first-child) .choose-border {
        display: block;
    }
    
    .choose-circle {
        width: 60px;
        height: 60px;
    }
    
    .choose-svg {
        width: 24px;
        height: 24px;
    }
    
    /* Projects Mobile styles */
    .projects-slider-container {
        padding: 5rem 0 5rem 6%;
    }
    
    .projects-slider-header {
        padding-right: 6%;
        margin-bottom: 2rem;
    }
    
    .project-slider-card {
        flex: 0 0 82%;
    }
    
    /* Stats Banner Mobile styles */
    .stats-banner-container {
        padding: 3.5rem 6%;
    }
    
    .stats-banner-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .stat-item {
        flex: 0 0 100%;
        width: 100%;
        justify-content: flex-start;
        max-width: none;
    }
    
    .stat-item:last-child {
        justify-content: flex-start;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    /* Testimonials Mobile styles */
    .testimonials-container {
        padding: 5rem 6%;
    }
    
    .testimonials-header {
        margin-bottom: 2.5rem;
    }
    
    .testimonials-header-line {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 85%;
        margin-right: 20px;
        padding: 1.5rem 1.5rem 1.5rem 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.8rem;
    }
    
    .testimonial-quote {
        font-size: 3.5rem;
        height: 30px;
    }
    
    .testimonial-border {
        width: 100%;
        height: 1px;
        left: 0;
        top: 0;
        transform: scaleX(0);
        transform-origin: left;
    }
    
    /* Contact Section Mobile Styles */
    .contact-container {
        padding: 0;
    }
    
    .contact-image-wrapper {
        flex: 0 0 250px;
    }
    
    .contact-form-container {
        padding: 4rem 6%;
    }
    
    .contact-info-title {
        font-size: 1.35rem;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-submit-new {
        width: 100%;
    }
    
    /* Footer Mobile Styles */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .footer-col {
        border-left: none;
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
    
    .footer-philosophy {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-newsletter-desc {
        max-width: 280px;
        margin: 0 auto 1.25rem auto;
    }
    
    .footer-links-list {
        align-items: center;
    }
    
    .footer-newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
        gap: 2rem;
    }
}

/* Small Screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-text-section {
        padding: 2.5rem 6%;
    }
}
