/* ================================================
   COMPLETE SECURITY — Premium CSS Framework
   £15,000+ Quality Design System
   ================================================ */

/* ================================================
   IMPORTS & CSS VARIABLES
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color System */
    --primary-dark: #585858;
    --primary-light: #B8B8B8;
    --black: #000000;
    --white: #FFFFFF;
    --bg-dark: #0a0a0a;
    --bg-section: #111111;
    --bg-card: #1a1a1a;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #888888;

    /* Gradients */
    --gradient-silver: linear-gradient(135deg, #B8B8B8 0%, #FFFFFF 25%, #585858 50%, #B8B8B8 75%, #FFFFFF 100%);
    --gradient-silver-simple: linear-gradient(135deg, #585858 0%, #B8B8B8 50%, #585858 100%);
    --gradient-subtle: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);

    /* Borders & Shadows */
    --border-silver: 1px solid rgba(184, 184, 184, 0.2);
    --border-silver-hover: 1px solid rgba(184, 184, 184, 0.5);
    --glow-silver: 0 0 20px rgba(184, 184, 184, 0.15);
    --glow-silver-strong: 0 0 40px rgba(184, 184, 184, 0.25);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Urbanist', sans-serif;
    --font-accent: 'Urbanist', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --container-width: 1320px;

    /* Animation */
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.3s;
    --duration-normal: 0.5s;
    --duration-slow: 0.8s;
}

/* ================================================
   RESET & BASE STYLES
   ================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-dark);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) ease;
}

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

ul, ol {
    list-style: none;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-muted);
}

.label {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-light);
}

/* ================================================
   PAGE LOADER
   ================================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s var(--ease-premium);
}

.page-loader.loaded {
    transform: translateY(-100%);
}

.page-loader.hidden {
    display: none;
}

.loader-content {
    position: relative;
    text-align: center;
}

.loader-logo {
    opacity: 0;
    transform: scale(0.8);
    animation: loaderFadeIn 1.2s var(--ease-premium) 0.3s forwards;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(184, 184, 184, 0.3));
}

.loader-logo img {
    max-width: 220px;
    height: auto;
}

.loader-shimmer {
    position: absolute;
    inset: 0;
    background: var(--gradient-shimmer);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    opacity: 0;
    animation-delay: 0.5s;
}

@keyframes loaderFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; opacity: 1; }
    100% { background-position: 200% 0; opacity: 1; }
}

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #585858 0%, #B8B8B8 50%, #FFFFFF 100%);
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(184, 184, 184, 0.5);
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
    background: var(--black);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner,
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--duration-fast) ease;
}

.top-bar-left a:hover {
    color: var(--primary-light);
}

.top-bar-left svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-light);
    fill: none;
}

.top-bar-left .divider {
    color: var(--text-muted);
    opacity: 0.5;
}

.top-bar-right {
    color: var(--text-muted);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-light);
    fill: none;
}

.top-bar-item a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ================================================
   NAVIGATION - Premium Design
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.with-topbar {
    top: 38px;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(184, 184, 184, 0.08);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled.with-topbar {
    top: 0;
}

@media (max-width: 768px) {
    .navbar.with-topbar {
        top: 0;
    }
}

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

.navbar-logo img,
.nav-logo img {
    max-height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover img,
.nav-logo:hover img {
    opacity: 0.85;
    transform: scale(1.02);
}

/* Desktop Nav Menu */
.navbar-menu,
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu > li {
    position: relative;
}

/* Nav Links - Pill Style */
.navbar-link,
.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.625rem 1.125rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-link:hover,
.navbar-link.active,
.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(184, 184, 184, 0.08);
}

/* Dropdown Arrow Animation */
.nav-link svg,
.navbar-link svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
}

.nav-dropdown:hover .nav-link svg,
.navbar-dropdown:hover .navbar-link svg {
    transform: rotate(180deg);
    opacity: 1;
}

/* Premium Dropdown Menu */
.navbar-dropdown,
.nav-dropdown {
    position: relative;
}

.navbar-dropdown .dropdown-menu,
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    transform-origin: top center;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    padding: 0.75rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.navbar-dropdown:hover .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Dropdown Menu Items */
.dropdown-menu li {
    margin: 0.25rem 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-silver-simple);
    border-radius: 2px;
    transition: height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-menu a:hover {
    background: rgba(184, 184, 184, 0.08);
    color: var(--text-primary);
    padding-left: 1.25rem;
}

.dropdown-menu a:hover::before {
    height: 60%;
}

.dropdown-menu a.active {
    background: rgba(184, 184, 184, 0.1);
    color: var(--text-primary);
}

.dropdown-menu a.active::before {
    height: 60%;
}

