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

:root {
    /* Colors - Soft & Smooth Palette inspired by reference */
    --primary: #0F3B99;       /* Deep Blue */
    --primary-light: #1A4AB0; /* Slightly lighter blue */
    --accent: #3598DB;        /* Logo Cyan/Light Blue */
    --accent-hover: #2980B9;  /* Darker Blue */
    --text-main: #2D3748;     /* Soft dark gray */
    --text-muted: #718096;    /* Medium gray for secondary text */
    --bg-main: #FFFFFF;       /* Clean white background */
    --bg-card: #FFFFFF;
    --border: #E2E8F0;
    --success: #38A169;
    
    /* Spacing & Sizing */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 3rem;     /* 48px */
    --space-xl: 5rem;     /* 80px */
    
    /* Effects - Soft and Smooth */
    --radius-sm: 8px;
    --radius-md: 16px; /* Increased for app feel */
    --radius-lg: 24px;
    --radius-pill: 9999px;
    --shadow-soft: 0 4px 24px rgba(15, 59, 153, 0.04); /* Softer, wider app shadow */
    --shadow-hover: 0 8px 32px rgba(15, 59, 153, 0.08);

    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-standard: 300ms ease-out;
}

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

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography - Brand Fluid Scaling */
h1 {
    font-size: clamp(1.8rem, 4vw, 3rem); /* Reduced max size */
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400; /* Cleaner legibility */
    color: var(--text-muted);
}

/* Layout Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

/* ============================================
   TOP UTILITY BAR — Professional Contact Strip
   ============================================ */

.header-socials-side {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
}

.side-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 59, 153, 0.05);
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(15, 59, 153, 0.08);
}

.side-social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 59, 153, 0.2);
    border-color: var(--primary);
}

.side-social-link svg {
    width: 18px;
    height: 18px;
}



/* ============================================
   FULL-WIDTH OVERLAY NAVBAR — Modern & Unique
   ============================================ */

/* Site Header - Full Width Transparent Overlay */
.site-header {
    position: fixed;
    top: 0; /* Sits at the very top */
    left: 0;
    right: 0;
    z-index: 1010;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    padding: 0;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    height: 85px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
}

.header-inner > .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-header.scrolled .header-inner {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.site-header.header-light-theme .header-inner {
    background: rgba(226, 243, 255, 0.9); /* Soft Light Blue */
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(15, 59, 153, 0.1);
}

.site-header.header-light-theme.scrolled .header-inner {
    background: rgba(226, 243, 255, 0.98);
}

body {
    padding-top: 0; /* No offset — header overlays hero */
}


/* Main Nav Layout */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0;
}

/* Brand / Logo */
.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 100;
    width: 145px; /* Increased to accommodate 20% larger logo */
}

.nav-brand .brand-logo {
    height: 125px; /* 20% increase */
    width: 125px; /* 20% increase */
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: white;
    filter: drop-shadow(0 4px 12px rgba(15, 59, 153, 0.15));
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(28px);
}

.site-header.scrolled .nav-brand .brand-logo {
    height: 100px; /* 20% increase */
    width: 100px; /* 20% increase */
    transform: translateY(18px);
}

.nav-brand:hover .brand-logo {
    transform: translateY(28px) scale(1.05);
}

.site-header.scrolled .nav-brand:hover .brand-logo {
    transform: translateY(18px) scale(1.05);
}

/* Center Nav Pill */
.nav-pill {
    /* Standard flex item now */
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    background: rgba(15, 59, 153, 0.04);
    border-radius: 100px;
    padding: 0.3rem;
}

.nav-links li a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: var(--primary);
    background: rgba(15, 59, 153, 0.06);
}

.nav-links li a.active {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 59, 153, 0.25);
}

/* Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--primary);
}

.nav-phone svg {
    flex-shrink: 0;
}

/* Book Button */
.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(15, 59, 153, 0.2);
    white-space: nowrap;
}

.btn-book:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 59, 153, 0.3);
}

/* ---- Animated Hamburger ---- */
.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    background: rgba(15, 59, 153, 0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(15, 59, 153, 0.1);
}

