/* =====================================================
   TELLICHERRY — SWISS DESIGN SYSTEM
   =====================================================
   
   DESIGN PRINCIPLES:
   1. Grid-based layout (12-column modular grid)
   2. Objective, sans-serif typography (Helvetica-inspired)
   3. Asymmetric compositions with mathematical precision
   4. Generous whitespace and breathing room
   5. Limited color palette with high contrast
   6. Functional, minimal aesthetics
   
   GRID LOGIC:
   - Base unit: 8px (all spacing is multiples of 8)
   - 12-column grid with 24px gutters
   - Maximum content width: 1440px
   - Breakpoints: 480px, 768px, 1024px, 1440px
   
   TYPOGRAPHIC HIERARCHY:
   - Headings: Archivo (geometric, strong)
   - Body: Work Sans (humanist sans-serif)
   - Scale: Perfect Fourth (1.333)
   - Line height: 1.5 (body), 1.2 (headings)
   - Tracking: Wide for uppercase, normal for mixed case
   
   ===================================================== */

/* ====================================
   CSS Variables & Foundation
   ==================================== */

:root {
    /* Grid System */
    --grid-unit: 8px;
    --grid-gutter: 24px;
    --grid-columns: 12;
    --max-width: 1440px;
    
    /* Swiss Color Palette: High contrast, limited palette */
    --color-black: #000000;
    --color-near-black: #1a1a1a;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #cccccc;
    --color-gray-lighter: #e8e8e8;
    --color-white: #ffffff;
    --color-off-white: #fafafa;
    
    /* Accent colors (minimal use) */
    --color-red: #e74c3c;
    --color-blue: #2c3e50;
    --color-teal: #0a4d4e;
    
    /* Typography Scale (Perfect Fourth: 1.333) */
    --font-heading: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
    
    --text-xs: 0.85rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.000rem;     /* 21.33px */
    --text-xl: 1.777rem;     /* 28.43px */
    --text-2xl: 2.369rem;    /* 37.90px */
    --text-3xl: 3.157rem;    /* 50.52px */
    --text-4xl: 4.209rem;    /* 67.34px */
    --text-5xl: 5.61rem;     /* 89.76px */
    
    /* Spacing Scale (based on 8px grid unit) */
    --space-1: calc(var(--grid-unit) * 1);   /* 8px */
    --space-2: calc(var(--grid-unit) * 2);   /* 16px */
    --space-3: calc(var(--grid-unit) * 3);   /* 24px */
    --space-4: calc(var(--grid-unit) * 4);   /* 32px */
    --space-5: calc(var(--grid-unit) * 5);   /* 40px */
    --space-6: calc(var(--grid-unit) * 6);   /* 48px */
    --space-8: calc(var(--grid-unit) * 8);   /* 64px */
    --space-10: calc(var(--grid-unit) * 10); /* 80px */
    --space-12: calc(var(--grid-unit) * 12); /* 96px */
    --space-16: calc(var(--grid-unit) * 16); /* 128px */
    
    /* Transitions (subtle, functional) */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   Reset & Base Styles
   ==================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-near-black);
    background: #F5F6F8;;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100vw;
}

/* ====================================
   Navigation: Grid-based Layout
   ==================================== */

.swiss-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parallax scrolled state */
.swiss-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
}

/* Parallax hide on scroll down */
.swiss-nav.hidden {
    transform: translateY(-100%);
}

.nav-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-3) var(--space-4);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--grid-gutter);
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.logo-image {
    height: 80px; /* Reduced from 85px */
    display: flex;
    align-items: center;
}

.logo-image img {
    height: 100%;
    width: auto;
    display: block;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-primary {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-black);
}

.logo-secondary {
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-gray);
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-5);
}

.nav-item {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-black);
    transition: width var(--transition-base);
}

.nav-item:hover {
    color: var(--color-red);
}

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

/* Hamburger — hidden on desktop, shown only at 480px */
.hamburger {
    display: none;
}
    color: var(--color-black);
}

.nav-item.active::after {
    width: 100%;
    background: var(--color-teal);
}

/* ====================================
   Hero Section: Asymmetric Grid
   ==================================== */

.hero-swiss {
    height: calc(100vh - 75px); /* Adjusted for smaller nav */
    max-height: 900px; /* Cap maximum height for very large screens */
    padding-top: 75px; /* Reduced from 96px to match nav */
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-10) var(--space-4); /* Reduced from space-6 */
    height: 100%;
    display: grid;
    grid-template-columns: 5fr 7fr; /* Asymmetric: Golden ratio approximation */
    gap: var(--space-6);
    align-items: start; /* Changed from center to start for better control */
    padding-bottom: var(--space-10); /* Add bottom padding for slide nav space */
    position: relative;
}

/* Left Column: Typography-driven */
.hero-content {
    padding-right: var(--space-3); /* Reduced from space-4 */
    padding-top: var(--space-8); /* Add top padding for vertical centering */
    display: flex;
    flex-direction: column;
}

.hero-content > * {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl); /* Reduced from text-5xl (90px) to text-3xl (51px) */
    font-weight: 900;
    color: var(--color-gray-lighter);
    line-height: 1;
    margin-bottom: var(--space-1); /* Reduced from space-2 */
}

.hero-category {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: var(--space-3); /* Reduced from space-4 */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl); /* Reduced by 30%: was text-2xl (38px), now text-xl (28px) */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: var(--space-4);
}

.title-line {
    display: block;
    font-size: var(--text-xl);
}

.title-accent {
    color: var(--color-red);
}

.hero-description {
    font-size: var(--text-sm); /* Reduced from text-base (16px) to text-sm (14px) */
    line-height: 1.6;
    color: var(--color-gray-dark);
    margin-bottom: var(--space-3);
    max-width: 420px; /* Reduced from 480px */
}

/* Hero Actions removed from content, now on image */

/* Swiss Button Design */
.btn-swiss {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4); /* Reduced from space-3 space-5 */
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--color-black);
    color: var(--color-white);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-swiss::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 80%;
    background: var(--color-white);
    transition: left var(--transition-base);
    z-index: 0;
}