/* CTA Button */
.navbar-cta,
.nav-cta {
    background: var(--gradient-silver-simple);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.navbar-cta::before,
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.navbar-cta:hover,
.nav-cta:hover {
    box-shadow: 0 8px 30px rgba(184, 184, 184, 0.25);
    transform: translateY(-2px);
}

.navbar-cta:hover::before,
.nav-cta:hover::before {
    transform: translateX(100%);
}

/* ================================================
   MOBILE TOGGLE - Animated Hamburger
   ================================================ */
.navbar-toggle,
.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    background: rgba(184, 184, 184, 0.05);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.navbar-toggle:hover,
.mobile-toggle:hover {
    background: rgba(184, 184, 184, 0.1);
    border-color: rgba(184, 184, 184, 0.2);
}

.navbar-toggle span,
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

.navbar-toggle.active,
.mobile-toggle.active {
    background: rgba(184, 184, 184, 0.15);
}

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

.navbar-toggle.active span:nth-child(2),
.mobile-toggle.active span:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

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

/* Mobile Menu Overlay - Hidden by default */
.mobile-menu {
    display: none;
}

/* ================================================
   MOBILE MENU - Full Screen Fly-in
   ================================================ */
@media (max-width: 1024px) {
    .navbar-toggle,
    .mobile-toggle {
        display: flex;
    }

    /* Hide desktop CTA on mobile */
    .nav-cta,
    .btn.nav-cta {
        display: none !important;
    }

    /* Mobile Menu Panel */
    .navbar-menu,
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .navbar-menu.active,
    .nav-menu.active {
        transform: translateX(0);
    }

    /* Menu Items Container */
    .navbar-menu > li,
    .nav-menu > li {
        width: 100%;
        max-width: 400px;
        text-align: center;
        opacity: 0;
        transform: translateX(60px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow: visible;
    }

    .navbar-menu.active > li,
    .nav-menu.active > li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered Animation Delays */
    .navbar-menu.active > li:nth-child(1),
    .nav-menu.active > li:nth-child(1) { transition-delay: 0.1s; }
    .navbar-menu.active > li:nth-child(2),
    .nav-menu.active > li:nth-child(2) { transition-delay: 0.15s; }
    .navbar-menu.active > li:nth-child(3),
    .nav-menu.active > li:nth-child(3) { transition-delay: 0.2s; }
    .navbar-menu.active > li:nth-child(4),
    .nav-menu.active > li:nth-child(4) { transition-delay: 0.25s; }
    .navbar-menu.active > li:nth-child(5),
    .nav-menu.active > li:nth-child(5) { transition-delay: 0.3s; }
    .navbar-menu.active > li:nth-child(6),
    .nav-menu.active > li:nth-child(6) { transition-delay: 0.35s; }
    .navbar-menu.active > li:nth-child(7),
    .nav-menu.active > li:nth-child(7) { transition-delay: 0.4s; }

    /* Mobile Nav Links */
    .navbar-link,
    .nav-link {
        font-size: 1.75rem;
        font-weight: 600;
        padding: 1rem 1.5rem;
        justify-content: center;
        border-radius: 12px;
        margin: 0.25rem 0;
    }

    .navbar-link:hover,
    .nav-link:hover {
        background: rgba(184, 184, 184, 0.1);
    }

    .navbar-link.active,
    .nav-link.active {
        background: rgba(184, 184, 184, 0.1);
        color: var(--text-primary);
    }

    /* Hide dropdown arrow on mobile, show plus/minus indicator instead */
    .nav-link svg {
        display: none;
    }

    .nav-dropdown .nav-link {
        position: relative;
    }

    .nav-dropdown .nav-link::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-secondary);
        transition: transform 0.3s ease;
    }

    .nav-dropdown.open .nav-link::after {
        content: '\2212';
        transform: translateY(-50%);
    }

    /* Mobile Dropdown Menu */
    .navbar-dropdown .dropdown-menu,
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none !important;
        left: auto;
        top: auto;
        transform-origin: initial;
        opacity: 1;
        visibility: visible;
        background: rgba(184, 184, 184, 0.05);
        border: none;
        border-radius: 12px;
        padding: 0.5rem;
        margin: 0.5rem 0;
        min-width: auto;
        box-shadow: none;
        max-height: 0;
        overflow: clip;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-dropdown.open .dropdown-menu,
    .navbar-dropdown.open .dropdown-menu {
        max-height: 400px;
        padding: 0.75rem;
    }

    .dropdown-menu a {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        justify-content: center;
        text-align: center;
    }

    .dropdown-menu a::before {
        display: none;
    }

    .dropdown-menu a:hover {
        padding-left: 1rem;
    }
}

/* ================================================
   CONTAINER
   ================================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* ================================================
   SECTIONS
   ================================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--bg-dark);
}

/* Section after hero - stats bar overlaps into this */
.hero + .section {
    padding-top: calc(var(--section-padding) + 70px);
}

.section-alt {
    background: var(--bg-section);
}

.section-divider {
    width: 50%;
    height: 1px;
    background: var(--gradient-silver-simple);
    margin: 0 auto;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-silver-simple);
}

.section-header:not(.text-center) .section-label::after {
    left: 0;
    transform: none;
}

.section-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle,
.section-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.section-content {
    color: var(--text-secondary);
}

.section-content p {
    margin-bottom: 1.25rem;
}

.section-content blockquote {
    border-left: 3px solid var(--primary-light);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-primary);
}

.section-footnote {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: 3rem;
    font-style: italic;
}