.hamburger-line {
    display: block;
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-line:nth-child(1) { top: 14px; }
.hamburger-line:nth-child(2) { top: 20px; }
.hamburger-line:nth-child(3) { top: 26px; }

/* Hamburger → X animation */
.hamburger.is-active .hamburger-line:nth-child(1) {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ---- Mobile Slide Panel ---- */
.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-panel.active {
    transform: translateX(0);
}

.mobile-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 63, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-panel-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Panel Header */
.mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.mobile-panel-header .brand-logo {
    height: 32px;
    width: 32px;
}

.mobile-panel-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 59, 153, 0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.mobile-panel-close:hover {
    background: rgba(15, 59, 153, 0.1);
    color: var(--primary);
}

/* Panel Navigation */
.mobile-panel-nav {
    padding: 2rem;
    flex: 1;
}

.mobile-panel-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-panel-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-panel-nav li:last-child {
    border-bottom: none;
}

.mobile-panel-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.mobile-panel-nav a:hover,
.mobile-panel-nav a.active {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-link-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    min-width: 24px;
}

/* Panel Footer */
.mobile-panel-footer {
    padding: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-panel-footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-panel-footer a:hover {
    color: var(--primary);
}

.mobile-panel-socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mobile-panel-socials a {
    font-size: 0.8rem;
}

.mobile-book-btn {
    margin-top: 1rem;
    text-align: center;
}

body.menu-open {
    overflow: hidden;
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
    .nav-phone span {
        display: none; /* Hide phone text, keep icon */
    }
}

@media (max-width: 992px) {
    .nav-pill,
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: block;
    }

    .main-nav {
        padding: 0.75rem 0;
    }

    body {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .brand-text {
        display: none;
    }
}

/* Buttons - Soft and Pill-shaped */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

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

.btn-accent {
    background-color: var(--accent);
    color: #1A202C;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border);
    color: var(--text-main);
    box-shadow: none;
}

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

.btn-white {
    background: #fff;
    color: var(--primary) !important;
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff !important;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Cards */
.card {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-standard);
    border: 1px solid transparent;
}

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

/* Hero Base */
.hero {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0;
    margin-bottom: var(--space-lg);
    aspect-ratio: 12 / 5;
    min-height: 550px;
    padding-top: 110px; /* Accounts for header + breathing room */
}

/* Sub-page specific header - taller to account for header overlay */
.hero.sub-page {
    height: 400px;
    min-height: 400px;
    aspect-ratio: auto;
    padding-top: 110px;
    background-color: var(--primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        linear-gradient(135deg, var(--primary) 0%, #0a296b 100%);
    overflow: hidden;
}

/* Creative Layout Utilities */
.split-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-stack {
    position: relative;
    padding: 2rem;
}

.image-stack img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.image-stack::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--accent);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.1;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.feature-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 500px;
    background: white;
    margin-bottom: 4rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-strip.reverse {
    direction: rtl;
}

.feature-strip.reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-image {
    background-size: cover;
    background-position: center;
}

@media (max-width: 992px) {
    .split-section, .feature-strip { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .feature-strip { min-height: auto; }
    .feature-content { padding: 2rem; }
    .feature-image { min-height: 250px; }
}

.hero.sub-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero:not(.hero-redesign)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); /* very light dim just to ensure some contrast */
    z-index: 1;
    border-radius: inherit;
}

.hero.sub-page::before {
    display: none; /* Remove the dark dim overlay for sub-pages since we have patterns */
}

/* Soft gradients for solid backgrounds */
.bg-primary-gradient {
    background: linear-gradient(135deg, #0F3B99 0%, #174BB5 100%);
    color: white;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ============================================
   FOOTER - Modern Industrial Design
   ============================================ */

footer {
    background: #060b1a;
    color: #ffffff;
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #369bdf 100%);
}

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

.footer-col-identity {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    max-width: 160px; /* Slightly larger for better branding */
    margin-bottom: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(15, 59, 153, 0.4);
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item span {
    font-size: 0.9rem;
    line-height: 1.4;
    padding-top: 5px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(15, 59, 153, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: #ffffff;
}

.footer-contact-item:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

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

/* Copyright Bar */
.copyright-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-bar p {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.35);
}

.attribution {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.attribution a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
}

.attribution a:hover {
    color: #ffffff;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(244, 186, 25, 0.2);
    color: #977103;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Grid Utilities & Specific App Overrides */
.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Stats Grid for Mobile */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Input Styling */
input, select, textarea {
    width: 100%; 
    padding: 0.6rem 0.8rem; /* More compact */
    border: 1px solid var(--border); 
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem; /* App scale */
    color: var(--text-main);
    transition: var(--transition-fast);
    background-color: #F8FAFC;
    margin-bottom: 0.5rem; /* Spacing */
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(15, 59, 153, 0.1);
}

@media (max-width: 768px) {
    /* ─── Base Layout ─── */
    .nav-links { display: none; }
    section { padding: 3rem 0; }
    .hero { aspect-ratio: auto; min-height: 55vh; padding: 3rem 0; }

    /* ─── Typography Scale-down ─── */
    h1 { font-size: clamp(2rem, 6vw, 2.8rem); line-height: 1.15; }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 0.75rem; }
    h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
    h4 { font-size: 0.9rem; }
    p  { font-size: 0.95rem; line-height: 1.6; }

    /* ─── Logo: clear spacing below top bar ─── */
    .logo-badge {
        width: 80px;
        height: 80px;
        top: 10px;
        margin-top: -20px;
    }

    /* ─── Top bar contact row ─── */
    .social-links {
        display: none !important;
    }
    .contact-info-top {
        width: 100%;
        justify-content: center;
        font-size: 0.6rem;
        gap: 0.6rem;
        flex-wrap: nowrap;
        white-space: nowrap;
        padding: 0 5px;
    }

    /* ─── Cards & Grids (Mobile 2x2) ─── */
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem !important; /* Overrule larger desktop gaps */
    }
    .card {
        padding: 1rem;
    }

    /* ─── Stats Grid: reduce size ~40% ─── */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .stats-grid > div {
        background: rgba(255, 255, 255, 0.05);
        padding: 0.75rem 0.5rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255,255,255,0.1);
    }
    .stats-grid h2 {
        font-size: 1.2rem !important;
        margin-bottom: 0 !important;
    }
    .stats-grid p {
        font-size: 0.65rem !important;
    }

    /* ─── About Page Stat Grid ─── */
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 0;
    }
    .stat-item h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.2rem;
    }
    .stat-item p {
        font-size: 0.6rem !important;
        letter-spacing: 1px;
    }

    /* ─── CTA Buttons: same row ─── */
    .cta-buttons {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: center;
    }
    .cta-buttons .btn {
        padding: 0.55rem 1rem;
        font-size: 0.75rem;
        flex: 1;
        text-align: center;
    }

    /* ─── Footer: ~50% smaller ─── */
    footer {
        padding: 2rem 0 0;
        margin-top: 1.5rem;
    }
    footer h4 {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
        letter-spacing: 1px;
    }
    footer p, footer a {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    footer li {
        margin-bottom: 0.4rem !important;
    }
    .footer-logo {
        height: 55px;
        margin-bottom: 0.75rem;
    }
    .footer-grid {
        gap: 1.5rem;
    }
    .copyright-bar {
        padding: 1rem 0;
        font-size: 0.65rem;
    }

    .copyright-bar .container {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
}
/* ============================================
   HERO REDESIGN — Full-width Image Hero
   ============================================ */

.hero-redesign {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6rem;
    margin-bottom: 0;
    overflow: hidden;
    padding-top: 0;
    aspect-ratio: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.03);
    transition: transform 8s ease-out;
    z-index: 0;
}

.hero-redesign:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 15, 35, 0.72) 0%,
        rgba(5, 15, 35, 0.45) 55%,
        rgba(5, 15, 35, 0.08) 100%
    );
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-top: 120px;
}