.btn-swiss:hover::before {
    left: 0;
}

.btn-swiss:hover {
    color: var(--color-black);
}

.btn-text,
.btn-arrow {
    color: #ffffff;
    
    position: relative;
    z-index: 1;
}

.btn-arrow {
    font-size: var(--text-lg);
    transition: transform var(--transition-fast);
}

.btn-swiss:hover .btn-arrow {
    transform: translateX(4px);
}

/* Right Column: Image Grid */
.hero-image {
    position: relative;
    width:920px;
    height: 100%;
    display: flex;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* Changed from 4/5 to wider ratio */
    max-height: 500px; /* Cap the height */
    overflow: hidden;
    background: var(--color-gray-lighter);
}

/* Hero Actions Overlay - Positioned on Image */
.hero-actions-overlay {
    background: #a7a7a7;
    position: absolute;
    bottom: var(--space-3);
    right: 0px;
     border-radius: 1px;
    z-index: 20;
    display: flex;
    gap: var(--space-3);
}

.hero-actions-overlay .btn-swiss {
    background: #ea0404f1;
    border-radius: 1px;
    color: var(--color-black);
    height: 30px;
    
    
}

.hero-actions-overlay .btn-swiss::before {
    background: var(--color-red);
}

.hero-actions-overlay .btn-swiss:hover {
    background: var(--color-red);
    
    
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: kenBurnsZoom 12s ease-in-out infinite alternate;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-2%, -2%);
    }
}

/* Pause animation when hovering over hero */
.hero-swiss:hover .image-container img {
    animation-play-state: paused;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.image-label {
    position: absolute;
    bottom: var(--space-3); /* Reduced from space-4 */
    left: var(--space-3); /* Reduced from space-4 */
    background: var(--color-white);
    padding: var(--space-1) var(--space-2); /* Reduced padding */
    display: flex;
    align-items: baseline;
    gap: var(--space-1); /* Reduced from space-2 */
}

.label-number {
    font-family: var(--font-heading);
    font-size: var(--text-lg); /* Reduced from text-xl */
    font-weight: 800;
    color: var(--color-black);
}

.label-text {
    font-size: 10px; /* Smaller for compact look */
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-gray);
}

/* Vertical Text (Classic Swiss Design Element) */
.vertical-text {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-gray-light);
    white-space: nowrap;
}

/* Slide Navigation: Grid-based */
.slide-nav {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(calc(-50% + var(--space-6)));
    display: flex;
    gap: var(--space-1);
}

.slide-btn {
    background: none;
    border: none;
    padding: var(--space-1) var(--space-2); /* Reduced padding */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px; /* Reduced gap */
    transition: all var(--transition-fast);
    position: relative;
}

.slide-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-black);
    transition: width var(--transition-base);
}

.slide-btn.active::before,
.slide-btn:hover::before {
    width: 100%;
}

.slide-num {
    font-family: var(--font-heading);
    font-size: var(--text-base); /* Reduced from text-lg */
    font-weight: 700;
    color: var(--color-gray-light);
    transition: color var(--transition-fast);
}

.slide-btn.active .slide-num,
.slide-btn:hover .slide-num {
    color: var(--color-red);
}

.slide-label {
    font-size: 10px; /* Smaller */
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray);
    transition: color var(--transition-fast);
}

.slide-btn.active .slide-label,
.slide-btn:hover .slide-label {
    color: var(--color-black);
}

/* Responsive slide-nav positioning */
@media (max-width: 768px) {
    .slide-nav {
        left: var(--space-4);
        transform: none;
    }
}

@media (max-width: 480px) {
    .slide-nav {
        left: var(--space-3);
        bottom: var(--space-3);
    }
    
    .slide-btn {
        padding: var(--space-1) var(--space-1);
        gap: 2px;
    }
    
    .slide-num {
        font-size: 11px;
    }
    
    .slide-label {
        font-size: 8px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-16);
    right: var(--space-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.scroll-line {
    width: 2px;
    height: 38px;
    background: var(--color-gray-light);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background: var(--color-red);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { transform: translateY(-24px); }
    50% { transform: translateY(48px); }
}

.scroll-text {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-gray);
    transform: rotate(90deg);
}

/* ====================================
   Experiences Section: Modular Grid
   ==================================== */

.experiences-swiss {
    padding: var(--space-6);
    background: var(--color-off-white);
    position: relative;
}

.experiences-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gutter);
    position: relative;
    
}

/* Section Header: Spans 4 columns */
.section-header {
    grid-column: 1 / 5;
    padding-bottom: var(--space-2);
    padding: var(--space-3);
}


.header-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--color-gray-lighter);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: var(--space-3);
}

.section-title .title-line {
    display: block;
}

.header-description {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-gray);
    max-width: 420px;
}

/* Experience Cards: Each spans 3 columns */
.experience-card {
    grid-column: span 3;
    background: #fafaf9;
      
    padding:10px;
    transition: all var(--transition-base);
    position: relative;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: var(--color-gray-lighter);
    transition: height var(--transition-base);
}

.experience-card:hover {
    border-color: var(--color-gray-lighter);
    transform: translateY(-4px);
}

.experience-card:hover::before {
    height: 100%;
}

.card-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-gray-lighter);
    line-height: 1;
    margin-bottom: var(--space-4);
}

.card-visual {
    margin-bottom: var(--space-1);
}

.visual-icon {
    width: 100px;
    height: 100px;
    padding: 10px 10px 10px;
    color: var(--color-black);
}

.visual-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-black);
    margin-bottom: var(--space-1);
}

.card-description {
    font-size: var(--text-sm);
    line-height: 1.4;
    color: var(--color-gray-dark);
    margin-bottom: var(--space-1);
}

.card-link a {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-black);
    text-decoration: none;
    transition: transform var(--transition-fast);
    display: inline-block;
}