.section-closing {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-closing h2 {
    margin-bottom: 0.5rem;
}

.section-closing p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.section-pattern {
    position: relative;
}

.section-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(184, 184, 184, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all var(--duration-normal) var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #888888 0%, #B8B8B8 50%, #888888 100%);
    background-size: 200% 200%;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background-position: 100% 100%;
    box-shadow: 0 0 40px rgba(184, 184, 184, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(184, 184, 184, 0.5);
    font-weight: 500;
}

.btn-outline:hover {
    background: rgba(184, 184, 184, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(184, 184, 184, 0.2);
}

.btn-black {
    background: var(--black);
    color: var(--text-primary);
    border: 1px solid var(--black);
}

.btn-black:hover {
    background: #1a1a1a;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--duration-fast) ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Magnetic Button Effect */
.btn-magnetic,
.magnetic {
    position: relative;
}

.btn-magnetic .btn-text {
    position: relative;
    z-index: 1;
    transition: transform var(--duration-fast) ease;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: visible;
    padding-top: 120px;
    padding-bottom: 210px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after,
.hero-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.43) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content .container {
    /* Keep container padding from base styles, limit text width */
}

.hero-label,
.hero-title,
.hero-subtitle,
.hero-buttons {
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
}

.hero-title .word-inner {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Stats Bar - Overlaps hero and next section */
.hero-stats {
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-stats-inner,
.stats-bar {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(184, 184, 184, 0.2);
    border-radius: 20px;
    padding: 2.5rem 3.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.4) 50%, transparent 100%);
}

.stats-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 184, 184, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-stat,
.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    white-space: nowrap;
}

.hero-stat:not(:last-child)::after,
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, rgba(184, 184, 184, 0.25) 50%, transparent 100%);
}

.hero-stat-number,
.stat-number,
.stat-number-text {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 30%, #B8B8B8 70%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-suffix {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B8B8B8 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: super;
}

.hero-stat-label,
.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100dvh;
        padding: 130px 0 40px 0;
        justify-content: center;
        align-items: stretch;
        overflow: visible;
    }

    .hero-content {
        padding-top: 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .hero-buttons .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
        margin-top: 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-label {
        margin-bottom: 0.75rem;
        font-size: 0.6875rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero + .section {
        padding-top: var(--section-padding-mobile);
    }

    .hero-stats-inner,
    .stats-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        padding: 1.75rem;
    }

    .hero-stat:nth-child(2)::after,
    .stat-item:nth-child(2)::after {
        display: none;
    }

    .hero-stat-number,
    .stat-number,
    .stat-number-text {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-inner,
    .stats-bar {
        padding: 1.25rem;
        gap: 1rem;
    }

    .hero-stat-number,
    .stat-number,
    .stat-number-text {
        font-size: 1.875rem;
    }

    .hero-stat-label,
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ================================================
   PAGE HERO (Subpages)
   ================================================ */
.page-hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.page-hero-bg,
.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero-bg img,
.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-bg::after,
.page-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.43) 50%, rgba(0, 0, 0, 0) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--duration-fast) ease;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--primary-light);
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

@media (max-width: 768px) {
    .page-hero {
        height: 100dvh;
        padding-top: 60px;
    }

    .page-hero-content {
        padding-bottom: 40px;
    }

    .page-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }
}

/* ================================================
   CARDS
   ================================================ */
.card {
    background: var(--bg-card);
    border: var(--border-silver);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-premium);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 184, 184, 0.5);
    box-shadow: var(--shadow-card-hover);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-premium);
}

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

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--duration-fast) ease;
}

.card-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-fast) ease;
}

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

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

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

/* Service Card Overlay Style */
.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
}

.service-card-bg,
.service-card-image {
    position: absolute;
    inset: 0;
}

.service-card-bg img,
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-premium);
}

.service-card:hover .service-card-bg img,
.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

/* Service card overlay - using ::after for automatic overlay */
.service-card-image::after,
.service-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.5) 100%);
    transition: background var(--duration-normal) ease;
    pointer-events: none;
}

.service-card:hover .service-card-image::after,
.service-card:hover .service-card-bg::after {
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.7) 100%);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
    transition: background var(--duration-normal) ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 1;
    transform: translateY(0);
    transition: transform var(--duration-normal) var(--ease-premium);
}

.service-card:hover .service-card-content {
    transform: translateY(-5px);
}

.service-card-title,
.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: color var(--duration-fast) ease;
}

.service-card:hover .service-card-content h3 {
    color: var(--primary-light);
}

.service-card-text,
.service-card-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.service-card-link,
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--duration-fast) ease;
}

.service-card-link svg,
.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-fast) ease;
}

.service-card-link:hover svg,
.service-card:hover .service-link svg {
    transform: translateX(6px);
}

.service-card:hover .service-link {
    color: var(--text-primary);
}

/* Service card border glow on hover */
.service-card {
    border: 1px solid rgba(184, 184, 184, 0.1);
    transition: all var(--duration-normal) var(--ease-premium);
}