.hero-text {
    max-width: 600px;
    padding-bottom: 1rem;
}

.hero-kicker {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 480px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: #0F3B99;
    color: #fff !important;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(15, 59, 153, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.hero-cta-primary:hover {
    background: #1A4AB0;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(15, 59, 153, 0.5);
}

.hero-cta-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: none;
}

.hero-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Hero mobile */
@media (max-width: 768px) {
    /* Only override home page hero if intended, otherwise let inline styles handle it */
    #hero-home .hero-bg {
        background-image: url('../images/Hero.jpeg') !important;
    }

    .hero-redesign {
        min-height: 100dvh; /* Full screen handled securely factoring in browser toolbars */
        padding-bottom: 2rem !important;
        align-items: flex-end;
        display: flex;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(5, 15, 35, 0.1) 0%,
            rgba(5, 15, 35, 0.6) 40%,
            rgba(5, 15, 35, 0.95) 100%
        );
    }

    .hero-content-wrap {
        align-items: flex-end;
        justify-content: flex-start;
        padding-top: 0;
        margin-bottom: 0;
    }

    .hero-kicker {
        font-size: 0.75rem; 
        white-space: nowrap;
        letter-spacing: 1px;
    }

    .hero-headline {
        font-size: clamp(2rem, 7vw, 2.5rem);
        line-height: 1.1;
    }

    .hero-sub {
        display: none;
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-cta-primary,
    .hero-cta-ghost {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   SHOWCASE GRID — 8 Containers
   ============================================ */

.showcase-section {
    background: #0d1a2e;
    padding: var(--space-xl) 0;
}

.showcase-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.showcase-section .section-header h2 {
    color: #ffffff;
}

.showcase-section .section-header p {
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 10px;
}

/* ── Photo items ── */
.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.showcase-photo .sc-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-photo:hover .sc-img {
    transform: scale(1.08);
}

.showcase-photo .sc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 15, 40, 0.88) 0%,
        rgba(5, 15, 40, 0.3) 55%,
        transparent 100%
    );
    z-index: 1;
    transition: background 0.4s ease;
}