.card-link a:hover {
    transform: translateX(4px);
}

/* Card positioning on grid */
.card-01 { grid-column: 1 / 4; grid-row: 2; }
.card-02 { grid-column: 4 / 7; grid-row: 2; }
.card-03 { grid-column: 7 / 10; grid-row: 2; }
.card-04 { grid-column: 10 / 13; grid-row: 2; }
.card-05 { grid-column: 1 / 4; grid-row: 3; }
.card-06 { grid-column: 4 / 7; grid-row: 3; }
.card-07 { grid-column: 7 / 10; grid-row: 3; }
.card-08 { grid-column: 10 / 13; grid-row: 3; }

/* Grid Lines (Visual element) */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.grid-line {
    position: absolute;
    
}

.grid-line-v {
    width: 1px;
    top: 0;
    bottom: 0;
}

.grid-line-v:nth-of-type(1) { left: 25%; }
.grid-line-v:nth-of-type(2) { left: 50%; }
.grid-line-v:nth-of-type(3) { left: 75%; }

.grid-line-h {
    height: 1px;
    left: 0;
    right: 0;
    top: 50%;
}

/* ====================================
   Responsive Design
   ==================================== */

@media (max-width: 1024px) {
    .hero-swiss {
        height: auto;
        min-height: calc(100vh - 75px); /* Match new nav height */
        max-height: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        color: #cdcfbf;
        gap: var(--space-4);
        padding: var(--space-4);
        padding-bottom: var(--space-12); /* More space for slide nav */
        align-items: start;
    }
    
    .hero-content {
        padding-right: 0;
        padding-top: var(--space-4);
    }
    
    .hero-actions-overlay {
        bottom: var(--space-6);
        right: var(--space-3); /* Changed from left to right */
        left: auto; /* Reset left */
    }
   
    .hero-image {
        max-height: 500px;
    }
      
    .image-container {
        aspect-ratio: 16 / 10;
    }
    
    .vertical-text {
        display: none;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .section-header {
        grid-column: 1 / 7;
    }
    
    .card-01, .card-02, .card-03, .card-04,
    .card-05, .card-06, .card-07, .card-08 {
        grid-column: span 3;
    }
    
    .card-01 { grid-row: 2; }
    .card-02 { grid-row: 2; }
    .card-03 { grid-row: 3; }
    .card-04 { grid-row: 3; }
    .card-05 { grid-row: 4; }
    .card-06 { grid-row: 4; }
    .card-07 { grid-row: 5; }
    .card-08 { grid-row: 5; }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }
    
    /* Mobile Navigation - Smaller */
    .swiss-nav {
        padding: 4px 0;
    }
    
    .nav-grid {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 8px 12px;
    }
    
    .logo-image {
        height: 55px; /* Very compact logo on mobile */
    }
    
    .nav-menu {
        justify-content: flex-start;
        gap: 8px;
        font-size: 12px;
    }
    
    .nav-item {
        font-size: 10px;
        letter-spacing: 0.05em;
    }
    
    /* Mobile Hero - Drastically Reduced & Contained */
    .hero-swiss {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding-top: 48px; /* Match smaller nav */
        overflow-x: hidden;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
        padding-bottom: 48px;
        height: auto;
        max-width: 100%;
        width: 100%;
        margin: 0;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0;
        padding-top: 30px;
        padding-bottom: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-number {
        font-size: 24px; /* Much smaller */
        margin-bottom: 4px;
        line-height: 1;
    }
    
    .hero-category {
        font-size: 8px;
        margin-bottom: 8px;
        letter-spacing: 0.1em;
    }
    
    .hero-title {
        font-size: 13px; /* Reduced by 30%: was 18px, now 13px */
        margin-bottom: 8px;
        line-height: 1.1;
    }
    
    .title-line {
        display: inline; /* Keep on same line to save space */
        margin-right: 4px;
    }
    
    .hero-description {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 12px;
        max-width: 100%;
    }
    
    /* Mobile Image - Very Compact and Contained */
    .hero-image {
        max-height: 235px; /* Increased by 15px: was 220px */
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .image-container {
        aspect-ratio: 16 / 9;
        max-height: 235px; /* Increased by 15px: was 220px */
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .image-container img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .hero-actions-overlay {
        bottom: 12px;
        right: 0px; /* Move to right */
        left: auto; /* Remove left positioning */
    }
    
    .hero-actions-overlay .btn-swiss {
        width: auto; /* Changed from 50% to auto for right alignment */
        justify-content: center;
        padding: 10px 16px;
        margin-bottom: 50px;
        font-size: 9px;
    }
    
    /* Image Label - Smaller */
    .image-label {
        display: none;
        bottom: 12px;
        left: 8px;
        padding: 4px 8px;
    }
    
    .label-number {
        font-size: 14px;
    }
    
    .label-text {
        font-size: 7px;
    }
    
    /* Slide Navigation - Very Compact */
    .slide-nav {
        bottom: 8px;
        left: 8px;
        gap: 2px;
        flex-wrap: wrap;
        max-width: calc(100% - 16px);
    }
    
    .slide-btn {
        padding: 3px 6px;
    }
    
    .slide-num {
        font-size: 11px;
    }
    
    .slide-label {
        font-size: 7px;
    }
    
    /* Hide vertical text on mobile */
    .vertical-text {
        display: none;
    }
    
    /* Scroll Indicator - Hide on Mobile */
    .scroll-indicator {
        display: none;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }
    
    .section-header {
        grid-column: 1 / -1;
        padding-bottom: var(--space-4);
    }
    
    .card-01, .card-02, .card-03, .card-04,
    .card-05, .card-06, .card-07, .card-08 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .grid-lines {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile - Maximum Compactness */footer
    .logo-image {
        height: 65px;
        padding-top: 10px;
        margin-left: 15px;
    }
    .footer-container {
    max-width: 400px;
    padding: var(--space-10) var(--space-4) var(--space-10) var(--space-4); /* Reduced bottom padding */
}

    
    .nav-grid {
        padding: 18px 32px;
        height: 73px;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 0;
    }

    /* Hide desktop menu, show hamburger */
    .nav-menu {
        display: none;
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 999;
        border-top: 1px solid var(--color-gray-lighter);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 14px 24px;
        font-size: 11px;
        letter-spacing: 0.1em;
        border-bottom: 1px solid var(--color-gray-lighter);
        color: var(--color-gray-dark);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item::after {
        display: none;
    }

    /* Hamburger button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        align-items: flex-end;
        flex-shrink: 0;
    }

    .ham-line {
        display: block;
        height: 2px;
        background: var(--color-near-black);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .ham-line:nth-child(1) { width: 22px; }
    .ham-line:nth-child(2) { width: 16px; }
    .ham-line:nth-child(3) { width: 22px; }

    /* Animate to X when open */
    .hamburger.open .ham-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        width: 22px;
    }
    .hamburger.open .ham-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hamburger.open .ham-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        width: 22px;
    }

    .hero-swiss {
        padding-top: 42px;
    }
    
    .hero-grid {
        padding: 35px;
        padding-bottom: 55px;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .hero-number {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .hero-category {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .hero-title {
        font-size: 5px; /* Reduced by 30%: was 15px, now 11px */
        margin-bottom: 6px;
    }
    
    .hero-description {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .hero-image {
        max-height: 195px; /* Increased by 15px: was 180px */
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .image-container {
        max-height: 195px; /* Increased by 15px: was 180px */
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-actions-overlay {
        bottom: 8px;
        right: 0px;
        left: auto;
    }
    
    .hero-actions-overlay .btn-swiss {
        font-size: 6px;
        padding: 8px 12px;
        width:90px;
        position: right;
        margin-bottom: 1px;
    }
    
    .slide-nav {
        bottom: 6px;
        left: 29px;
        gap: 1px;
    }
    
    .slide-btn {
        padding: 2px 4px;
    }
    
    .slide-num {
        font-size: 10px;
    }
    
    .slide-label {
        font-size: 10px;
    }
    
    .image-label {
        display: none;
        padding: 3px 6px;
        bottom: 8px;
        left: 6px;
    }
    
    .label-number {
        font-size: 12px;
    }
    
    .label-text {
        font-size: 6px;
    }
    .experiences-swiss {
    padding: var(--space-5) var(--space-3);
    background: var(--color-off-white);
    position: relative;
}
}
/* ====================================
   Partners Section - Swiss Design Carousel
   ==================================== */

.partners-swiss {
    padding: var(--space-16) 0;
    background: var(--color-off-white);
    overflow: hidden;
}

.partners-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Partners Header */
.partners-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-8);
}

.partners-header-left {
    max-width: 600px;
}

.partners-number {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--color-gray-lighter);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.partners-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: var(--space-3);
}

.partners-title .title-line {
    display: block;
}

.partners-subtitle {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-gray);
    margin: 0;
}

/* Carousel Container */
.carousel-container {
    overflow: hidden;
    margin-bottom: var(--space-6);
    position: relative;
}

.carousel-track {
    display: flex;
    gap: var(--grid-gutter);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Partner Items */
.partner-item {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 visible on desktop */
    background: var(--color-white);
    border: 1px solid var(--color-gray-lighter);
    transition: all var(--transition-base);
}

.partner-item:hover {
    border-color: var(--color-gray-lighter);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(183, 179, 179, 0.12);
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;

    transition: height var(--transition-base);
}

.partner-item:hover::before {
    height: 100%;
}

/* Partner Image */
.partner-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-gray-lighter);
}

.partner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item:hover .partner-img {
    transform: scale(1.08);
}

.partner-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--color-white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

/* Partner Info */
.partner-info {
    padding: var(--space-5);
}

.partner-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-black);
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.partner-brief {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Carousel Indicators */
.carousel-indicators {

    display: none;
    position: relative;
    justify-content: center;
    gap: 8px;
    align-items: center;
    margin-top: var(--space-4);
}

.indicator {
    width: 10px;
    height: 10px;
    background: var(--color-gray-light);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    flex-shrink: 0;
}

.indicator:hover {
    background: var(--color-gray);
}

.indicator.active {
    width: 36px;
    height: 10px;
    background: #e8630a;
    border-radius: 5px;
}

/* ====================================
   Carousel Navigation Arrows
   ==================================== */

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--color-red);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(10, 77, 78, 0.2);
}

.carousel-nav:hover {
    background: #7b1515;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(10, 77, 78, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Hide navigation on mobile */
/* ====================================
   Partners Responsive
   ==================================== */

@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
        .carousel-prev {
    left: 10px;
}
}

@media (max-width: 480px) {
    .carousel-nav {
        display:none;
        width: 10px;
        height: 10px;
        left: 8px;
        right: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    .carousel-prev {
    left: 8px;
}

}
@media (max-width: 1024px) {
    .partner-item {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    
    .partners-header {
        flex-direction: column;
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .partners-swiss {
        padding: var(--space-12) 0;
    }
    
    .partners-container {
        padding: 0 var(--space-3);
    }
    
    .partners-number {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-1);
    }
    
    .partners-title {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-2);
    }
    
    .partners-subtitle {
        font-size: var(--text-xs);
    }
    
    .partners-header {
        margin-bottom: var(--space-6);
    }
    
    .partner-item {
        flex: 0 0 100%;
    }
    
    .partner-badge {
        width: 40px;
        height: 40px;
        font-size: var(--text-sm);
    }
    
    .partner-info {
        padding: var(--space-3);
    }
    
    .partner-name {
        font-size: var(--text-base);
        margin-bottom: var(--space-2);
    }
    
    .partner-brief {
        font-size: var(--text-xs);
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .partners-swiss {
        padding: var(--space-8) 0;
    }
    
    .partners-container {
        padding: 0 var(--space-2);
    }
    
    .partners-number {
        font-size: var(--text-2xl);
    }
    
    .partners-title {
        font-size: var(--text-xl);
    }
    
    .partners-header {
        margin-bottom: var(--space-4);
    }
    
    
    .partner-badge {
        width: 32px;
        height: 32px;
        font-size: var(--text-xs);
        top: var(--space-2);
        right: var(--space-2);
    }
    
    .partner-info {
        padding: var(--space-2);
    }
    
    .partner-name {
        font-size: var(--text-sm);
        margin-bottom: var(--space-1);
    }
    
    .partner-brief {
        font-size: 10px;
        line-height: 1.5;
      -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    }
    
    .carousel-indicators {
         display: flex;
    position: relative;
    justify-content: center;
        gap: 30px; /* Increased from 6px to 12px for better spacing */
    }
    
    .indicator {
        width: 10px; /* Slightly larger for easier tapping */
        height: 10px;
        border-radius: 3px;
    }
    
    .indicator.active {
        width: 32px; /* Slightly larger active indicator */
        height: 10px;
        border-radius: 5px;
    }
 
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */

.testimonials-section {
  
    
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    padding: var(--space-8) var(--space-4); /* Reduced from space-12 */
    position: relative;
    overflow: hidden;
    margin-top: 0;
    
}

/* Dark overlay so image shows at ~50% visibility */
.testimonials-section::before {
      content: "";
    position: absolute;
    inset: 0;
    
}

.testimonials-section > * {
    position: relative;
    z-index: 1;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-header {
    margin-bottom: var(--space-6); /* Reduced from space-10 */
}

.testimonials-header .header-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 900;
    color: rgba(255,255,255,0.516);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: var(--space-3);
}

.testimonials-title .title-line {
    display: block;
}

.testimonials-subtitle {
    font-size: var(--text-sm);
    color: rgba(2, 2, 2, 0.5);
    line-height: 1.6;
}

/* Carousel wrapper */
.testi-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.testi-carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual slide */
.testi-slide {
    flex: 0 0 100%;
    background-image: url('../images/bg.jpg');
    display: grid;
    grid-template-columns: 320px 11fr;
    gap: var(--space-6); /* Reduced from space-8 */
    align-items: center;
    padding: var(--space-3); /* Reduced from space-4 */
   
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    min-height: 220px; /* Reduced from 260px */
}

/* Photo side */
.testi-photo-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testi-photo {
    width: 140px; /* Reduced from 160px */
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(120, 117, 117, 0.6);
    filter: grayscale(20%);
    display: block;
}

.testi-quote-mark {
    position: absolute;
    top: -20px;
    left: 10px;
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 1;
    color: var(--color-red);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

/* Content side */
.testi-content {
    padding: var(--space-2) 0;
}

.testi-stars {
    color: #f0b429;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
}

.testi-text {
    font-family: var(--font-body);
    font-size: var(--text-sm); /* Reduced from text-base */
    line-height: 1.6; /* Reduced from 1.8 */
    color: rgba(0, 0, 0, 0.82);
    font-style: italic;
    margin-bottom: var(--space-3); /* Reduced from space-5 */
    quotes: none;
}

.testi-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-black);
    margin-bottom: 4px;
}

.testi-country {
    font-size: var(--text-sm);
    color: rgba(0, 0, 0, 0.45);
    letter-spacing: 0.08em;
}

/* Prev / Next Buttons */
.testi-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 10;
}

.testi-btn:hover {
    background: var(--color-red);
    border-color: var(--color-red);
}

.testi-prev { left: 16px; }
.testi-next { right: 16px; }

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-6);
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(222, 219, 219, 0.8);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    display: block;
}

.testi-dot.active {
    background: var(--color-red);
    width: 28px;
    border-radius: 4px;
}

.testi-dot:hover {
    background: rgba(255,255,255,0.5);
}

/* Testimonials responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: var(--space-6) var(--space-3); /* More compact */
    }
    
    .testimonials-header {
        margin-bottom: var(--space-4); /* Reduced */
    }
    
    .testimonials-header .header-number {
        font-size: var(--text-2xl); /* Smaller */
        margin-bottom: var(--space-1);
    }
    
    .testimonials-title {
        font-size: var(--text-xl); /* Smaller */
        margin-bottom: var(--space-2);
    }
    
    .testimonials-subtitle {
        font-size: var(--text-xs); /* Smaller */
    }
    
    .testi-slide {
        grid-template-columns: 1fr;
        gap: var(--space-3); /* Reduced from space-5 */
        padding: var(--space-4) var(--space-3); /* Reduced padding */
        text-align: center;
        min-height: auto; /* Remove min-height */
    }

    .testi-photo-wrap {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: var(--space-2); /* Reduced from space-4 */
    }

    .testi-photo {
        width: 80px; /* Reduced from 100px */
        height: 80px;
    }

    .testi-quote-mark {
        position: static;
        font-size: 50px; /* Reduced from 60px */
    }
    
    .testi-text {
        font-size: 13px; /* Smaller for mobile */
        line-height: 1.5;
        margin-bottom: var(--space-2);
    }
    
    .testi-stars {
        font-size: 14px; /* Smaller */
        margin-bottom: var(--space-2);
    }
    
    .testi-name {
        font-size: var(--text-sm); /* Smaller */
    }
    
    .testi-location {
        font-size: 11px; /* Smaller */
    }

    .testi-btn {
        width: 36px;
        height: 36px;
    }
    .testi-prev { left: 6px; }
    .testi-next { right: 6px; }
}