.service-card:hover {
    border-color: rgba(184, 184, 184, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(184, 184, 184, 0.1);
}

/* Bespoke Services Note Card */
.service-card-note {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid rgba(184, 184, 184, 0.15);
    border-radius: 20px;
    padding: 2rem;
}

.service-card-note-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card-note-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.service-card-note .service-link {
    color: var(--primary-light);
}

.service-card-note:hover .service-link svg {
    transform: translateX(6px);
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
    background: linear-gradient(180deg, var(--bg-section) 0%, rgba(20, 20, 20, 1) 50%, var(--bg-section) 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

/* Stats Card - Contained version */
.stats-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 1px solid rgba(184, 184, 184, 0.15);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.3) 50%, transparent 100%);
}

.stats-card .stats-grid {
    margin: 0;
}

.stats-card .stat-block {
    background: transparent;
    border: none;
    box-shadow: none;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.3) 50%, transparent 100%);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.3) 50%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

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

.stat-block {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
    border: 1px solid rgba(184, 184, 184, 0.12);
    border-radius: 20px;
    transition: all var(--duration-normal) var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.stat-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.stat-block:hover {
    border-color: rgba(184, 184, 184, 0.35);
    box-shadow: 0 0 60px rgba(184, 184, 184, 0.15), 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
}

.stat-block:hover::before {
    opacity: 1;
}

.stat-block .stat-number {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: inline;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 30%, #B8B8B8 70%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-block .stat-suffix {
    font-family: var(--font-accent);
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B8B8B8 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: super;
}

.stat-text {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

/* ================================================
   FEATURE BLOCKS
   ================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

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

.feature-block {
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.7) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 20px;
    transition: all var(--duration-normal) var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.3) 50%, transparent 100%);
}

.feature-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(184, 184, 184, 0.05) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.feature-block:hover {
    border-color: rgba(184, 184, 184, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(184, 184, 184, 0.08);
}

.feature-block:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8) 0%, rgba(25, 25, 25, 0.9) 100%);
    border: 1px solid rgba(184, 184, 184, 0.15);
    border-radius: 20px;
    transition: all var(--duration-normal) var(--ease-premium);
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(184, 184, 184, 0.2) 0%, transparent 50%, rgba(184, 184, 184, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    z-index: -1;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-light);
    fill: none;
    transition: all var(--duration-normal) var(--ease-premium);
}

.feature-block:hover .feature-icon {
    box-shadow: 0 0 40px rgba(184, 184, 184, 0.25), 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(184, 184, 184, 0.4);
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.9) 0%, rgba(30, 30, 30, 1) 100%);
    transform: scale(1.05);
}

.feature-block:hover .feature-icon::before {
    opacity: 1;
}

.feature-block:hover .feature-icon svg {
    stroke: var(--white);
    filter: drop-shadow(0 0 8px rgba(184, 184, 184, 0.5));
}

.feature-title,
.feature-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: all var(--duration-fast) ease;
    position: relative;
    z-index: 1;
}

.feature-block:hover h3 {
    background: linear-gradient(135deg, #FFFFFF 0%, #B8B8B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text,
.feature-block p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
    background: var(--bg-section);
    border-top: var(--border-silver);
    border-bottom: var(--border-silver);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ================================================
   TESTIMONIALS - 2 Column Slider with Read More
   ================================================ */
.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-track {
    flex: 1;
    overflow: hidden;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 1px solid rgba(184, 184, 184, 0.15);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-premium);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 184, 184, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.3) 50%, transparent 100%);
}

.testimonial-quote {
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-quote svg {
    width: 32px;
    height: 32px;
}

/* Testimonial text with collapsible height */
.testimonial-text-wrapper {
    position: relative;
    max-height: 130px;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.5rem;
}

.testimonial-text-wrapper.expanded {
    max-height: 600px;
}

.testimonial-text-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(15, 15, 15, 0.98));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.testimonial-text-wrapper.expanded::after {
    opacity: 0;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-read-more {
    background: none;
    border: none;
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-bottom: 1rem;
}

.testimonial-read-more:hover {
    color: var(--text-primary);
}

.testimonial-read-more svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.testimonial-read-more.active svg {
    transform: rotate(180deg);
}

.testimonial-read-more.hidden {
    display: none;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
    border-left: 2px solid rgba(184, 184, 184, 0.3);
    margin-top: auto;
}

.author-name {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Slider Arrows */
.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 1px solid rgba(184, 184, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
    border-color: rgba(184, 184, 184, 0.4);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(184, 184, 184, 0.15);
}

.slider-arrow svg {
    stroke: var(--primary-light);
    transition: stroke var(--duration-fast) ease;
}

.slider-arrow:hover svg {
    stroke: var(--text-primary);
}

/* Slider dots navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(184, 184, 184, 0.2);
    border: 1px solid rgba(184, 184, 184, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(184, 184, 184, 0.4);
}

@media (max-width: 768px) {
    .testimonial-slider {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-track {
        width: 100%;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .slider-arrow {
        display: none;
    }

    .testimonial-text {
        font-size: 0.9375rem;
    }
}

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all var(--duration-normal) var(--ease-premium);
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 184, 184, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-number {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-silver-simple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .process-number {
        font-size: 2.5rem;
    }
}

/* ================================================
   SERVICES PAGE - 3 Column Grid
   ================================================ */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-page-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all var(--duration-normal) var(--ease-premium);
}

.service-page-card:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 184, 184, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-page-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-premium);
}