.showcase-photo:hover .sc-overlay {
    background: linear-gradient(
        to top,
        rgba(5, 15, 40, 0.95) 0%,
        rgba(5, 15, 40, 0.55) 60%,
        rgba(5, 15, 40, 0.1) 100%
    );
}

.sc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sc-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
}

.sc-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* ── Cutaway items — white/light background ── */
.showcase-cutaway {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem 0.75rem;
    border: 1px solid rgba(15, 59, 153, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease;
}

.showcase-cutaway:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 20px 50px rgba(15, 59, 153, 0.18);
}

.sc-cutaway-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    flex: 1;
    min-height: 0;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.showcase-cutaway:hover .sc-cutaway-img {
    transform: scale(1.05);
}

.sc-cutaway-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    flex-shrink: 0;
}

.sc-num-dark {
    color: rgba(15, 59, 153, 0.4);
}

.sc-text-dark {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px); /* Slightly taller for elegance */
        gap: 8px; /* Breathing room */
    }

    .showcase-item {
        border-radius: 12px;
    }

    .sc-text {
        font-size: 0.8rem; /* readable base */
    }
    .sc-num {
        font-size: 0.75rem;
        margin-right: 0.4rem;
    }

    .sc-text-dark {
        font-size: 0.7rem;
    }
}

/* ============================================
   SERVICES TILES — 4-Tile Grid
   ============================================ */

.services-tiles-section {
    background-color: #f4f7fe;
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header p {
    max-width: 560px;
    margin: 0 auto;
}

/* ── Bento Grid ── */
.services-tiles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 14px;
}

/* Tile 1: wide left, row 1 */
#tile-vehicle {
    grid-column: 1;
    grid-row: 1;
}

/* Tile 2: tall right, spans both rows */
#tile-fabrication {
    grid-column: 2 / 4;
    grid-row: 1;
}

/* Tile 3: tall left, row 2 */
#tile-plant {
    grid-column: 1 / 3;
    grid-row: 2;
}

/* Tile 4: wide right, row 2 */
#tile-mining {
    grid-column: 3;
    grid-row: 2;
}

.service-tile {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-tile:hover {
    transform: translateY(-5px) scale(1.012);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.tile-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.service-tile:hover .tile-img {
    transform: scale(1.07);
}

.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 15, 40, 0.90) 0%,
        rgba(5, 15, 40, 0.45) 50%,
        rgba(5, 15, 40, 0.05) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.service-tile:hover .tile-overlay {
    background: linear-gradient(
        to top,
        rgba(5, 15, 40, 0.95) 0%,
        rgba(5, 15, 40, 0.65) 55%,
        rgba(5, 15, 40, 0.15) 100%
    );
}

.tile-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem 1.5rem;
}

.tile-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
    display: block;
}

.tile-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.tile-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.tile-items li {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    padding-left: 0.85rem;
    position: relative;
}