/* =====================================================
   ABOUT US SECTION
   ===================================================== */

.about-us-section {
    background: var(--color-white);
    padding: var(--space-12) var(--space-4);
    border-top: 1px solid var(--color-gray-lighter);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr; /* Asymmetric Swiss grid ratio */
    gap: var(--space-10);
    align-items: center;
}

/* Photo Column */
.about-photo {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;

    
    
}

.about-img {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    margin: 0 auto;
    display: block;
   
}


.about-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Content Column */
.about-content {
    padding: var(--space-4) 0;
}

.about-number {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--color-gray-lighter);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.about-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: var(--space-5);
}

.about-title .title-line {
    display: block;
}

.about-text {
    font-size: var(--text-base);
    line-height: 1.4;
    color: var(--color-gray-dark);
}

.about-text p {
    margin-bottom: var(--space-4);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-signature {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-teal);
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 2px solid var(--color-gray-lighter);
}

/* Show Read More button on ALL screens including desktop */
.about-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
    background: #aca9a9;;
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-read-more:hover {
    background: #ea1515;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 77, 78, 0.3);
}

.read-more-icon {
    transition: transform 0.3s ease;
}

/* Rotate icon when expanded */
.about-read-more[aria-expanded="true"] .read-more-icon {
    transform: rotate(180deg);
}

