/* ==========================================================================
   Pegasus Auto - Premium Unified Typography & Design Language System
   Target Path: /style.css
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght=300;400;500;600;700;800&display=swap');

:root {
    --primary: #FFFFFF;
    --accent: #5B21B6;
    --accent-hover: #4C1D95;
    --accent-light: #8B5CF6;
    --accent-soft: #F5F3FF;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --border-color: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-premium: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 20px 40px -15px rgba(91, 33, 182, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Midnight-purple extended palette */
    --midnight-900: #0D0B21;
    --midnight-800: #1E1B4B;
    --midnight-700: #2C2768;
    --midnight-600: #372F8C;
    --midnight-glow: rgba(139, 92, 246, 0.35);

    /* Warm metallic accent that pairs with the midnight-purple family */
    --gold: #C9A227;
    --gold-light: #E4C766;
    --gold-soft: #FBF3DC;
}

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

html {
    /* CRITICAL FIX: Forces the vertical scrollbar to remain active on short pages. */
    /* This stops the page layout from jumping and shifting horizontally across tabs. */
    overflow-y: scroll; 
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Header Navigation & Identity Layout (Strict Dimension Lock System)
   ========================================================================== */
.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Rigid, static height mapping to prevent jumping metrics */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-smooth);
}

/* Force the navigation container tracking grids to remain uniform */
.premium-navbar .container.nav-flex {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 24px !important;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1 !important;
    white-space: nowrap;
    
    /* Standard block flex layout that natively respects internal image margins */
    display: flex !important;
    align-items: center !important;
    gap: 0px !important; 
}

.brand-logo span {
    color: var(--accent);
}

.logo-image {
    height: 105px !important; /* Your custom bold height */
    width: auto !important;   
    object-fit: contain;
    transition: var(--transition-smooth);
    
    /* Your active canvas offsets to neutralize image whitespace padding */
    margin-left: -90px !important;
    margin-right: -55px !important; 
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    white-space: nowrap;
}

.nav-item {
    font-size: 15px !important;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-item:hover, .nav-item.active {
    color: var(--accent);
}

.lang-selector {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Professional Language Switcher (replaces the plain native <select>)
   ========================================================================== */
.lang-switcher {
    position: relative;
}

.lang-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-soft);
    border: 1px solid rgba(91, 33, 182, 0.15);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.lang-switcher-toggle:hover {
    background: rgba(91, 33, 182, 0.14);
}

.lang-switcher-toggle svg {
    transition: var(--transition-smooth);
}

.lang-switcher.is-open .lang-switcher-toggle svg {
    transform: rotate(180deg);
}

.lang-switcher.is-open .lang-switcher-toggle {
    background: var(--accent);
    color: #fff;
}

.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    background: var(--primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition-smooth);
    z-index: 1200;
}

.lang-switcher.is-open .lang-switcher-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.lang-switcher-option:hover {
    background: var(--bg-light);
}

.lang-switcher-option.active {
    background: var(--accent-soft);
    color: var(--accent);
}

.lang-switcher-code {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 2px 7px;
    border-radius: 999px;
}

.lang-switcher-option.active .lang-switcher-code {
    color: var(--accent);
    background: rgba(91, 33, 182, 0.12);
}

/* Uniform Scrolled Mutation Layer */
.navbar-scrolled {
    box-shadow: var(--shadow-premium);
    background: rgba(255, 255, 255, 0.98);
}

/* Modern Action Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(91, 33, 182, 0.2);
}

.btn-premium:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   Mobile Menu UI & Toggle Animations Add-on
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Transforms mobile bars into an 'X' */
.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Luxury Showcase Layouts */
.hero-showcase {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background: linear-gradient(rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.6)), url('Photos/amg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.hero-wrapper {
    max-width: 800px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.section-spacer {
    padding: 120px 0;
}

/* Homepage hero title/subtitle — extracted from inline styles so they can
   scale down properly on smaller screens. */
.hero-index-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-index-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #cbd5e1;
}

/* Standardized Content Offset under the 80px fixed bar on internal subpages */
section.section-spacer {
    padding-top: 140px;
}

/* Reset home page elements padding from overlapping top offset spacing rules */
.hero-showcase + .section-spacer,
#consultation.section-spacer {
    padding-top: 120px;
}

.bg-slate {
    background-color: var(--bg-light);
}