.tile-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.tile-arrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-tile:hover .tile-arrow {
    color: #ffffff;
    transform: translateX(4px);
}

/* Bento tiles responsive */
@media (max-width: 1024px) {
    .services-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 10px;
    }

    .bento-wide,
    .bento-tall,
    #tile-vehicle,
    #tile-fabrication,
    #tile-plant,
    #tile-mining {
        grid-column: auto;
        grid-row: auto;
    }

    .service-tile {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }
}

@media (max-width: 600px) {
    .services-tiles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-tile {
        aspect-ratio: auto;
        min-height: 240px;
        border-radius: 14px;
    }

    .tile-content {
        padding: 1.5rem;
    }

    .tile-category {
        font-size: 0.8rem; 
        margin-bottom: 0.4rem;
    }

    .tile-title {
        font-size: 1.3rem; 
        margin-bottom: 0.5rem;
    }

    .tile-items li {
        font-size: 0.85rem;
    }
}

/* ============================================
   WHATSAPP FLOATING PILL BUTTON
   ============================================ */

@keyframes wfp-pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    70%  { transform: scale(1.8); opacity: 0; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes wfp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
}

.whatsapp-float-pill {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem 0.75rem 1rem;
    background: #25D366;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: wfp-float 3s ease-in-out infinite;
}

.whatsapp-float-pill:hover {
    background: #128C7E;
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px) scale(1.02);
    animation: none;
    color: #fff;
}

/* Pulse ring behind the button */
.wfp-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    border: 2px solid #25D366;
    animation: wfp-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

.wfp-icon {
    width: 22px;
    height: 22px;
    fill: #fff;
    flex-shrink: 0;
}

.wfp-label {
    white-space: nowrap;
    line-height: 1;
}

/* Senior UI: Mobile optimization for WhatsApp Pill */
@media (max-width: 900px) {
    .whatsapp-float-pill {
        bottom: 126px;
        right: 16px;
        /* Icon-only circle on mobile */
        width: 48px;
        height: 48px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
        animation: none;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    }

    .wfp-label {
        display: none;
    }

    .wfp-icon {
        width: 24px;
        height: 24px;
    }

    .wfp-pulse-ring {
        display: none;
    }
}


/* ============================================
   STATS SHOWROOM SECTION
   ============================================ */

.stats-showroom-section {
    background: #f4f7fe;
    position: relative;
    overflow: hidden;
}

/* Header text area */
.stats-showroom-header {
    text-align: center;
    padding: 3rem 1rem 0;
}

.stats-showroom-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark, #0d1a2e);
    margin: 0.5rem 0 0.6rem;
}

.stats-showroom-sub {
    color: #6b7a99;
    font-size: 0.88rem;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Car image — centered, full bleed */
.stats-showroom-car {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 2rem 0 0;
    margin-bottom: -6px; /* overlaps the dark bar slightly */
    position: relative;
    z-index: 2;
}

.stats-showroom-img {
    width: 80%;
    max-width: 900px;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 48px rgba(9, 31, 92, 0.22));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-showroom-section:hover .stats-showroom-img {
    transform: scale(1.02) translateY(-4px);
}

/* Dark stats bar at the bottom */
.stats-showroom-bar {
    background: linear-gradient(135deg, #0f3b99 0%, #091f5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.75rem 2rem;
    position: relative;
    z-index: 1;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0 3rem;
    text-align: center;
}

.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-showroom-img {
        width: 95%;
    }

    .stat-pill {
        padding: 0 1.5rem;
    }
}

@media (max-width: 600px) {
    .stats-showroom-header {
        padding: 2rem 1rem 0;
    }

    .stats-showroom-bar {
        flex-wrap: wrap;
        gap: 1.25rem;
        padding: 1.5rem 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-pill {
        padding: 0;
        width: 45%;
    }
}

/* ============================================
   TRUCK SHOWROOM - White variant
   ============================================ */

.truck-showroom {
    background: #ffffff;
}

.truck-showroom .stats-showroom-header {
    padding: 1.8rem 1rem 0;
}

.truck-showroom .stats-showroom-car {
    padding: 0.75rem 0 0;
}

.truck-title {
    color: #0d1a2e !important;
}

.truck-sub {
    color: #6b7a99 !important;
}

.truck-img {
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.2)) !important;
}