.service-page-card:hover .service-page-image img {
    transform: scale(1.1);
}

.service-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

.service-page-content {
    padding: 2rem;
    position: relative;
}

.service-page-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(184, 184, 184, 0.15) 0%, rgba(184, 184, 184, 0.05) 100%);
    border: 1px solid rgba(184, 184, 184, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--duration-fast) ease;
}

.service-page-icon svg {
    stroke: var(--primary-light);
    transition: stroke var(--duration-fast) ease;
}

.service-page-card:hover .service-page-icon {
    background: linear-gradient(135deg, rgba(184, 184, 184, 0.25) 0%, rgba(184, 184, 184, 0.1) 100%);
    border-color: rgba(184, 184, 184, 0.4);
}

.service-page-card:hover .service-page-icon svg {
    stroke: var(--text-primary);
}

.service-page-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-page-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--duration-fast) ease;
}

.service-page-link svg {
    transition: transform var(--duration-fast) ease;
}

.service-page-link:hover {
    color: var(--text-primary);
}

.service-page-link:hover svg {
    transform: translateX(5px);
}

/* CTA Card Variation */
.service-page-card-cta {
    background: linear-gradient(145deg, rgba(184, 184, 184, 0.08) 0%, rgba(184, 184, 184, 0.03) 100%);
    border: 1px dashed rgba(184, 184, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.service-page-card-cta .service-page-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-page-card-cta .service-page-icon {
    background: linear-gradient(135deg, rgba(184, 184, 184, 0.1) 0%, transparent 100%);
    border-style: dashed;
}

.service-page-card-cta:hover {
    border-style: solid;
    background: linear-gradient(145deg, rgba(184, 184, 184, 0.12) 0%, rgba(184, 184, 184, 0.05) 100%);
}

@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .service-page-image {
        height: 180px;
    }

    .service-page-content {
        padding: 1.5rem;
    }
}

/* ================================================
   SERVICE DETAIL PAGE - Enhanced Engaging Layout
   ================================================ */

/* Service Intro Grid */
.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.service-intro-image .image-card,
.service-intro-image .image-card img {
    height: 100%;
}

.service-intro-image .image-card img {
    min-height: 400px;
}

.service-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-intro-content p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-intro-content p:last-of-type {
    margin-bottom: 2rem;
}

.service-intro-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 0, 0, 0.2);
}

.image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184, 184, 184, 0.2);
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

.image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.image-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) ease;
}

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

/* Decorative accent for image */
.service-intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(184, 184, 184, 0.2);
    border-radius: 20px;
    z-index: -1;
}

.service-intro-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(184, 184, 184, 0.1) 0%, transparent 100%);
    border-radius: 16px;
    z-index: -1;
}

/* Approach Section */
.section-alt {
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(15, 15, 15, 1) 100%);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.approach-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-medium) ease;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-medium) ease;
}

.approach-card:hover {
    border-color: rgba(184, 184, 184, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.approach-card:hover::before {
    opacity: 1;
}

.approach-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, rgba(184, 184, 184, 0.3) 0%, rgba(184, 184, 184, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.approach-content h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.approach-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Service Features Layout */
.service-features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-features-image,
.features-image {
    position: sticky;
    top: 120px;
}

.service-features-image .image-card img,
.features-image .image-card img {
    height: 500px;
}

.service-features-content h2,
.features-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-features-content > p,
.features-content > p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Lead text for intro paragraphs */
.lead-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Section intro text */
.section-intro {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Feature item text styling */
.feature-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Image card large variant */
.image-card-large img {
    height: 550px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Two-column grid variant for checklist items */
.features-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 12px;
    transition: all var(--duration-fast) ease;
}

.feature-item:hover {
    border-color: rgba(184, 184, 184, 0.2);
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6) 0%, rgba(25, 25, 25, 0.4) 100%);
}

.feature-icon-small {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-icon-small svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-light);
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Other Services Section */
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.other-service-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--duration-medium) ease;
    text-decoration: none;
}

.other-service-card:hover {
    border-color: rgba(184, 184, 184, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.other-service-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.other-service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.other-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) ease;
}

.other-service-card:hover .other-service-image img {
    transform: scale(1.1);
}

.other-service-content {
    padding: 1.25rem;
}

.other-service-content h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color var(--duration-fast) ease;
}

.other-service-card:hover .other-service-content h3 {
    color: var(--primary-light);
}

.other-service-content span,
.other-service-link {
    color: var(--text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--duration-fast) ease;
}

.other-service-content span svg,
.other-service-link svg {
    transition: transform var(--duration-fast) ease;
}

.other-service-card:hover .other-service-content span svg,
.other-service-card:hover .other-service-link svg {
    transform: translateX(5px);
}

.other-service-card:hover .other-service-link {
    color: var(--primary-light);
}