.section-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-main-title {
    font-size: 40px;
    color: var(--text-dark);
}

/* ==========================================================================
   Colored Page Hero Band (about / contact / catalogue intros)
   Replaces the plain white header block with a midnight-purple gradient
   ========================================================================== */
.page-hero-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, var(--midnight-glow), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201, 162, 39, 0.18), transparent 40%),
        linear-gradient(135deg, var(--midnight-900) 0%, var(--midnight-800) 55%, var(--midnight-700) 100%);
    color: #fff;
    padding: 150px 0 90px;
    text-align: center;
}

.page-hero-band .section-badge {
    color: var(--gold-light);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.35);
    padding: 6px 16px;
    border-radius: 999px;
}

.page-hero-band .section-main-title {
    color: #fff;
    margin-top: 16px;
}

.page-hero-band .page-hero-subtitle {
    max-width: 620px;
    margin: 20px auto 0;
    color: rgba(226, 232, 240, 0.8);
    font-size: 16px;
}

/* Pull page content up to slightly overlap the hero band for a layered feel */
.page-body-offset {
    padding-top: 70px !important;
}

/* ==========================================================================
   Value / Feature Cards (About page)
   ========================================================================== */
.value-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.value-card {
    background: var(--primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    text-align: left;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(91, 33, 182, 0.25);
}

.value-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--midnight-700));
    color: #fff;
    margin-bottom: 20px;
    font-size: 22px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Stat strip used under the about hero */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 44px auto 0;
}

.stat-strip .stat-node {
    text-align: center;
}

.stat-strip .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.stat-strip .stat-label {
    font-size: 12px;
    color: rgba(226, 232, 240, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Contact Page — colored info cards
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    text-align: left;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card .contact-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px;
}

.contact-info-card h4 {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-info-card p {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

/* ==========================================================================
   About Page — "Why Choose Us" band + closing tagline banner
   ========================================================================== */
.why-us-band {
    background: var(--accent-soft);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    margin-top: 80px;
}

.why-us-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-us-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-us-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
}

.why-us-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.why-us-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.closing-tagline-banner {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 30%, var(--midnight-glow), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.18), transparent 45%),
        linear-gradient(135deg, var(--midnight-900), var(--midnight-800));
}

.closing-tagline-banner p {
    position: relative;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto;
}

.closing-tagline-banner p span {
    color: var(--gold-light);
}

/* Strategic Interactive Catalogue Grid Setup */
.catalogue-workspace-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.catalogue-page-body {
    background:
        radial-gradient(circle at 8% 0%, var(--accent-soft), transparent 40%),
        radial-gradient(circle at 95% 15%, var(--gold-soft), transparent 35%),
        var(--bg-light);
}

.filter-sidebar-card {
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    position: sticky;
    top: 120px;
}

.filter-heading-node {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #fff;
    margin: 0;
    padding: 22px 28px;
    background: linear-gradient(135deg, var(--midnight-800), var(--midnight-700));
}

.filter-heading-node .filter-count-pill {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.filter-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.filter-field-label svg {
    color: var(--accent);
    flex-shrink: 0;
}

.filter-sidebar-card .form-input-control,
.filter-sidebar-card select.form-input-control {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

/* Custom select arrow so dropdowns match the input styling */
.filter-sidebar-card select.form-input-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%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;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.price-range-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.filter-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.btn-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-filter-reset:hover {
    background: var(--border-color);
}

.filter-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.catalog-grid-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicle-card-node {
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
}

.vehicle-card-node::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    z-index: 2;
}

.vehicle-card-node:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(91, 33, 182, 0.2);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--border-color);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.vehicle-card-node:hover .card-img-wrapper img {
    transform: scale(1.04);
}

.card-price-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--midnight-800), var(--midnight-700));
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: var(--gold-light);
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.card-content-body {
    padding: 24px;
}

.card-meta-title {
    font-size: 20px;
    margin-bottom: 16px;
}

.card-specs-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.spec-inline-item {
    font-size: 13px;
    color: var(--text-muted);
}

.spec-inline-item strong {
    color: var(--text-dark);
}