/* Hide paragraphs 3, 4, 5 initially on ALL screens */
.about-para-hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Show all paragraphs when expanded */
.about-text.expanded .about-para-hidden {
    display: block;
    opacity: 1;
    max-height: 1000px;
    margin-bottom: var(--space-4);
}

/* Always show visible paragraphs */
.about-para-visible {
    display: block;
}

/* About Us Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .about-image-wrapper {
        aspect-ratio: 16 / 10;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: var(--space-10) var(--space-3);
    }
    
    .about-container {
        gap: var(--space-5);
    }
    
    .about-number {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-1);
    }
    
    .about-title {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-4);
    }
    
    .about-text {
        font-size: var(--text-sm);
        line-height: 1.4;
    }
    
    .about-text p {
        margin-bottom: var(--space-3);
    }
    
    .about-signature {
        font-size: var(--text-sm);
        margin-top: var(--space-4);
        padding-top: var(--space-3);
    }
    
    .about-image-wrapper {
        aspect-ratio: 16 / 9;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: var(--space-8) var(--space-2);
    }
    
    .about-number {
        font-size: var(--text-2xl);
    }
    
    .about-title {
        font-size: var(--text-xl);
        margin-bottom: var(--space-3);
    }
    
    .about-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .about-text p {
        margin-bottom: var(--space-2);
    }
    
    /* Smaller button on mobile */
    .about-read-more {
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    .about-signature {
        font-size: 13px;
    }
    
    .about-image-wrapper {
        max-height: 500px;
    }
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-section {
    background: var(--color-off-white);
    padding: var(--space-16) var(--space-4);
    border-top: 1px solid var(--color-gray-lighter);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-2);
    align-items: start;
    
}