/* Contact Info Block (for Close Protection page) */
.contact-info-block {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(184, 184, 184, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-info-block h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-info-block p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-info-block a {
    color: var(--primary-light);
    transition: color var(--duration-fast) ease;
}

.contact-info-block a:hover {
    color: var(--text-primary);
}

/* Service Detail Page Responsive */
@media (max-width: 1024px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-intro-grid {
        align-items: center;
    }

    .service-intro-image {
        order: -1;
    }

    .service-intro-image .image-card,
    .service-intro-image .image-card img {
        height: auto;
    }

    .service-intro-image .image-card img {
        min-height: 300px;
    }

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

    .service-features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-image,
    .service-features-image {
        order: -1;
        position: static;
    }

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

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

    .approach-card {
        padding: 1.5rem;
    }

    .approach-number {
        font-size: 2.5rem;
    }

    .image-card img {
        height: 350px;
    }

    .features-image .image-card img,
    .service-features-image .image-card img {
        height: 350px;
    }

    .image-card-large img {
        height: 400px;
    }

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

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

    .other-service-image {
        height: 140px;
    }

    .feature-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-icon-small {
        margin-top: 0;
    }
}

/* ================================================
   COVERAGE PAGE STYLES
   ================================================ */

/* Coverage Zones Grid */
.coverage-zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.coverage-zone-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--duration-normal) ease;
    position: relative;
    overflow: hidden;
}

.coverage-zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-silver-simple);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.coverage-zone-card:hover {
    border-color: rgba(184, 184, 184, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.coverage-zone-card:hover::before {
    opacity: 1;
}

.zone-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(184, 184, 184, 0.1) 0%, rgba(88, 88, 88, 0.1) 100%);
    border-radius: 50%;
    border: 1px solid rgba(184, 184, 184, 0.15);
}

.zone-icon svg {
    stroke: var(--primary-light);
}

.zone-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    background: rgba(184, 184, 184, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.coverage-zone-card h3 {
    color: var(--text-primary);
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.zone-region {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.zone-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.zone-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(184, 184, 184, 0.05);
}

.zone-features li:last-child {
    border-bottom: none;
}

.zone-features li svg {
    flex-shrink: 0;
    stroke: var(--primary-light);
}

.zone-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 184, 184, 0.1);
}

.zone-cities span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    background: rgba(184, 184, 184, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(184, 184, 184, 0.08);
}

/* Head Office Block */
.head-office-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 24px;
    padding: 3rem;
}

.office-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.office-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.office-detail svg {
    flex-shrink: 0;
    stroke: var(--primary-light);
    margin-top: 0.25rem;
}

.office-detail div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.office-detail strong {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.office-detail span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.office-detail a {
    color: var(--primary-light);
    transition: color var(--duration-fast) ease;
}

.office-detail a:hover {
    color: var(--text-primary);
}

.office-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(184, 184, 184, 0.1);
}

.office-map iframe {
    display: block;
}

/* Coverage Page Responsive */
@media (max-width: 1024px) {
    .coverage-zones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .head-office-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .office-map {
        order: -1;
    }
}

@media (max-width: 768px) {
    .coverage-zone-card {
        padding: 1.5rem;
    }

    .zone-icon {
        width: 60px;
        height: 60px;
    }

    .zone-icon svg {
        width: 32px;
        height: 32px;
    }

    .head-office-block {
        padding: 1.5rem;
    }
}

/* ================================================
   CAREERS PAGE STYLES
   ================================================ */

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

.career-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    transition: all var(--duration-normal) ease;
}

.career-stat:hover {
    border-color: rgba(184, 184, 184, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Benefits Showcase Layout */
.benefits-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.benefits-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .benefits-grid-2col {
        grid-template-columns: 1fr;
    }
}

.benefits-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-large-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    transition: all var(--duration-normal) ease;
}

.benefit-large-card:hover {
    border-color: rgba(184, 184, 184, 0.25);
    transform: translateX(10px);
}

.benefit-large-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(184, 184, 184, 0.1) 0%, rgba(88, 88, 88, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(184, 184, 184, 0.15);
}

.benefit-large-icon svg {
    stroke: var(--primary-light);
}

.benefit-large-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-large-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* Small Benefits Grid */
.benefits-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-small-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid rgba(184, 184, 184, 0.08);
    border-radius: 12px;
    transition: all var(--duration-normal) ease;
}

.benefit-small-card:hover {
    border-color: rgba(184, 184, 184, 0.2);
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6) 0%, rgba(30, 30, 30, 0.4) 100%);
}

.benefit-small-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 184, 184, 0.08);
    border-radius: 8px;
}

.benefit-small-icon svg {
    stroke: var(--primary-light);
}

.benefit-small-card span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Progression Block */
.info-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.progression-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(88, 88, 88, 0.15) 0%, rgba(40, 40, 40, 0.1) 100%);
    border: 1px solid rgba(184, 184, 184, 0.15);
    border-radius: 20px;
    border-left: 4px solid var(--primary-light);
}

.progression-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 184, 184, 0.1);
    border-radius: 50%;
}

.progression-icon svg {
    stroke: var(--primary-light);
}

.progression-content h3 {
    color: var(--text-primary);
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.progression-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.progression-content p:last-child {
    margin-bottom: 0;
}

/* Apply Block */
.apply-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.apply-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.apply-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.apply-buttons {
    margin-bottom: 2rem;
}

.apply-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.apply-contact {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 184, 184, 0.1);
}

.apply-contact p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.apply-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-size: 0.9375rem;
    transition: color var(--duration-fast) ease;
}