.truck-showroom .stats-showroom-img {
    width: 90%;
    max-width: 1050px;
}

.truck-showroom .stats-showroom-bar {
    background: linear-gradient(135deg, #091f5c 0%, #060f2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.truck-showroom .badge {
    background: rgba(15, 59, 153, 0.08);
    color: #0f3b99;
    border: 1px solid rgba(15, 59, 153, 0.15);
}

.truck-showroom .stat-num {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .truck-showroom .stats-showroom-img {
        width: 70%;
    }
}

/* ============================================
   CTA MODERN SECTION
   ============================================ */

.cta-modern-section {
    background: #ffffff;
    padding: 3rem 0 6rem;
}

.cta-modern-box {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    border: none !important;
    box-shadow: none !important;
}

.cta-modern-text {
    flex: 1;
    text-align: left;
}

.cta-modern-text h2 {
    color: #0b1c31;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin: 1.25rem 0 0.5rem;
    letter-spacing: -0.5px;
}

.cta-modern-text p {
    color: #162b48;
    margin: 0;
    font-size: 1.05rem;
}

.cta-badge {
    background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid rgba(15, 59, 153, 0.15) !important;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-weight: 600;
}

.cta-modern-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-navy {
    background: #0f3484;
    color: #ffffff;
    border-radius: 100px;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background: #0d2a6a;
    transform: translateY(-2px);
}

.btn-white {
    background: #ffffff;
    color: #4a5568;
    border-radius: 100px;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    color: #1a202c;
}

@media (max-width: 900px) {
    .cta-modern-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    .cta-modern-text {
        text-align: center;
    }
    .cta-modern-buttons {
        justify-content: center;
    }
}
@media (max-width: 500px) {
    .cta-modern-box {
        padding: 2.5rem 1.5rem;
    }
    .cta-modern-text h2 {
        font-size: 1.5rem;
    }
    .cta-modern-buttons {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }
    .cta-modern-buttons .btn {
        width: auto;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}
/* ============================================
   SERVICE DETAIL LAYOUT - Advanced Pro Layout
   ============================================ */

.service-grid-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    padding: var(--space-xl) 0;
}

@media (max-width: 992px) {
    .service-grid-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Master Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.widget-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

/* Service Nav Menu */
.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    background: rgba(15, 59, 153, 0.03);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
}

.sidebar-nav a svg {
    opacity: 0.5;
}

/* CTA Card */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #060b1a 100%);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}

.sidebar-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 50%;
}

.sidebar-cta h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

/* Service Page Components */
.service-hero-detail {
    margin-bottom: 2rem;
}

.service-featured-image {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.service-capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.capability-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: #fff;
}

.capability-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.capability-icon {
    width: 48px;
    height: 48px;
    background: rgba(53, 152, 219, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.capability-card h4 {
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.capability-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Process Roadmap */
.process-roadmap {
    margin-top: 4rem;
    padding: 3rem;
    background: #f8fafc;
    border-radius: var(--radius-lg);
}

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.roadmap-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.roadmap-content h4 {
    margin-bottom: 0.25rem;
    text-transform: none;
}

/* ============================================
   TECHNICAL PORTAL LAYOUT (Services Detail)
   ============================================ */

.service-grid-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.service-content {
    max-width: 800px;
}

.service-hero-detail {
    margin-bottom: 3rem;
}

.service-hero-detail h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-top: 0.5rem;
    line-height: 1.1;
    color: var(--primary);
}

.service-featured-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.service-featured-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 40%);
}

.editorial-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.editorial-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.editorial-text p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.service-capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

/* Sidebar Widgets */
.service-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-widget {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-nav li a:hover {
    background: #f1f5f9;
    color: var(--primary);
    transform: translateX(5px);
}

.sidebar-nav li a.active {
    background: var(--primary);
    color: #fff;
}

.sidebar-cta {
    color: #fff;
    text-align: center;
}

.sidebar-cta h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .service-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-sidebar {
        position: static;
    }
}