/* Info column */
.contact-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-red);
    margin-bottom: var(--space-2);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: var(--space-4);
}

.contact-title span {
    display: block;
}

.contact-tagline {
    font-size: var(--text-sm);
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 360px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0; /* Remove gap since no icon */
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    background: var(--color-near-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    border-radius: 2px;
}

.contact-detail-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gray);
    margin-bottom: 3px;
    text-align: left; /* Ensure left alignment */
}

.contact-detail-value {
    font-size: var(--text-sm);
    color: var(--color-near-black);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-value:hover {
    color: var(--color-red);
}

.contact-socials {
    padding-top: var(--space-4);
    
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
    align-items: center;
}

.social-link {
    display: flex;
    align-items: lef;
    gap: 6px;
    padding: 8px 14px;
    color: var(--color-gray);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.social-link:hover {
    background: var(--color-near-red);
    color: var(--color-grey-dark);
    border-radius: 5px;
    border-color: var(--color-near-grey);
}

/* Form column */
.contact-form-wrap {
    background: var(--color-white);
    border: 1px solid var(--color-gray-lighter);
    border-radius: 10px;
    padding: var(--space-8);
}

.form-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-black);
    margin-bottom: var(--space-1);
}

.form-subtitle {
    font-size: var(--text-xs);
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-gray);
}

.form-input {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-near-black);
    background: var(--color-off-white);
    border: 1px solid var(--color-gray-lighter);
    padding: 12px 16px;
    border-radius: 2px;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--color-near-black);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-input::placeholder {
    color: var(--color-gray-light);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 14px var(--space-6);
    background: var(--color-near-black);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-red);
    transition: left var(--transition-base);
    z-index: 0;
}

.form-submit:hover::before {
    left: 0;
}

.form-submit .btn-text,
.form-submit .btn-arrow {
    position: relative;
    z-index: 1;
}

.form-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-success {
    padding: var(--space-3);
    background: #e6f7f0;
    border: 1px solid #52c41a;
    color: #389e0d;
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: 2px;
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .contact-tagline {
        max-width: 100%;
    }
    
    /* Left align contact info section */
    .contact-info {
        text-align: left;
    }
    
    .contact-label {
        text-align: left;
    }
    
    .contact-title {
        text-align: left;
    }
    
    .contact-tagline {
        text-align: left;
    }
    
    .contact-details {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--space-10) var(--space-3);
        text-align: left; /* Changed from center to left */
    }
    
    .contact-container {
        text-align: left; /* Changed from center to left */
    }
    
    .contact-info {
        text-align: left; /* Changed from center to left */
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Changed from center to flex-start */
    }
    
    .contact-label {
        text-align: left; /* Changed from center to left */
    }
    
    .contact-title {
        font-size: var(--text-xl);
        text-align: left; /* Changed from center to left */
    }
    
    .contact-tagline {
        max-width: 100%;
        text-align: left; /* Changed from center to left */
    }
    
    .contact-details {
        align-items: flex-start; /* Changed from center to flex-start */
        width: 100%;
    }
    
    .contact-detail-item {
        justify-content: flex-start; /* Changed from center to flex-start */
        text-align: left; /* Changed from center to left */
        flex-direction: row; /* Changed from column to row */
        align-items: flex-start; /* Changed from center to flex-start */
    }
    
    .contact-detail-content {
        text-align: left; /* Changed from center to left */
    }
    
    .contact-detail-label {
        text-align: left; /* Changed from center to left */
    }
    
    .contact-socials {
        justify-content: center; /* Center social icons */
    }

    .contact-form-wrap {
        padding: var(--space-5);
        border-radius: 20px;
    }
    
    /* Center the form header */
    .contact-form-wrap .contact-title {
        text-align: center;
    }
    
    .contact-form-wrap .contact-tagline {
        text-align: center;
    }

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