.apply-contact a:hover {
    color: var(--text-primary);
}

.apply-contact a svg {
    stroke: currentColor;
}

/* Careers Page Responsive */
@media (max-width: 1024px) {
    .careers-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
    }

    .apply-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .careers-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .career-stat {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .benefit-large-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .benefits-grid-small {
        grid-template-columns: 1fr;
    }

    .progression-block {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .progression-icon {
        margin: 0 auto;
    }
}

/* ================================================
   CTA BANNER - Dark Box Style (overlaps sections)
   ================================================ */
.cta-banner {
    position: relative;
    z-index: 20;
    padding: 0;
    margin-top: -80px;
    margin-bottom: -80px;
}

.cta-banner .container {
    position: relative;
}

.cta-content {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(184, 184, 184, 0.2);
    border-radius: 20px;
    padding: 4rem 4rem;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.4) 50%, transparent 100%);
}

.cta-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 184, 184, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 30%, #B8B8B8 70%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-group,
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-dark {
    background: linear-gradient(135deg, #888888 0%, #B8B8B8 50%, #888888 100%);
    background-size: 200% 200%;
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-dark:hover {
    background-position: 100% 100%;
    box-shadow: 0 0 30px rgba(184, 184, 184, 0.4);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(184, 184, 184, 0.5);
    padding: 1rem 2rem;
    font-weight: 500;
}

.btn-outline-dark:hover {
    background: rgba(184, 184, 184, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(184, 184, 184, 0.2);
}

/* Section before CTA needs extra bottom padding */
.cta-banner-wrapper,
#testimonials {
    padding-bottom: calc(var(--section-padding) + 80px);
}

@media (max-width: 768px) {
    .cta-banner {
        margin-top: -60px;
        margin-bottom: -60px;
    }

    .cta-content {
        padding: 3rem 1.25rem;
        margin: 0;
    }

    #testimonials {
        padding-bottom: calc(var(--section-padding-mobile) + 60px);
    }
}

/* ================================================
   TWO COLUMN LAYOUTS
   ================================================ */
.two-col,
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col-55 {
    grid-template-columns: 55% 45%;
}

.two-col-reverse,
.reverse-mobile {
    direction: rtl;
}

.two-col-reverse > *,
.reverse-mobile > * {
    direction: ltr;
}

.column-text {
    /* Text column styling */
}

.two-col-image,
.column-image {
    position: relative;
}

.two-col-image img,
.column-image img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.two-col-image-accent,
.image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 60%;
    border: 3px solid var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
}

.two-col-image-accent img,
.image-accent img {
    border-radius: 8px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Image Reveal Effect */
.image-reveal {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-reveal img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-premium);
}

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

.image-accent {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Story layout (About page) */
.story-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.story-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block .column-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.story-closing {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-closing p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.story-cta-text {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.story-cta-text a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.story-cta-text a:hover {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .two-col,
    .two-col-55,
    .two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .two-col-reverse,
    .reverse-mobile {
        direction: ltr;
    }

    .two-col-image-accent,
    .image-accent {
        position: static;
        width: 100%;
        margin-top: 1rem;
        border: none;
    }
}

@media (max-width: 768px) {
    /* Mobile: all left-aligned for consistency */
    .column-text .section-label,
    .column-text .section-title,
    .column-text h2,
    .column-text h3,
    .column-text .section-content,
    .column-text .section-content p,
    .column-text p {
        text-align: left;
    }

    .column-text .section-label::after {
        left: 0;
        transform: none;
    }

    .story-intro {
        text-align: left;
    }

    .story-intro .section-label::after {
        left: 0;
        transform: none;
    }
}

/* ================================================
   GRID LAYOUTS
   ================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

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

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

@media (max-width: 1024px) {
    .grid-4,
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   FORMS
   ================================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: var(--border-silver);
    border-radius: 8px;
    transition: all var(--duration-fast) ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: var(--glow-silver);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

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

/* ================================================
   SIDEBAR (Service Pages)
   ================================================ */
.content-with-sidebar,
.service-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
}

.service-main-content {
    /* Main content area styling */
}

.sidebar,
.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-block,
.sidebar-card {
    background: var(--bg-card);
    border: var(--border-silver);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-title,
.sidebar-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: var(--border-silver);
}

.content-block {
    color: var(--text-secondary);
}

.content-block p {
    margin-bottom: 1.25rem;
}

.content-list,
.service-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.content-list li,
.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.content-list li::before,
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
}

.contact-info-block {
    background: var(--bg-card);
    border: var(--border-silver);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-info-block h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-info-block a {
    color: var(--primary-light);
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.sidebar-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all var(--duration-fast) ease;
}

.sidebar-links a:last-child {
    border-bottom: none;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.sidebar-cta {
    background: var(--gradient-subtle);
    border: var(--border-silver);
    border-radius: 12px;
    text-align: center;
    padding: 2rem;
}

.sidebar-cta h3,
.sidebar-cta h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.sidebar-cta a,
.cta-phone {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
}

.sidebar-cta a:hover,
.cta-phone:hover {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .content-with-sidebar,
    .service-page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar,
    .service-sidebar {
        position: static;
    }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--black) 100%);
    padding-top: 10rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.3) 50%, transparent 100%);
}