/* ─── Mobile: Service Detail Pages ─── */
@media (max-width: 768px) {

    /* Main wrapper */
    main[style*="padding-top"] {
        padding-top: 80px !important;
    }

    .service-grid-layout {
        gap: 0;
        margin-top: 0;
        margin-bottom: 2rem;
    }

    /* Hero text */
    .service-hero-detail {
        margin-bottom: 1.25rem;
        padding: 0 1rem;
    }

    .service-hero-detail h1 {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
        line-height: 1.15;
        margin-top: 0.25rem;
    }

    /* Hero image — cinematic strip */
    .service-featured-image {
        height: 240px;
        border-radius: 0;
        margin-bottom: 1.75rem;
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
        box-shadow: none;
    }

    /* Editorial body text */
    .editorial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 1rem;
    }

    .editorial-text h2 {
        font-size: clamp(1.25rem, 5vw, 1.6rem);
        margin-bottom: 0.75rem;
    }

    .editorial-text h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .editorial-text p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    /* Capability cards — single column, compact */
    .service-capability-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .capability-card {
        padding: 1rem 1.25rem;
        border-radius: 12px;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .capability-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
        margin-bottom: 0;
    }

    .capability-card h4 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        text-transform: none;
        letter-spacing: 0;
    }

    .capability-card p {
        font-size: 0.8rem;
        margin: 0;
        line-height: 1.5;
    }

    /* Roadmap — compact vertical */
    .process-roadmap {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }

    .roadmap-item {
        padding: 1rem 1.25rem;
        border-radius: 12px;
        gap: 1rem;
    }

    .roadmap-num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.75rem;
    }

    .roadmap-content h4 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .roadmap-content p {
        font-size: 0.8rem;
        margin: 0;
    }

    /* Sidebar — below article, flat style */
    .service-sidebar {
        padding: 0 1rem;
        margin-top: 1rem;
    }

    .sidebar-widget {
        padding: 1.25rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .widget-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .sidebar-nav li a {
        padding: 0.75rem 1rem;
        font-size: 0.82rem;
        border-radius: 10px;
    }

    /* Hide the CTA sidebar widget on mobile — WhatsApp button covers this */
    .sidebar-cta {
        display: none;
    }

    /* Contact support widget — horizontal row */
    .sidebar-widget:last-child {
        display: none;
    }
}

/* Legacy WhatsApp Float (Icon Only) */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
/* ============================================
   MOBILE BOTTOM NAVIGATION - App-Like Tab Bar
   ============================================ */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 74px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px) saturate(2);
    -webkit-backdrop-filter: blur(24px) saturate(2);
    border-top: 1px solid rgba(15, 59, 153, 0.08);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.07), 0 -1px 0 rgba(0, 0, 0, 0.04);
    z-index: 1500;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-bottom-nav.nav-hidden {
    transform: translateY(110%);
}

.mobile-nav-inner {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    height: 74px;
    width: 100%;
}

/* Each Tab Item */
.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: #A0AEC0;
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.22s ease;
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* Icon wrapper — pill-shaped hover zone */
.mobile-nav-item .nav-icon-wrap {
    width: 38px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.75;
    transition: all 0.22s ease;
}

/* Active State */
.mobile-nav-item.active {
    color: var(--primary);
}

.mobile-nav-item.active .nav-icon-wrap {
    background: rgba(15, 59, 153, 0.09);
    transform: translateY(-1px);
}

.mobile-nav-item.active svg {
    stroke-width: 2.3;
}

/* Active top-edge indicator */
.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 32px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 0 0 4px 4px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-item.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Press ripple on non-center items */
.mobile-nav-item:not(.nav-center):active .nav-icon-wrap {
    transform: scale(0.88);
    background: rgba(15, 59, 153, 0.05);
}

/* ── CENTER "BOOK" BUTTON ── */
.mobile-nav-item.nav-center {
    flex: 1.1;
    padding-bottom: 14px;
    justify-content: flex-start;
    padding-top: 0;
}

.nav-center-circle {
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg, #1e52c2 0%, #0F3B99 50%, #0a2870 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow:
        0 5px 18px rgba(15, 59, 153, 0.45),
        0 1px 4px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    border: 3.5px solid rgba(255, 255, 255, 0.98);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    margin-top: -22px;
}

.nav-center-circle svg {
    width: 21px;
    height: 21px;
    stroke-width: 2;
    stroke: #fff;
    fill: none;
}

.nav-center-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 4px;
    white-space: nowrap;
}