@media (max-width: 480px) {
    
    .testi-slide {
        grid-template-columns: 1fr;
        gap: var(--space-2); /* Further reduced from space-3 */
        padding: var(--space-2) var(--space-1); /* More compact padding */
        text-align: center;
        min-height: auto;
    }
}

      .contact-socials {
        align-items: left; /* Center social icons */
    }
    
.contact-detail-label {
        text-align: left;
    }
    
    .testimonials-section {
  
    
    background-size: cover;
    border-radius: 10px;
    background-position: center center;
    background-attachment: scroll;
    padding: var(--space-8) var(--space-4); /* Reduced from space-12 */
    position: relative;
    overflow: hidden;
    margin-top: 0;
    
}
    .contact-section {
        padding: var(--space-8) var(--space-2);
    }
    
    .contact-info,
    .contact-form-wrap {
        padding: var(--space-3);
        border-radius: 10px;
      
    }
    
    /* Ensure everything is centered */
    .contact-label,
    .contact-title,
    .contact-tagline,
    .contact-detail-label,
    .contact-detail-value {
        text-align: left;
    }
    
    .contact-form-wrap .contact-title,
    .contact-form-wrap .contact-tagline {
        text-align: center;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    background: #ffffff;

  
    font-size: var(--text-sm);
     border-radius: 10px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-4) var(--space-8) var(--space-4); /* Reduced bottom padding */
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: var(--space-6);
    padding-bottom: var(--space-2); /* Further reduced */
    border-bottom: 1px solid rgba(211, 114, 114, 0.08);
    margin-bottom: var(--space-2); /* Further reduced */
}

.footer-logo {
    height: 76px;
    width: auto;
    display: block;
    margin-bottom: var(--space-3);
    filter: brightness(01)  opacity(1.100);
}

/* 19th Anniversary Badge with Star Glow */
.anniversary-badge {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-3);
}

.anniversary-logo {
    position: relative;
    z-index: 2;
    animation: anniversaryPulse 3s ease-in-out infinite;
}

/* Star Glow Effect */
.star-glow {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.9) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

.star-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(3px);
}

/* Star positions and animations */
.star-glow-1 {
    top: 15%;
    right: 20%;
    animation: starTwinkle 2s ease-in-out infinite;
}

.star-glow-2 {
    top: 25%;
    right: 10%;
    animation: starTwinkle 2.5s ease-in-out 0.5s infinite;
}

.star-glow-3 {
    top: 40%;
    right: 15%;
    animation: starTwinkle 3s ease-in-out 1s infinite;
}

/* Animations */
@keyframes starTwinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(2.5);
    }
}

@keyframes anniversaryPulse {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 0px rgba(255, 215, 0, 0));
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(238, 230, 0, 0.904));
    }
}

/* Sparkle Spray Effect */
.sparkle {
    position: absolute;
    width: 10px;
    height: 15px;
    background: radial-gradient(circle, rgb(255, 94, 0) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
}

.sparkle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(1px);
}

/* Sparkle positions - spray pattern around badge */
.sparkle-1 {
    top: 10%;
    right: 25%;
    animation: sparkleFloat 2.5s ease-in-out infinite;
}

.sparkle-2 {
    top: 20%;
    right: 15%;
    animation: sparkleFloat 2s ease-in-out 0.3s infinite;
}

.sparkle-3 {
    top: 30%;
    right: 30%;
    animation: sparkleFloat 2.8s ease-in-out 0.6s infinite;
}

.sparkle-4 {
    top: 35%;
    right: 10%;
    animation: sparkleFloat 2.3s ease-in-out 0.9s infinite;
}

.sparkle-5 {
    top: 45%;
    right: 20%;
    animation: sparkleFloat 2.6s ease-in-out 1.2s infinite;
}

.sparkle-6 {
    top: 15%;
    right: 35%;
    animation: sparkleFloat 2.4s ease-in-out 0.4s infinite;
}

.sparkle-7 {
    top: 25%;
    right: 5%;
    animation: sparkleFloat 2.7s ease-in-out 0.7s infinite;
}

.sparkle-8 {
    top: 40%;
    right: 28%;
    animation: sparkleFloat 2.2s ease-in-out 1s infinite;
}

/* Animations */
@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.3);
    }
}

@keyframes anniversaryPulse {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 0px rgba(255, 215, 0, 0));
    }
    50% {
        filter: brightness(1.05) drop-shadow(0 0 8px rgba(255, 215, 0, 0.2));
    }
}