.footer-top {
    height: 0;
}

.footer-main {
    padding-bottom: 4rem;
}

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

.footer-column {
    /* Individual footer column */
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-silver-simple);
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo img {
    max-height: 60px;
    filter: drop-shadow(0 0 20px rgba(184, 184, 184, 0.1));
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    transition: all var(--duration-fast) ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: width var(--duration-fast) ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 1rem;
}

.footer-links a:hover::before {
    width: 0.5rem;
}

.footer-contact-item,
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color var(--duration-fast) ease;
}

.footer-contact li:hover {
    color: var(--text-primary);
}

.footer-contact-item svg,
.footer-contact li svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-light);
    fill: none;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 184, 184, 0.3) 50%, transparent 100%);
}

.footer-companies-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-companies-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(184, 184, 184, 0.08);
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(184, 184, 184, 0.05);
    border: 1px solid rgba(184, 184, 184, 0.15);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all var(--duration-fast) ease;
}

.company-badge:hover {
    background: rgba(184, 184, 184, 0.1);
    border-color: rgba(184, 184, 184, 0.25);
}

.company-badge em {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-copyright::before {
    display: none;
}

.footer-copyright a {
    color: var(--primary-light);
}

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

    .footer {
        padding-top: 8rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-column h4::after {
        left: 0;
        transform: none;
    }

    .footer-contact-item,
    .footer-contact li {
        justify-content: flex-start;
    }

    .footer-links a:hover {
        padding-left: 1rem;
    }

    .footer {
        padding-top: 6rem;
    }

    .footer-bottom {
        padding: 1.5rem;
        margin-top: 2rem;
        text-align: center;
    }

    .footer-companies-list {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .company-badge {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .footer-copyright {
        justify-content: center;
    }
}

/* ================================================
   ANIMATIONS & REVEALS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all var(--duration-slow) var(--ease-premium);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all var(--duration-slow) var(--ease-premium);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all var(--duration-slow) var(--ease-premium);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--duration-slow) var(--ease-premium);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Children */
.stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--duration-slow) var(--ease-premium);
}

.stagger.active > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.active > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Image Reveal */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-light);
    z-index: 1;
    transform: translateX(-100%);
}

.image-reveal.active::before {
    animation: imageWipe 1s var(--ease-premium) forwards;
}

@keyframes imageWipe {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* Text Clip Reveal */
.text-clip {
    overflow: hidden;
}

.text-clip-inner {
    display: block;
    transform: translateY(100%);
    transition: transform 0.8s var(--ease-premium);
}

.text-clip.active .text-clip-inner {
    transform: translateY(0);
}

/* Shimmer Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerAnim 3s ease-in-out infinite;
}

@keyframes shimmerAnim {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Line Grow */
.line-grow {
    width: 0;
    height: 1px;
    background: var(--gradient-silver-simple);
    transition: width 1s var(--ease-premium);
}

.line-grow.active {
    width: 100%;
}

/* ================================================
   PARALLAX
   ================================================ */
.parallax-container {
    overflow: hidden;
    position: relative;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
    will-change: transform;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   DECORATIVE ELEMENTS
   ================================================ */
.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.decoration-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: var(--gradient-silver-simple);
    opacity: 0.3;
}

.decoration-line-horizontal {
    height: 1px;
    width: 100px;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ================================================
   RESPONSIVE UTILITIES
   ================================================ */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ================================================
   TENANT BLOCKS (About Page)
   ================================================ */
.tenants-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tenant-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(17, 17, 17, 0.6) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    transition: all var(--duration-normal) var(--ease-premium);
}

.tenant-block:hover {
    border-color: rgba(184, 184, 184, 0.25);
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tenant-number {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-silver-simple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.tenant-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tenant-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tenant-block {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .tenant-block:hover {
        transform: translateY(-5px);
    }
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    padding: 3rem;
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 184, 184, 0.15);
    border-radius: 8px;
    transition: all var(--duration-fast) ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(184, 184, 184, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

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

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

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

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(17, 17, 17, 0.6) 100%);
    border: 1px solid rgba(184, 184, 184, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 184, 184, 0.1);
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-item svg {
    stroke: var(--primary-light);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--primary-light);
    transition: color var(--duration-fast) ease;
}

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

.contact-item span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.company-info ul {
    margin: 1rem 0;
    padding-left: 1rem;
}

.company-info li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.company-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.company-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

/* page-hero-short removed — all page heroes are 100vh */

/* Page Hero Mobile */
@media (max-width: 768px) {
    .page-hero {
        height: 100dvh;
        min-height: unset;
        padding-top: 60px;
    }

    .page-hero-content {
        padding-bottom: 60px;
        text-align: center;
    }

    .page-hero-content .breadcrumb {
        justify-content: center;
    }

    .page-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Service intro — left-align all on mobile */
    .service-intro-content {
        text-align: left;
    }

    /* Features section — left-align all on mobile */
    .service-features-content,
    .features-content {
        text-align: left;
    }

    /* Approach cards — left-align on mobile */
    .approach-card {
        text-align: left;
    }
}

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

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

    .contact-form-wrapper {
        padding: 2rem;
    }
}