/* Strategic Timelines & Process Layouts */
.process-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step-node {
    padding: 32px 24px;
    background: var(--primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
}

.step-numeric-badge {
    font-size: 40px;
    font-weight: 800;
    color: rgba(91, 33, 182, 0.1);
    line-height: 1;
    margin-bottom: 12px;
}

/* Corporate Form Structures */
.lead-capture-container {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-width: 550px;
    margin: 0 auto;
}

.form-group-block {
    margin-bottom: 20px;
}

.form-group-block label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-input-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-input-control:focus {
    border-color: var(--accent);
    background-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.1);
}

/* Vehicle Presentation Elements */
.showcase-layout-split {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
}

.gallery-master-viewport {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    background-color: var(--text-dark);
    margin-bottom: 16px;
}

.gallery-master-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-carousel-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.strip-thumb-node {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.6;
    border: 2px solid transparent;
}

.strip-thumb-node.active, .strip-thumb-node:hover {
    opacity: 1;
    border-color: var(--accent);
}

.specs-data-sheet {
    width: 100%;
    border-collapse: collapse;
}

.specs-data-sheet td {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.specs-data-sheet td.value-cell {
    text-align: right;
    font-weight: 600;
}

/* Base Systems Footer */
.corporate-footer {
    background-color: #0B0F19;
    color: #94A3B8;
    padding: 80px 0 40px;
}

.footer-columns-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-summary h3 {
    color: var(--primary);
    margin-bottom: 16px;
}

.corporate-footer h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 700;
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: 10px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold-light);
}

.footer-contact-list li a,
.footer-contact-list li span {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.5;
    transition: var(--transition-smooth);
}

.footer-contact-list li a:hover {
    color: var(--gold-light);
}

.footer-bottom-bar {
    border-top: 1px solid #1E293B;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* ==========================================================================
   Responsive Matrix & Layout Safety System (Desktop Protected)
   ========================================================================== */

/* 1. Large Screen Adjustments */
@media (max-width: 1200px) {
    .catalog-grid-matrix { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .process-grid-row { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* 2. Tablet Screen Adjustments */
@media (max-width: 992px) {
    .catalogue-workspace-wrapper { 
        grid-template-columns: 1fr; 
    }
    .hero-title { 
        font-size: 44px; 
    }
    .value-cards-row {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .filter-sidebar-card {
        position: static;
        top: auto;
    }
}

/* 3. Mobile Phone Screen Adjustments (STRICT LOCAL OVERRIDES ONLY) */
@media (max-width: 768px) {
    .container { 
        padding: 0 24px; 
    }
    
    /* Pushes content down on mobile ONLY so the 105px logo clears nicely */
    main.container.section-spacer,
    section.section-spacer {
        padding-top: 180px !important;
    }

    /* Unhide hamburger icon on mobile */
    .mobile-menu-toggle {
        display: flex !important; 
    }

    /* Isolate mobile sliding overlay menu styling cleanly */
    .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 80px !important;
        left: 100% !important; /* Parks menu safely off-screen right */
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-top: 60px !important;
        gap: 32px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
        z-index: 999 !important;
    }

    /* Slides mobile menu panel into view when active */
    .nav-links.is-active {
        left: 0 !important;
    }

    .catalog-grid-matrix { 
        grid-template-columns: 1fr; 
    }

    .lang-switcher-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
    }

    .lang-switcher.is-open .lang-switcher-menu {
        transform: translateX(-50%) translateY(0);
    }

    .page-hero-band {
        padding: 190px 0 60px;
    }

    .stat-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-strip .stat-number {
        font-size: 24px;
    }

    .why-us-band {
        padding: 36px 20px;
    }

    .closing-tagline-banner {
        padding: 36px 20px;
    }

    .closing-tagline-banner p {
        font-size: 18px;
    }

    .hero-index-title {
        font-size: 32px;
        letter-spacing: 0;
    }

    .hero-index-subtitle {
        font-size: 15px;
        padding: 0 8px;
    }

    .why-us-heading {
        font-size: 21px;
    }

    .section-main-title {
        font-size: 28px;
    }

    .footer-columns-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand-summary {
        grid-column: 1 / -1;
    }
}

/* 4. Small Phone Screen Adjustments (very narrow devices) */
@media (max-width: 380px) {
    .hero-index-title {
        font-size: 26px;
    }

    .stat-strip {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }

    .stat-strip .stat-number {
        font-size: 20px;
    }

    .stat-strip .stat-label {
        font-size: 10px;
    }
}

/* 5. Footer stacking on narrow screens */
@media (max-width: 600px) {
    .footer-columns-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}