.footer-tagline {
    font-size: var(--text-xs);
    font-family: var(--font-heading);
    line-height: 1.7;
    color: rgba(45, 45, 45, 0.65);
    max-width: 280px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.footer-col-title {
    display: none;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(45, 45, 45, 0.65);
    margin-bottom: var(--space-3);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-list li a {
    
    color: rgba(45, 45, 45, 0.65);
    text-decoration: none;
    font-size: var(--text-xs);
    letter-spacing: 0.04em;
    transition: color var(--transition-fast);
    line-height: 1.5;
}

.footer-list li a:hover {
    color: var(--color-red);
}

/* Footer bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
    font-size: 10px;
    color: rgba(49, 47, 47, 0.6);
}

.footer-copy {
    letter-spacing: 0.04em;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-legal a {
    color: rgba(54, 54, 54, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-divider {
    color: rgba(255,255,255,0.15);
}

.footer-made {
    padding-top: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(37, 37, 37, 0.6);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center; /* Center all footer content */
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center logo and tagline */
    }
    
    .footer-tagline {
        text-align: center;
        max-width: 100%;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
        text-align: center; /* Center footer links */
    }
    
    .footer-list {
        align-items: center; /* Center list items */
    }
    
    /* Center social media section */
    .contact-socials {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-detail-label {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center; /* Center bottom content */
        text-align: center;
        gap: var(--space-2);
    }
    
    .footer-copy {
        text-align: center;
    }
    
    .footer-made {
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center; /* Center legal links */
    }
}

@media (max-width: 480px) {
    .footer-links-group {
        
        grid-template-columns: 1fr;
        padding-top: 5px;
        gap: var(--space-4);
        text-align: center; /* Center single column */
    }
    
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: var(--space-4) var(--space-4) var(--space-5) var(--space-4);
    }
     .footer-brand {
      background-image: url('images/19th.PNG');
        display: flex;
        flex-direction: column;
        align-items: left; /* Center logo and tagline */
    }
     .contact-socials {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    .footer-list {
        display:none;
    list-style: none;
    gap: var(--space-2);
}

    
    /* Ensure everything is centered on small screens */
    .footer-top,
    .footer-tagline,
    
    .footer-list,
    
    .social-links,
    .footer-bottom,
    .footer-copy,
    .footer-made,
    .footer-legal {
        text-align: center;
    }
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-near-black);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Increased z-index to be above everything */
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, visibility 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #e8630a;
    border-color: #e8630a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232,99,10,0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* =====================================================
   19TH ANNIVERSARY SPLASH ANIMATION
   ===================================================== */

.anniversary-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.anniversary-splash.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: splashZoomIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.splash-image-wrapper {
    margin-bottom: var(--space-4);
    animation: splashFloat 3s ease-in-out infinite;
}

.splash-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(135, 146, 147, 0.15));
}

.splash-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 50;
    letter-spacing: 0.05em;
    color: var(--color-gray);
    opacity: 0;
    animation: splashTextFadeIn 0.6s ease 0.8s forwards;
    margin-bottom: var(--space-2);
}

/* Countdown Timer */
.splash-timer {
    margin-top: var(--space-6);
    opacity: 0;
    animation: splashTextFadeIn 0.6s ease 1.2s forwards;
}

.timer-circle {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-2);
}

.timer-circle svg {
    transform: rotate(-90deg);
}

.timer-progress {
    stroke-dasharray: 163.36; /* 2 * π * 26 */
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.timer-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: var(--text-1xl);
    font-weight: 300;
    color: var(--color-gray-light);
}

.timer-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-gray);
    text-align: center;
    cursor: pointer;
}

/* Tap cursor hint */
.anniversary-splash {
    cursor: pointer;
}

/* Animations */
@keyframes splashZoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes splashFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes splashTextFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive splash */
@media (max-width: 768px) {
    .splash-image {
        max-width: 220px;
        width: 70%;
    }
    
    .splash-text {
        font-size: var(--text-sm);
        padding: 0 var(--space-3);
    }
}

@media (max-width: 480px) {
    .splash-image {
        max-width: 180px;
        width: 65%;
    }
    
    .splash-text {
        font-size: var(--text-xs);
        padding: 0 var(--space-2);
    }
}

/* =====================================================
   CUSTOMER GALLERY SLIDESHOW
   ===================================================== */

.customer-gallery-wrap {
    
    border-radius: 4px;
    padding: 15px;
    
}

.gallery-header {
    margin-bottom: var(--space-5);
    text-align: center;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
   
    color: var(--color-black);
    margin-bottom: var(--space-2);
}

.gallery-subtitle {
    font-size: var(--text-sm);
    color: var(--color-gray);
    font-weight: 400;
}

.gallery-slider {
    position: relative;
    width: 100%;
    margin-bottom: var(--space-5);
}

.gallery-slides-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-light-gray);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: var(--space-4);
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aca9a9;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dot:hover {
    background: #d0d0d0;
}

.gallery-dot.active {
      background: var(--color-red);
 
    transform: scale(1.2);
}

.enquiry-button {
    width: 80%;
    background: #b2b1b1;
    color: var(--color-white);
    border: none;
    padding: var(--space-2) var(--space-2);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all 0.3s ease;
}

.enquiry-button:hover {
    background: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 77, 78, 0.2);
}

.enquiry-button .btn-icon {
    transition: transform 0.3s ease;
}

.enquiry-button:hover .btn-icon {
    transform: translateX(4px);
}

/* =====================================================
   CONTACT FORM MODAL
   ===================================================== */

.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: 8px;
    padding: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-light-gray);
    color: var(--color-black);
    transform: rotate(90deg);
}

.modal-form-wrap {
    padding: var(--space-7);
}

.modal-form-wrap .contact-form-header {
    margin-bottom: var(--space-5);
}

/* Responsive Gallery & Modal */
@media (max-width: 1024px) {
    .customer-gallery-wrap {
        padding: var(--space-5);
    }
    
    .gallery-title {
        font-size: var(--text-xl);
    }
    
    .modal-form-wrap {
        padding: var(--space-6);
    }
}

@media (max-width: 768px) {
    .customer-gallery-wrap {
        padding: var(--space-4);
    }
    
    .gallery-header {
        margin-bottom: var(--space-4);
    }
    
    .gallery-title {
        font-size: var(--text-lg);
    }
    
    .gallery-subtitle {
        font-size: var(--text-xs);
    }
    
    .gallery-dots {
        gap: 10px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
    
    .enquiry-button {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-form-wrap {
        padding: var(--space-5);
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-slides-container {
        aspect-ratio: 4 / 3;
    }
    
    .gallery-title {
      font-size: var(--text-xl);
    }
    
    .gallery-dots {
        gap: 8px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
    }
    
    .enquiry-button {
        padding: 14px var(--space-3);
        font-size: 13px;
    }
    
    .modal-form-wrap {
        padding: var(--space-4);
    }
}
.footer-link {
    color: inherit;          /* Uses the same color as surrounding text */
    text-decoration: none;   /* Removes the underline */
}

.footer-link:hover {
    text-decoration: none;   /* Keeps underline off on hover */
    color: inherit;
    cursor: pointer;         /* Still shows it's clickable */
}