.mobile-nav-item.nav-center:active .nav-center-circle {
    transform: scale(0.92);
    box-shadow: 0 2px 8px rgba(15, 59, 153, 0.25);
}

/* ── Footer Refinements ── */
@media (max-width: 900px) {
    .mobile-bottom-nav {
        display: flex;
        flex-direction: column;
    }

    footer {
        padding-bottom: 96px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col-identity {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem; /* Increased for mobile centering */
    }

    .footer-about {
        display: none; /* Hide description on mobile per request */
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .whatsapp-float-pill {
        bottom: 92px !important;
        /* Ensure the pill stays visible on mobile */
        display: inline-flex !important;
    }

    /* On medium mobile (481px–900px), keep the label visible but compact */
    @media (min-width: 481px) {
        .whatsapp-float-pill {
            padding: 0.65rem 1.1rem 0.65rem 0.85rem;
            font-size: 0.8rem;
        }
    }
}

@media (max-width: 450px) {
    .mobile-bottom-nav {
        height: 70px;
    }

    .mobile-nav-inner {
        height: 70px;
    }
}

/* ============================================
   ABOUT PAGE - Premium Editorial Layout
   ============================================ */

.editorial-narrative-section {
    padding: 8rem 0;
    overflow: hidden;
    background: #fff;
}

.narrative-content {
    max-width: 600px;
}

.narrative-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 1.5rem 0;
    line-height: 1.1;
    font-weight: 800;
}

.narrative-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.narrative-body p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Image Stack */
.image-stack-modern {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.image-main {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 59, 153, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-stack-modern:hover .image-main {
    transform: perspective(1000px) rotateY(0deg);
}

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

.image-accent {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 4rem;
    background: var(--primary);
    border-radius: 24px;
    opacity: 0.05;
    z-index: 1;
}

/* Values Grid Upgrade */
.values-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    padding: 3rem;
    background: #f8fafc;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    background: #fff;
    border-color: var(--border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 2px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .split-section.reverse {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .editorial-narrative-section {
        padding: 5rem 0;
        text-align: center;
    }
    
    .narrative-content {
        margin: 0 auto;
    }

    .narrative-title {
        font-size: 2.2rem;
    }
    
    .values-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-stack-modern {
        margin-top: 4rem;
        padding-right: 0;
        padding-bottom: 0;
    }

    .image-main {
        transform: none;
    }

    .image-accent {
        display: none;
    }
}

/* 2x2 Stats Grid on Mobile (Consistency with Home) */
@media (max-width: 768px) {
    .hero-redesign {
        padding: 6rem 0;
        text-align: center;
    }

    .hero-redesign h1 {
        font-size: 2.5rem;
    }

    .hero-redesign .badge {
        margin: 0 auto 1.5rem;
    }

    .stats-showroom-section {
        padding: 4rem 0;
    }

    .stats-showroom-section .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stats-showroom-section .stat-item h2 {
        font-size: 2.5rem;
    }

    .value-card {
        padding: 2rem;
    }

    /* Senior UI: CTA Banner Elevation */
    .cta-banner {
        background: radial-gradient(circle at top left, #0a296b 0%, #050f23 70%);
        padding: 4.5rem 1.5rem;
        margin-top: 6rem;
        border-radius: 24px;
        border: 1px solid rgba(15, 59, 153, 0.3);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 80% 20%, rgba(53, 152, 219, 0.1) 0%, transparent 40%);
        pointer-events: none;
    }

    .cta-banner h3 {
        font-size: clamp(2rem, 8vw, 2.6rem);
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem;
        font-size: 1.05rem;
        letter-spacing: 0.5px;
        border-radius: 14px;
    }

    .btn-white {
        background: #fff;
        color: var(--primary) !important;
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    }

    .btn-outline-white {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }
}

/* Senior UI: Technical Process Cards */
.process-section {
    padding: 8rem 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.process-card {
    position: relative;
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 59, 153, 0.06);
    border-color: var(--primary);
}

.process-step-num {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--primary);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
}

.process-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(15, 59, 153, 0.04);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
    background: var(--primary);
    color: #fff;
}

.process-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-card {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .process-icon-box {
        margin: 0 auto 1.5rem;
    }

    .process-step-num {
        left: 50%;
        transform: translateX(-50%);
    }
}
