/* ===========================================
   HIZO DESIGN SYSTEM
   Extracted from existing site styles
   =========================================== */

:root {
    /* Brand Colors */
    --hizo-blue: #1EA5DE;
    --hizo-blue-dark: #1794c7;
    --hizo-navy: #0A243C;
    --hizo-navy-light: #103558;
    --hizo-navy-dark: #11375a;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-sm: 13px;
    --font-size-base: 16px;
    --font-size-md: 20px;
    --font-size-lg: 24px;
    --font-size-xl: 36px;
    --font-size-2xl: 42px;
    --font-size-3xl: 56px;

    /* Spacing */
    --spacing-xs: 0.44rem;
    --spacing-sm: 0.67rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.25rem;
    --spacing-2xl: 3.38rem;
    --spacing-3xl: 5.06rem;

    /* Border Radius - matching UIkit 17px */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 17px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 6px 6px 9px rgba(0,0,0,0.2);
    --shadow-xl: 12px 12px 50px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===========================================
   BUTTONS
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--hizo-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--hizo-navy);
    border: 2px solid var(--hizo-navy);
}

.btn-secondary:hover {
    background: var(--hizo-navy);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--hizo-navy);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

/* ===========================================
   TOPBAR
   =========================================== */

.topbar {
    background: var(--hizo-navy);
    padding: 10px 0;
    font-size: var(--font-size-sm);
}

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

.topbar-left {
    display: flex;
    gap: var(--spacing-lg);
}

.topbar-left a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.topbar-left a:hover {
    color: var(--hizo-blue);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.topbar-right a {
    color: var(--white);
    transition: color 0.3s;
}

.topbar-right a:hover {
    color: var(--hizo-blue);
}

.topbar-right .lang-switcher {
    background: var(--hizo-blue);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-left: 8px;
    transition: background 0.3s, transform 0.2s;
}

.topbar-right .lang-switcher:hover {
    background: var(--hizo-blue-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* ===========================================
   HEADER / NAVIGATION
   =========================================== */

.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo svg {
    height: 50px;
    width: auto;
}

.logo-tagline {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--hizo-navy);
    padding: 8px 12px;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--hizo-blue);
}

.nav-cta {
    background: var(--hizo-blue);
    color: var(--white) !important;
    padding: 12px 24px;
}

.nav-cta:hover {
    background: var(--hizo-blue-dark);
}

/* Mega Menu Dropdown */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: var(--spacing-xl);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: var(--white);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.nav-dropdown-mega {
    min-width: 700px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.nav-dropdown-section {
    padding: 0;
}

.nav-dropdown-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--gray-100);
}

.nav-dropdown-links {
    list-style: none;
}

.nav-dropdown-links li {
    margin-bottom: 2px;
}

.nav-dropdown-links a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 10px 12px;
    font-size: 14px;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.nav-dropdown-links a:hover {
    background: var(--gray-50);
    color: var(--hizo-blue);
}

.nav-dropdown-links a i {
    font-size: 18px;
    color: var(--hizo-blue);
    opacity: 0.7;
}

.nav-dropdown-links a:hover i {
    opacity: 1;
}

.nav-dropdown-featured {
    background: linear-gradient(135deg, var(--hizo-navy), var(--hizo-navy-light));
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    color: var(--white);
}

.nav-dropdown-featured-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.nav-dropdown-featured-text {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.nav-dropdown-featured .btn {
    font-size: 13px;
    padding: 10px 20px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--hizo-navy);
}

.mobile-menu-toggle i {
    font-size: 28px;
}

/* Hide mobile-only nav elements on desktop */
.mobile-nav-header,
.mobile-nav-footer {
    display: none;
}

/* On desktop, mobile-nav-body acts as a transparent wrapper */
.mobile-nav-body {
    display: contents;
}

@media (max-width: 768px) {
    .mobile-nav-header,
    .mobile-nav-footer {
        display: flex;
    }

    .mobile-nav-body {
        display: block;
    }
}

/* ===========================================
   HERO SECTION - Matching old site design
   =========================================== */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #0d2e4a 100%);
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

/* Background pattern image */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/photos/HIZO-Solutions-Enveloppe-du-batiment.png') center center no-repeat;
    background-size: contain;
    opacity: 1;
    z-index: 0;
    background-position: bottom;
}

/* Floating geometric shapes container */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    opacity: 0.15;
    transition: transform 0.3s ease;
}

.hero-shape svg {
    display: block;
}

/* Triangle 1 - Top right, white */
.hero-shape-triangle-1 {
    top: 15%;
    right: 20%;
    color: var(--white);
    transform: rotate(-60deg);
    animation: float-shape-1 8s ease-in-out infinite;
}

/* Triangle 2 - Top left, blue */
.hero-shape-triangle-2 {
    top: 25%;
    left: 8%;
    color: var(--hizo-blue);
    transform: rotate(60deg);
    animation: float-shape-2 10s ease-in-out infinite;
}

/* Checkmark - Center right, white */
.hero-shape-check {
    top: 35%;
    right: 5%;
    color: var(--white);
    opacity: 0.1;
    transform: rotate(-30deg);
    animation: float-shape-3 12s ease-in-out infinite;
}

/* Trapeze 1 - Bottom left, blue */
.hero-shape-trapeze-1 {
    bottom: 25%;
    left: 15%;
    color: var(--hizo-blue);
    transform: rotate(-100deg);
    animation: float-shape-4 9s ease-in-out infinite;
}

/* Trapeze 2 - Bottom right, white */
.hero-shape-trapeze-2 {
    bottom: 15%;
    right: 30%;
    color: var(--white);
    transform: rotate(-90deg);
    animation: float-shape-5 11s ease-in-out infinite;
}

/* Float animations for shapes */
@keyframes float-shape-1 {
    0%, 100% { transform: rotate(-60deg) translateY(0); }
    50% { transform: rotate(-70deg) translateY(-15px); }
}

@keyframes float-shape-2 {
    0%, 100% { transform: rotate(60deg) translateY(0); }
    50% { transform: rotate(50deg) translateY(10px); }
}

@keyframes float-shape-3 {
    0%, 100% { transform: rotate(-30deg) translateX(0); }
    50% { transform: rotate(-40deg) translateX(-10px); }
}

@keyframes float-shape-4 {
    0%, 100% { transform: rotate(-100deg) translateY(0); }
    50% { transform: rotate(-90deg) translateY(-20px); }
}

@keyframes float-shape-5 {
    0%, 100% { transform: rotate(-90deg) translateY(0); }
    50% { transform: rotate(-80deg) translateY(15px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* Hero Visual - Left side image */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Hero Text - Right side */
.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-md);
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Hero Stats (if used) */
.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--hizo-blue);
}

.hero-stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: var(--spacing-xl);
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-shape-check,
    .hero-shape-trapeze-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-shapes {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 10px;
        font-size: 14px;
    }
}

/* ===========================================
   SERVICES SECTION
   =========================================== */

.services {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.page-hero-content h1, .service-hero-content h1 {
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.benefit-card h3, .solution-content h3 {
    text-transform: uppercase !important;
}


.section-label {
    display: inline-block;
    color: var(--hizo-blue);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-intro {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Service category tabs with icons */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.service-tab {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 16px 32px;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

.service-tab:hover {
    border-color: var(--hizo-blue);
    color: var(--hizo-blue);
}

.service-tab.active {
    background: var(--hizo-navy);
    border-color: var(--hizo-navy);
    color: var(--white);
}

.service-tab-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--hizo-blue);
    font-size: 24px;
    transition: all 0.3s;
}

.service-tab.active .service-tab-icon {
    background: rgba(30, 165, 222, 0.2);
    color: var(--white);
}

.service-tab:hover .service-tab-icon {
    background: rgba(30, 165, 222, 0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

/* Tab panels */
.services-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.services-panel.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-grid.services-grid-4 .service-card {
    padding: 20px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

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

.service-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A243C;
    margin: 0 0 8px 0;
}

.service-card-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1EA5DE;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.service-card-link:hover {
    gap: 10px;
}

.service-card-link svg {
    flex-shrink: 0;
}

.service-card:not(.service-card-featured) {
    padding: 0px;
}

/* ===========================================
   SERVICES HUB PAGE STYLES
   =========================================== */

.services-category {
    padding: var(--spacing-3xl) 0;
}

.services-category-alt {
    background: var(--gray-50);
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

/* Service Card Link - ensure no text decoration */
.service-card-link {
    text-decoration: none;
}

/* Service Card with Icon (Commercial services) */
.service-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.1), rgba(30, 165, 222, 0.05));
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.service-card-icon i {
    font-size: 28px;
    color: var(--hizo-blue);
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
}

.service-card:hover .service-card-icon i {
    color: var(--white);
}

.footer-cta {
    display: none !important;
}


.service-card:not(.service-card-featured) .service-card-title {
    margin-bottom: var(--spacing-sm);
}

.service-card-desc {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.service-card-link-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hizo-blue);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: gap 0.3s ease;
}

.service-card:hover .service-card-link-text {
    gap: 10px;
}

.service-card-link-text i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link-text i {
    transform: translateX(3px);
}

/* Service Card Featured (with image) */
.service-card-featured {
    padding: 0;
}

.service-card-featured .service-card-content {
    padding: var(--spacing-lg);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Why Choose Section */
.why-choose {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--hizo-navy), var(--hizo-navy-light));
    color: var(--white);
}

.why-choose .section-label {
    color: var(--hizo-blue);
}

.why-choose .section-title {
    color: var(--white);
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    border-radius: var(--radius-lg);
    margin: 0 auto var(--spacing-md);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.feature-item p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Services Hub Page Responsive */
@media (max-width: 1024px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

/* ===========================================
   REGIONS SECTION - Redesigned
   =========================================== */

.regions {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Map Container - Side by side layout */
.regions-map-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: stretch;
    margin-bottom: var(--spacing-2xl);
}

/* Map Visual */
.regions-map-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
}

.regions-map-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 36, 60, 0.3), rgba(10, 36, 60, 0.6));
}

/* Headquarters Badge */
.hq-badge {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.hq-badge i {
    font-size: 28px;
    color: var(--hizo-blue);
}

.hq-badge div {
    display: flex;
    flex-direction: column;
}

.hq-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    font-weight: 600;
}

.hq-location {
    font-size: 16px;
    font-weight: 700;
    color: var(--hizo-navy);
}

/* Regions List */
.regions-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.region-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.region-item:hover {
    background: var(--white);
    border-color: var(--hizo-blue);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.region-item.region-hq {
    background: linear-gradient(135deg, var(--hizo-navy), var(--hizo-navy-light));
    color: var(--white);
}

.region-item.region-hq .region-name {
    color: var(--white);
}

.region-item.region-hq .region-tag {
    background: rgba(30, 165, 222, 0.3);
    color: var(--hizo-blue);
}

.region-item.region-hq .region-marker i {
    color: var(--hizo-blue);
}

.region-item.region-hq .region-arrow {
    color: rgba(255, 255, 255, 0.6);
}

.region-item.region-hq:hover {
    border-color: var(--hizo-blue);
    transform: translateX(8px);
}

.region-marker {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.region-marker i {
    font-size: 24px;
    color: var(--hizo-blue);
}

.region-info {
    flex: 1;
}

.region-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: 2px;
}

.region-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    background: var(--gray-200);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.region-arrow {
    font-size: 20px;
    color: var(--gray-400);
    transition: all 0.3s;
}

.region-item:hover .region-arrow {
    color: var(--hizo-blue);
    transform: translateX(4px);
}

/* Coverage Stats Bar */
.regions-coverage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-2xl);
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.coverage-item i {
    font-size: 22px;
    color: var(--hizo-blue);
}

.coverage-divider {
    width: 1px;
    height: 30px;
    background: var(--gray-300);
}

/* ===========================================
   WHY HIZO SECTION
   =========================================== */

.why-hizo {
    padding: var(--spacing-3xl) 0;
    background: var(--hizo-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Building silhouette in background */
.why-hizo::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    background: url('photos/HIZO-Solutions-Enveloppe-du-batiment.png') bottom right no-repeat;
    background-size: contain;
    opacity: 0.05;
}

.why-hizo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-hizo-content .section-label {
    color: var(--hizo-blue);
}

.why-hizo-content .section-title {
    color: var(--white);
    text-align: left;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.value-item {
    display: flex;
    gap: var(--spacing-md);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 165, 222, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--hizo-blue);
}

.value-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-description {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* Visual side - Team image with worker overlay */
.why-hizo-visual {
    position: relative;
}

.team-image-wrapper {
    position: relative;
}

.team-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

/* Quote card overlay */
.quote-card {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    color: var(--hizo-navy);
    box-shadow: var(--shadow-xl);
    max-width: 380px;
}

.quote-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: var(--hizo-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.quote-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--hizo-blue);
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-name {
    font-weight: 700;
    font-size: 16px;
}

.quote-title {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* Why HIZO - Redesigned Section */
.why-hizo .section-header {
    margin-bottom: var(--spacing-2xl);
}

.why-hizo .section-header .section-label {
    color: var(--hizo-blue);
}

.why-hizo .section-header .section-title {
    color: var(--white);
}

.why-hizo .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

/* Stats Banner */
.stats-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--hizo-blue);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.feature-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Trust Banner */
.trust-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgb(10 37 60), rgb(30 165 222 / 84%));
    border: 1px solid rgb(10 37 60);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
}

.trust-banner .trust-badge {
    color: white;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(30, 165, 222, 0.2);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--hizo-blue);
    white-space: nowrap;
}

.trust-badge i {
    font-size: 20px;
}

.trust-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.85);
    max-width: 400px;
}

.trust-banner .btn-primary {
    flex-shrink: 0;
}

.trust-banner a.btn.btn-primary {
    z-index: 999 !important;
}

/* ===========================================
   PROJECTS SECTION
   =========================================== */

.projects {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.project-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    background: linear-gradient(transparent, rgba(10, 36, 60, 0.95));
    color: var(--white);
}

.project-category {
    font-size: var(--font-size-sm);
    color: var(--hizo-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.project-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.project-location {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* ===========================================
   CTA SECTION - with background image
   =========================================== */

.cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(rgba(10, 36, 60, 0.0), rgba(10, 36, 60, 0.0)),
                url('../photos/demande-soumission-footer-hizo.jpg') center center;
    background-size: cover;
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: var(--font-size-md);
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

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

.cta .btn-primary:hover {
    background: var(--hizo-blue-dark);
    color: var(--white);
}

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

.footer {
    background: var(--hizo-navy);
    color: var(--white);
    padding-top: var(--spacing-3xl);
}

/* Footer CTA Banner */
.footer-cta {
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    padding: var(--spacing-2xl) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: 0 25px 50px -12px rgba(30, 165, 222, 0.4);
}

.footer-cta-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.footer-cta-content p {
    font-size: var(--font-size-sm);
    opacity: 0.95;
}

.footer-cta-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.footer-cta .btn-primary {
    background: var(--white);
    color: var(--hizo-navy);
}

.footer-cta .btn-primary:hover {
    background: var(--hizo-navy);
    color: var(--white);
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.2fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl) 0;
}

.footer-brand {
    padding-right: var(--spacing-xl);
}

.footer-logo svg {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: var(--font-size-sm);
    opacity: 0.85;
    margin-top: var(--spacing-md);
    line-height: 1.7;
}

/* Trust Badges */
.footer-badges {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.footer-badge i {
    color: var(--hizo-blue);
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 20px;
}

.footer-social a:hover {
    background: var(--hizo-blue);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column {
    min-width: 0;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--hizo-blue);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13px;
    opacity: 0.75;
    transition: all 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--hizo-blue);
    transform: translateX(3px);
}

/* Contact Column */
.footer-contact-col {
    min-width: 200px;
}

.footer-contact-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 13px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item i {
    font-size: 18px;
    color: var(--hizo-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    margin-bottom: 2px;
}

.footer-contact-item a {
    opacity: 0.9;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--hizo-blue);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--spacing-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.7;
}

.footer-legal-links {
    margin-top: 4px;
}

.footer-legal-links a {
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--hizo-blue);
}

.footer-sep {
    margin: 0 8px;
    opacity: 0.5;
}

.footer-credit a {
    color: var(--hizo-blue);
}

/* ===========================================
   RESPONSIVE
   =========================================== */

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

    .hero-visual {
        display: none;
    }

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

    .regions-map-container {
        grid-template-columns: 1fr;
    }

    .regions-map-visual {
        min-height: 300px;
    }

    .regions-coverage {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

    .why-hizo-grid {
        grid-template-columns: 1fr;
    }

    .stats-banner {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 calc(50% - var(--spacing-lg));
        min-width: 120px;
    }

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

    .trust-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .trust-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .trust-text {
        max-width: none;
    }

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

    /* Navigation dropdown adjustments */
    .nav-dropdown-mega {
        min-width: 500px;
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-dropdown-featured {
        grid-column: span 2;
    }

    /* Footer responsive */
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }

    .footer-brand {
        grid-column: span 3;
        padding-right: 0;
        max-width: 500px;
    }

    .footer-contact-col {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 8px 0;
    }

    .topbar-content {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--spacing-sm);
    }

    .topbar-left {
        gap: var(--spacing-md);
    }

    /* Hide secondary topbar links on mobile */
    .topbar-right a:not(.lang-switcher) {
        display: none;
    }

    .topbar-right {
        gap: var(--spacing-sm);
    }

    /* Mobile navigation - World-class experience */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: var(--gray-100);
    }

    .mobile-menu-toggle.active {
        background: var(--hizo-navy);
        color: var(--white);
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .nav.active {
        transform: translateX(0);
    }

    /* Mobile nav header */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--spacing-md) var(--spacing-lg);
        border-bottom: 1px solid var(--gray-200);
        background: var(--hizo-navy);
        flex-shrink: 0;
        width: 100%;
    }

    .mobile-nav-header .logo svg {
        height: 36px;
        width: auto;
    }

    .mobile-nav-header .logo svg path {
        fill: var(--white);
    }

    .mobile-nav-header .logo svg path:first-child {
        fill: var(--hizo-blue);
    }

    .mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: var(--radius-md);
        color: var(--white);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-nav-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-nav-close i {
        font-size: 24px;
    }

    /* Mobile nav body - scrollable area */
    .mobile-nav-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

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

    /* Nav link with dropdown toggle */
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--spacing-md);
        font-size: 15px;
        font-weight: 500;
        color: var(--hizo-navy);
        border-bottom: none;
        min-height: 44px;
        transition: all 0.2s ease;
    }

    .nav-link:active {
        background: var(--gray-50);
    }

    .nav-item.has-dropdown > .nav-link {
        cursor: pointer;
    }

    .nav-item.has-dropdown > .nav-link i.ph-caret-down {
        font-size: 16px !important;
        margin-left: auto !important;
        transition: transform 0.3s ease;
    }

    .nav-item.has-dropdown.open > .nav-link i.ph-caret-down {
        transform: rotate(180deg);
    }

    .nav-item.has-dropdown.open > .nav-link {
        background: var(--gray-50);
        color: var(--hizo-blue);
    }

    /* Dropdown - accordion style */
    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        display: block;
        min-width: auto;
        background: var(--gray-50);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-item.has-dropdown.open .nav-dropdown {
        max-height: 1500px;
    }

    .nav-dropdown::before {
        display: none;
    }

    /* Mega menu mobile layout */
    .nav-dropdown-mega {
        min-width: auto;
        display: block;
        padding: 0;
    }

    .nav-dropdown-section {
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-dropdown-section:last-of-type {
        border-bottom: none;
    }

    .nav-dropdown-title {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--gray-500);
        background: var(--gray-100);
    }

    .nav-dropdown-links {
        padding: var(--spacing-xs) 0;
    }

    .nav-dropdown-links li a {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 13px;
        color: var(--gray-700);
        min-height: 36px;
        transition: all 0.2s ease;
    }

    .nav-dropdown-links li a:active {
        background: var(--gray-200);
    }

    .nav-dropdown-links li a i {
        font-size: 20px;
        color: var(--hizo-blue);
        width: 24px;
        text-align: center;
        flex-shrink: 0;
    }

    /* Featured section in mobile */
    .nav-dropdown-featured {
        grid-column: span 1;
        margin: var(--spacing-md);
        padding: var(--spacing-lg);
        background: linear-gradient(135deg, var(--hizo-navy) 0%, var(--hizo-navy-light) 100%);
        border-radius: var(--radius-lg);
    }

    .nav-dropdown-featured-title {
        color: var(--white);
    }

    .nav-dropdown-featured-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .nav-dropdown-featured .btn {
        width: 100%;
        justify-content: center;
        margin-top: var(--spacing-md);
    }

    /* CTA button at bottom */
    .nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
        margin: var(--spacing-lg);
        padding: var(--spacing-lg);
        background: var(--hizo-blue);
        color: var(--white) !important;
        border-radius: var(--radius-lg);
        font-weight: 600;
        font-size: 16px;
        min-height: 56px;
        transition: all 0.3s ease;
    }

    .nav-cta:active {
        background: var(--hizo-blue-dark);
        transform: scale(0.98);
    }

    .nav-cta i {
        font-size: 20px;
    }

    /* Mobile nav footer */
    .mobile-nav-footer {
        flex-shrink: 0;
        padding: var(--spacing-sm) var(--spacing-md);
        background: var(--hizo-navy);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: var(--spacing-sm);
    }

    .mobile-nav-contact {
        display: flex;
        flex-direction: row;
        gap: var(--spacing-md);
    }

    .mobile-nav-contact a {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
        color: var(--white);
        font-weight: 500;
        font-size: 13px;
        transition: all 0.2s ease;
    }

    .mobile-nav-contact a:hover {
        color: var(--hizo-blue);
    }

    .mobile-nav-contact a i,
    .mobile-nav-contact a svg {
        color: var(--hizo-blue);
        font-size: 16px;
        width: 16px;
        height: 16px;
    }

    .mobile-nav-lang {
        display: flex;
    }

    .mobile-nav-lang .lang-switcher {
        padding: var(--spacing-xs) var(--spacing-sm);
        background: var(--hizo-blue);
        color: var(--white);
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 12px;
    }

    /* Body scroll lock when mobile nav is open */
    body.mobile-nav-open {
        overflow: hidden;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

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

    .services-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .service-tab {
        justify-content: flex-start;
    }

    .regions-map-visual {
        min-height: 250px;
    }

    .hq-badge {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hq-badge i {
        font-size: 22px;
    }

    .hq-location {
        font-size: 14px;
    }

    .regions-coverage {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }

    .coverage-divider {
        display: none;
    }

    .region-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .stats-banner {
        padding: var(--spacing-lg);
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .trust-banner {
        padding: var(--spacing-lg);
    }

    .quote-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: var(--spacing-lg);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Footer mobile */
    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl);
    }

    .footer-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .footer-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact-col {
        grid-column: span 2;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-bottom-left, .footer-bottom-right {
        text-align: center;
    }
}

/* ===========================================
   BREADCRUMB
   =========================================== */

.breadcrumb {
    background: var(--gray-50);
    padding: var(--spacing-md) 0;
    font-size: var(--font-size-sm);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--gray-500);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: var(--spacing-sm);
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--gray-600);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--hizo-blue);
}

.breadcrumb li:last-child {
    color: var(--hizo-navy);
    font-weight: 500;
}

/* ===========================================
   SERVICE HERO (for service detail pages)
   =========================================== */

.service-hero {
    padding: var(--spacing-3xl) 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Floating SVG shapes for service hero - decorative brand elements */
.service-hero::before,
.service-hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Triangle shape - top right */
.service-hero::before {
    top: 10%;
    right: 5%;
    width: 45px;
    height: 55px;
    background: url("data:image/svg+xml,%3Csvg width='45' height='55' viewBox='0 0 45 55' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M45 50.4062L45 4.50819C45 0.993482 41.1489 -1.28075 38.1085 0.786729L2.02961 24.5627C-0.808052 26.4234 -0.605357 30.5584 2.23231 32.2124L38.3112 54.3344C41.3516 56.1951 45 53.9209 45 50.4062Z' fill='%231EA5DE'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.3;
    animation: service-shape-float-1 8s ease-in-out infinite;
}

/* Trapeze shape - bottom left */
.service-hero::after {
    bottom: 15%;
    left: 3%;
    width: 49px;
    height: 69px;
    background: url("data:image/svg+xml,%3Csvg width='49' height='69' viewBox='0 0 49 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M49 64.6436L49 28.778C49 27.1477 48.1901 25.7212 46.7727 24.9061L6.68182 0.656077C3.64463 -1.17796 0 1.06362 0 4.52792L0 40.1897C0 41.82 0.80993 43.2465 2.22728 44.0616L42.5207 68.3116C45.3554 70.1457 49 68.1079 49 64.6436Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.15;
    animation: service-shape-float-2 10s ease-in-out infinite;
}

/* Additional shapes via container pseudo-element */
.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero .container::before,
.service-hero .container::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

/* Checkmark shape - right side */
.service-hero .container::before {
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 100px;
    height: 70px;
    background: url("data:image/svg+xml,%3Csvg width='148' height='101' viewBox='0 0 148 101' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M148 4.45922V40.2529C148 41.8892 147.181 43.321 145.748 44.1391L51.9945 100.386C50.5616 101.205 48.7192 101.205 47.2863 100.386L2.04703 71.3423C0.818811 70.5242 0 69.0924 0 67.6607L0 31.867C0 28.3899 3.88935 26.14 6.95989 28.1853L47.2863 54.1613C48.7192 54.9795 50.5616 55.184 51.9945 54.1613L141.245 0.57304C144.315 -1.06324 148 0.982114 148 4.45922Z' fill='%231EA5DE'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.2;
    animation: service-shape-float-3 12s ease-in-out infinite;
}

/* Small triangle - top left */
.service-hero .container::after {
    top: 5%;
    left: -3%;
    width: 35px;
    height: 42px;
    background: url("data:image/svg+xml,%3Csvg width='45' height='55' viewBox='0 0 45 55' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M45 50.4062L45 4.50819C45 0.993482 41.1489 -1.28075 38.1085 0.786729L2.02961 24.5627C-0.808052 26.4234 -0.605357 30.5584 2.23231 32.2124L38.3112 54.3344C41.3516 56.1951 45 53.9209 45 50.4062Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.2;
    transform: rotate(180deg);
    animation: service-shape-float-4 9s ease-in-out infinite;
}

/* Animations for service hero shapes */
@keyframes service-shape-float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes service-shape-float-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-5deg); }
}

@keyframes service-shape-float-3 {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(calc(-50% - 8px)) scale(1.05); }
}

@keyframes service-shape-float-4 {
    0%, 100% { transform: rotate(180deg) translateY(0); }
    50% { transform: rotate(185deg) translateY(-10px); }
}

/* Hide shapes on mobile for cleaner look */
@media (max-width: 768px) {
    .service-hero::before,
    .service-hero::after,
    .service-hero .container::before,
    .service-hero .container::after {
        display: none;
    }
}

.service-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 3;
}

.service-hero h1 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.service-hero h1 strong {
    color: var(--hizo-blue);
}

.service-hero-intro {
    font-size: var(--font-size-md);
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
}

.service-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Page Hero (for hub pages) */
.page-hero {
    padding: var(--spacing-3xl) 0;
    background: var(--hizo-navy);
    color: var(--white);
}

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

.page-hero-content {
    max-width: 700px;
}

.page-hero-content h1 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.page-hero-subtitle {
    font-size: var(--font-size-md);
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
}

.page-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* ===========================================
   SERVICE BENEFITS SECTION
   =========================================== */

.service-benefits {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.benefit-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--hizo-blue), var(--hizo-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    border-color: var(--hizo-blue);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(10, 36, 60, 0.12);
    transform: translateY(-6px);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.benefit-icon i {
    font-size: 28px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: var(--hizo-blue);
}

.benefit-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Direct icon in benefit-card (without wrapper) */
.benefit-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.12), rgba(30, 165, 222, 0.06));
    border-radius: var(--radius-lg);
    font-size: 28px;
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover > i {
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    color: var(--white);
    transform: scale(1.08);
}

/* ===========================================
   SERVICE APPLICATIONS SECTION
   =========================================== */

.service-applications {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.applications-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.applications-content {
    text-align: left;
}

.applications-content .section-label {
    display: block;
    margin-bottom: var(--spacing-sm);
}

.applications-content .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.applications-content .section-intro {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.applications-list {
    list-style: none;
}

.applications-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.applications-list li:last-child {
    border-bottom: none;
}

.applications-list i {
    font-size: 22px;
    color: var(--hizo-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.applications-list strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-bottom: 2px;
}

.applications-list span {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.applications-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.application-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.application-card:hover {
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.application-card i {
    font-size: 40px;
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-md);
}

.application-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.application-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

/* ===========================================
   SERVICE SOLUTIONS SECTION
   =========================================== */

.service-solutions {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.solution-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    border-bottom: 1px solid var(--gray-200);
}

.solution-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.solution-block-reverse {
    direction: rtl;
}

.solution-block-reverse > * {
    direction: ltr;
}

.solution-content h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 22px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-lg);
}

.solution-content h3 i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.solution-content p {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.solution-features {
    list-style: none;
    margin-top: var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    font-weight: 500;
}

.solution-features i {
    font-size: 20px;
    color: var(--hizo-blue);
    flex-shrink: 0;
}

.solution-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.solution-block:hover .solution-image img {
    transform: scale(1.03);
}

/* ===========================================
   SERVICE GALLERY SECTION
   =========================================== */

.service-gallery {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===========================================
   SERVICE SPECS SECTION
   =========================================== */

.service-specs {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.spec-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.spec-card:hover {
    border-color: var(--hizo-blue);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.spec-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon i {
    font-size: 24px;
    color: var(--white);
}

.spec-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-xs);
}

.spec-content p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.spec-download {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--hizo-blue);
    margin-top: auto;
}

/* ===========================================
   SERVICE PROJECTS SECTION
   =========================================== */

.service-projects {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.service-projects .projects-grid {
    margin-bottom: var(--spacing-xl);
}

.project-card {
    display: block;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s;
}

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

.project-card-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    background: linear-gradient(transparent, rgba(10, 36, 60, 0.95));
    color: var(--white);
}

.project-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hizo-blue);
    background: rgba(30, 165, 222, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.project-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.project-card-content p {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.section-cta {
    text-align: center;
}

/* ===========================================
   SERVICE FAQ SECTION
   =========================================== */

.service-faq {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--hizo-blue);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--spacing-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--hizo-navy);
    margin: 0;
    padding-right: var(--spacing-md);
}

.faq-question i {
    font-size: 20px;
    color: var(--gray-400);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--hizo-blue);
}

.faq-answer {
    display: none;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===========================================
   RELATED SERVICES SECTION
   =========================================== */

.related-services {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.related-service-card {
    display: block;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.related-service-card:hover {
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-service-card i {
    font-size: 40px;
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-md);
}

.related-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.related-service-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

/* ===========================================
   SERVICE INTRO SECTION
   =========================================== */

.service-intro {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

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

.lead-text {
    font-size: var(--font-size-md);
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===========================================
   TRUST SECTION (for service pages)
   =========================================== */

.trust-section {
    padding: var(--spacing-2xl) 0;
    background: var(--hizo-navy);
}

.trust-section .trust-banner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-section .trust-text {
    color: rgba(255, 255, 255, 0.85);
}

/* ===========================================
   STATS SECTION (standalone)
   =========================================== */

.stats-section {
    padding: var(--spacing-2xl) 0;
    background: var(--hizo-navy);
}

/* ===========================================
   SERVICES GRID DETAILED (for hub pages)
   =========================================== */

.services-detail-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.service-detail-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-detail-card:hover {
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-detail-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-detail-content {
    padding: var(--spacing-lg);
}

.service-detail-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.service-detail-content p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 13px;
    color: var(--gray-600);
    padding: 4px 0;
}

.service-features i {
    font-size: 16px;
    color: var(--hizo-blue);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hizo-blue);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: gap 0.3s;
}

.service-detail-card:hover .btn-text {
    gap: 10px;
}

/* Projects Preview section */
.projects-preview {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

/* ===========================================
   RESPONSIVE - SERVICE PAGES
   =========================================== */

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

    .applications-layout {
        grid-template-columns: 1fr;
    }

    .applications-image {
        order: -1;
    }

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

    .solution-block,
    .solution-block-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .solution-image {
        order: -1;
    }

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

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

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

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 28px;
    }

    .service-hero-cta {
        flex-direction: column;
    }

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

    .applications-grid {
        grid-template-columns: 1fr;
    }

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

    .specs-grid {
        grid-template-columns: 1fr;
    }

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

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

    .page-hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container, .container-wide {
        padding: 0 var(--spacing-md);
    }

    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand, .footer-contact-col {
        grid-column: span 1;
    }

    .footer-cta {
        border-radius: var(--radius-lg);
    }

    .footer-cta-content h3 {
        font-size: 18px;
    }

}

/* ===========================================
   REALISATIONS / PROJECT PAGES
   =========================================== */

/* Project Hero (for individual project pages) */
.project-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.project-hero-content {
    max-width: 800px;
}

.project-hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.project-hero-content h1 strong {
    display: block;
}

.project-location-hero {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.project-location-hero i {
    font-size: 20px;
}

.project-tags-hero {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.project-tags-hero .tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Project Overview Section */
.project-overview {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.project-overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-3xl);
}

.project-description h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-lg);
}

.project-description p {
    font-size: var(--font-size-base);
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.project-specs {
    background: var(--gray-50);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
}

.project-specs h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--hizo-blue);
}

.specs-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.specs-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list i {
    font-size: 18px;
    color: var(--hizo-blue);
    grid-row: span 2;
    align-self: start;
    padding-top: 2px;
}

.spec-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: var(--font-size-sm);
    color: var(--hizo-navy);
    font-weight: 500;
}

.services-list {
    list-style: none;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
}

.services-list i {
    font-size: 18px;
    color: var(--hizo-blue);
}

.services-list a {
    color: var(--hizo-navy);
    font-weight: 500;
    transition: color 0.3s;
}

.services-list a:hover {
    color: var(--hizo-blue);
}

/* Project Gallery */
.project-gallery {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

/* Projects Grid (for hub page) */
.realisations-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.project-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.project-card-content {
    padding: var(--spacing-lg);
}

.project-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-xs);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: var(--spacing-sm);
}

p.project-location {
    color: white;
}

.project-location i {
    font-size: 14px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-tags .tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    padding: var(--spacing-3xl) 0;
    background: var(--hizo-navy);
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.partners-section .section-label {
    color: var(--hizo-blue);
}

.partners-section .section-title {
    color: var(--white);
}

.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.partner-logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Responsive for project pages */
@media (max-width: 1024px) {
    .project-overview-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

@media (max-width: 768px) {
    .project-hero {
        min-height: 50vh;
    }

    .project-hero-content h1 {
        font-size: 28px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-tags-hero {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===========================================
   ENTREPRISE / ABOUT PAGES - REDESIGNED
   =========================================== */

/* About Section - Two column layout with accent */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    position: relative;
}

.about-section-alt {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-grid-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.about-grid-reverse .about-image {
    order: -1;
}

.about-content .section-label {
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--spacing-lg);
    font-size: 32px;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    font-size: 16px;
}

.about-content p:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.about-content .lead-text {
    font-size: 18px;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--hizo-blue);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
}

/* Diamond Image - Special treatment for diamond-shaped images */
.diamond-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.diamond-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.diamond-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

/* Decorative elements around diamond */
.diamond-decor {
    position: absolute;
    pointer-events: none;
}

.diamond-decor-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 2px solid rgba(30, 165, 222, 0.2);
    animation: diamond-pulse 4s ease-in-out infinite;
}

.diamond-decor-ring:nth-child(2) {
    width: 140%;
    height: 140%;
    animation-delay: 0.5s;
    border-color: rgba(30, 165, 222, 0.15);
}

.diamond-decor-ring:nth-child(3) {
    width: 160%;
    height: 160%;
    animation-delay: 1s;
    border-color: rgba(30, 165, 222, 0.1);
}

@keyframes diamond-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Stat badge overlay on diamond image */
.diamond-stat-badge {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hizo-blue) 0%, #0d8ecf 100%);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(30, 165, 222, 0.4);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    white-space: nowrap;
}

.diamond-stat-badge i {
    font-size: 20px;
}

.diamond-stat-badge .stat-value {
    font-size: 20px;
    font-weight: 800;
}

.diamond-stat-badge .stat-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .diamond-image-container {
        min-height: 350px;
    }

    .diamond-image-wrapper {
        max-width: 400px;
    }

    .diamond-decor-ring:nth-child(2),
    .diamond-decor-ring:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .diamond-image-container {
        min-height: 280px;
    }

    .diamond-image-wrapper {
        max-width: 320px;
    }

    .diamond-stat-badge {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .diamond-stat-badge .stat-value {
        font-size: 16px;
    }

    .diamond-stat-badge .stat-text {
        font-size: 11px;
    }
}

/* Stats Section - Redesigned with floating cards look */
.stats-section-entreprise {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #0d2d4a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-entreprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231EA5DE' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hizo-blue) 0%, #0d8ecf 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.stat-card .stat-icon i {
    font-size: 24px;
    color: var(--white);
}

.stat-card .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.stat-card .stat-number span {
    color: var(--hizo-blue);
}

.stat-card .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    display: block;
    line-height: 1.4;
}

/* Values Section - Card redesign with gradient accents */
.values-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.values-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hizo-blue) 0%, var(--hizo-navy) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card .value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.1) 0%, rgba(10, 36, 60, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.2) 0%, rgba(10, 36, 60, 0.1) 100%);
}

.value-card .value-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

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

.values-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Promise/Quote Section - Stunning visual design */
.promise-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(10, 36, 60, 0.97) 0%, rgba(10, 36, 60, 0.85) 50%, rgba(30, 165, 222, 0.3) 100%);
    z-index: 1;
}

.promise-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.promise-section .container {
    position: relative;
    z-index: 2;
    padding: var(--spacing-4xl) 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.promise-visual {
    position: relative;
}

.promise-badge {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.promise-badge-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(30, 165, 222, 0.3);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

.promise-badge-ring:nth-child(2) {
    inset: -20px;
    animation-delay: 0.5s;
    border-color: rgba(30, 165, 222, 0.2);
}

.promise-badge-ring:nth-child(3) {
    inset: -40px;
    animation-delay: 1s;
    border-color: rgba(30, 165, 222, 0.1);
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.promise-badge-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--hizo-blue) 0%, #0d8ecf 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 60px rgba(30, 165, 222, 0.4),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.promise-badge-inner .badge-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.promise-badge-inner .badge-number span {
    font-size: 48px;
}

.promise-badge-inner .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: var(--spacing-xs);
}

.promise-content {
    text-align: left;
}

.promise-content .section-label {
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-md);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.promise-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.promise-content h2 span {
    color: var(--hizo-blue);
}

.promise-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
}

.promise-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.promise-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.promise-feature:hover {
    background: rgba(30, 165, 222, 0.2);
    border-color: rgba(30, 165, 222, 0.3);
    transform: translateY(-2px);
}

.promise-feature i {
    color: var(--hizo-blue);
    font-size: 18px;
}

.promise-feature span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* Decorative elements */
.promise-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 165, 222, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.promise-decor-1 {
    top: -200px;
    right: -100px;
}

.promise-decor-2 {
    bottom: -200px;
    left: -100px;
}

/* Alternative centered layout for simpler promise sections */
.promise-section-centered .promise-grid {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promise-section-centered .promise-content {
    text-align: center;
}

.promise-section-centered .promise-features {
    justify-content: center;
}

.promise-section-centered .promise-visual {
    margin-bottom: var(--spacing-xl);
}

.promise-section-centered .promise-badge {
    width: 200px;
    height: 200px;
}

.promise-section-centered .promise-badge-inner .badge-number {
    font-size: 56px;
}

.promise-section-centered .promise-badge-inner .badge-number span {
    font-size: 36px;
}

/* Responsive */
@media (max-width: 1024px) {
    .promise-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
    }

    .promise-content {
        text-align: center;
    }

    .promise-features {
        justify-content: center;
    }

    .promise-visual {
        order: -1;
    }

    .promise-badge {
        width: 220px;
        height: 220px;
    }

    .promise-badge-inner .badge-number {
        font-size: 56px;
    }

    .promise-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .promise-section {
        min-height: auto;
    }

    .promise-badge {
        width: 180px;
        height: 180px;
    }

    .promise-badge-inner .badge-number {
        font-size: 48px;
    }

    .promise-badge-inner .badge-number span {
        font-size: 32px;
    }

    .promise-badge-inner .badge-text {
        font-size: 11px;
    }

    .promise-badge-ring:nth-child(2),
    .promise-badge-ring:nth-child(3) {
        display: none;
    }

    .promise-content h2 {
        font-size: 28px;
    }

    .promise-text {
        font-size: 16px;
    }

    .promise-decor {
        display: none;
    }
}

/* Team Section - Refined layout */
.team-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.team-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.team-content .section-label {
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-sm);
}

.team-content .section-title {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.team-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.team-content .btn {
    margin-top: var(--spacing-md);
}

/* Locations Section */
.locations-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.locations-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.location-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.location-card .location-icon {
    width: 60px;
    height: 60px;
    background: var(--hizo-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.location-card .location-icon i {
    font-size: 28px;
    color: var(--white);
}

.location-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.location-card .location-address {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.location-card .location-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--hizo-blue);
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(30, 165, 222, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.location-card .location-phone:hover {
    background: var(--hizo-blue);
    color: var(--white);
}

/* Locations Section - Redesigned */
.locations-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.locations-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.location-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--gray-100);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-card .location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--hizo-blue) 0%, #0d8ecf 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 8px 20px rgba(30, 165, 222, 0.3);
}

.location-card .location-icon i {
    font-size: 30px;
    color: var(--white);
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.location-card .location-badge {
    display: inline-block;
    background: var(--hizo-navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Values Detail Section - Completely redesigned */
.values-section-detailed {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
}

.value-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    padding: var(--spacing-3xl) 0;
    border-bottom: 1px solid var(--gray-100);
}

.value-detail:first-of-type {
    padding-top: 0;
}

.value-detail:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.value-detail-reverse {
    direction: rtl;
}

.value-detail-reverse > * {
    direction: ltr;
}

.value-detail-visual {
    position: relative;
}

.value-detail-icon {
    width: 100%;
    max-width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.08) 0%, rgba(10, 36, 60, 0.04) 100%);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.value-detail-icon::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px dashed rgba(30, 165, 222, 0.2);
    border-radius: 50%;
}

.value-detail-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.value-detail-content {
    padding: var(--spacing-lg) 0;
}

.value-detail-content .value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--hizo-blue);
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.value-detail-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.value-detail-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.value-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.value-points li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 14px;
    color: var(--gray-700);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.value-points li:hover {
    background: rgba(30, 165, 222, 0.1);
}

.value-points li i {
    color: var(--hizo-blue);
    font-size: 18px;
    flex-shrink: 0;
}

/* Team Roles Grid - Enhanced feature cards for team page */
.team-roles-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.team-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.team-role-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.team-role-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hizo-blue) 0%, var(--hizo-navy) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-role-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-role-card:hover::after {
    transform: scaleX(1);
}

.team-role-card .role-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.1) 0%, rgba(10, 36, 60, 0.05) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: all 0.3s;
}

.team-role-card:hover .role-icon {
    background: linear-gradient(135deg, var(--hizo-blue) 0%, #0d8ecf 100%);
    box-shadow: 0 8px 20px rgba(30, 165, 222, 0.3);
}

.team-role-card .role-icon i {
    font-size: 30px;
    color: var(--hizo-blue);
    transition: color 0.3s;
}

.team-role-card:hover .role-icon i {
    color: var(--white);
}

.team-role-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.team-role-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Responsive for entreprise pages */
@media (max-width: 1024px) {
    .about-grid,
    .about-grid-reverse,
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .about-grid-reverse .about-image {
        order: 0;
    }

    .about-image-wrapper::before {
        display: none;
    }

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

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

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

    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-detail {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .value-detail-reverse {
        direction: ltr;
    }

    .value-detail-icon {
        max-width: 200px;
        height: 200px;
    }

    .value-detail-icon img {
        width: 80px;
        height: 80px;
    }

    .value-points {
        grid-template-columns: 1fr;
    }

    .value-points li {
        justify-content: flex-start;
    }

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

    .promise-content h2 {
        font-size: 30px;
    }
}

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

    .stat-card .stat-number {
        font-size: 32px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .team-roles-grid {
        grid-template-columns: 1fr;
    }

    .promise-section {
        padding: var(--spacing-2xl) 0;
        background-attachment: scroll;
    }

    .promise-content h2 {
        font-size: 26px;
    }

    .promise-text {
        font-size: 16px;
    }

    .value-detail-content h3 {
        font-size: 22px;
    }
}

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

/* Benefits Section */
.careers-benefits-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--hizo-blue) 0%, #0d8ecf 100%);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.1) 0%, rgba(30, 165, 222, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.benefit-icon i {
    font-size: 28px;
    color: var(--hizo-blue);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Positions Section */
.careers-positions-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.position-category {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.position-category:hover {
    border-color: var(--hizo-blue);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.position-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #103558 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.position-icon i {
    font-size: 32px;
    color: var(--hizo-blue);
}

.position-category h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.position-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.position-category li {
    color: var(--gray-600);
    padding: var(--spacing-xs) 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.position-category li:last-child {
    border-bottom: none;
}

/* Application Section */
.careers-apply-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #0d2d4a 100%);
}

.careers-apply-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.careers-apply-section .section-label {
    color: var(--hizo-blue);
}

.careers-apply-section .section-title {
    color: var(--white);
}

.careers-apply-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.apply-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.apply-method {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.apply-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.apply-method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--hizo-blue) 0%, #0d8ecf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.apply-method-icon i {
    font-size: 32px;
    color: var(--white);
}

.apply-method h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.apply-method p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.apply-email,
.apply-phone {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--hizo-blue);
    transition: color 0.3s ease;
}

.apply-email:hover,
.apply-phone:hover {
    color: var(--white);
}

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

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

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

    .apply-methods {
        grid-template-columns: 1fr;
    }

    .apply-email,
    .apply-phone {
        font-size: 18px;
    }
}

/* ===========================================
   RESOURCES PAGES STYLES
   =========================================== */

/* Resources Hub Section */
.resources-hub-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.resources-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.resource-hub-card {
    display: flex;
    gap: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.resource-hub-card:hover {
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.resource-hub-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #103558 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-hub-icon i {
    font-size: 36px;
    color: var(--hizo-blue);
}

.resource-hub-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.resource-hub-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.resource-hub-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.resource-hub-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: var(--spacing-xs);
}

.resource-hub-features li i {
    color: var(--hizo-blue);
}

.resource-hub-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--hizo-blue);
    font-weight: 600;
    font-size: 14px;
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.faq-preview-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.faq-preview-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-preview-card:hover {
    background: var(--white);
    border-color: var(--hizo-blue);
    box-shadow: var(--shadow-lg);
}

.faq-preview-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.1) 0%, rgba(30, 165, 222, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.faq-preview-icon i {
    font-size: 24px;
    color: var(--hizo-blue);
}

.faq-preview-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.faq-preview-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* FAQ Page Styles */
.service-hero-compact {
    min-height: auto;
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #0d2d4a 100%);
    position: relative;
}

.service-hero-compact.has-bg-image {
    background-size: cover;
    background-position: center;
}

.service-hero-compact.has-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 36, 59, 0.85) 0%, rgba(13, 45, 74, 0.8) 100%);
    z-index: 1;
}

.service-hero-compact.has-bg-image .container {
    position: relative;
    z-index: 2;
}

.faq-categories-section {
    padding: var(--spacing-lg) 0;
    background: var(--gray-50);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
}

.faq-categories-nav {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding-bottom: var(--spacing-xs);
}

.faq-category-tab {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--gray-200);
}

.faq-category-tab:hover,
.faq-category-tab.active {
    background: var(--hizo-navy);
    color: var(--white);
    border-color: var(--hizo-navy);
}

.faq-category-tab i {
    font-size: 16px;
}

.faq-content-section {
    padding: var(--spacing-3xl) 0;
}

.faq-category {
    margin-bottom: var(--spacing-3xl);
    scroll-margin-top: 128px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--gray-100);
}

.faq-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #103558 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-category-icon i {
    font-size: 28px;
    color: var(--hizo-blue);
}

.faq-category-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin: 0;
}

.faq-category-header p {
    color: var(--gray-600);
    margin: 0;
    font-size: 14px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    text-decoration: none;
    color: var(--hizo-navy);
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--hizo-blue);
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question i {
    transform: translateX(5px);
}

.faq-contact-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.faq-contact-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.faq-contact-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--hizo-blue) 0%, #0d8ecf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-contact-icon i {
    font-size: 36px;
    color: var(--white);
}

.faq-contact-content {
    flex: 1;
}

.faq-contact-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-xs);
}

.faq-contact-content p {
    color: var(--gray-600);
    margin: 0;
}

.faq-contact-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* Tech Sheets Styles */
.tech-sheets-section {
    padding: var(--spacing-3xl) 0;
}

.tech-category {
    margin-bottom: var(--spacing-3xl);
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--gray-100);
}

.tech-category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #103558 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-category-icon i {
    font-size: 24px;
    color: var(--hizo-blue);
}

.tech-category-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin: 0;
}

.tech-sheets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.tech-sheet-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tech-sheet-card:hover {
    background: var(--white);
    border-color: var(--hizo-blue);
    box-shadow: var(--shadow-md);
}

.tech-sheet-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-sheet-icon i {
    font-size: 24px;
    color: #dc3545;
}

.tech-sheet-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.tech-sheet-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 12px;
    color: var(--hizo-blue);
    font-weight: 500;
}

/* Videos Section Styles */
.videos-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #103558 100%);
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    width: 70px;
    height: 70px;
    background: var(--hizo-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--hizo-blue-dark);
}

.video-play-btn i {
    font-size: 28px;
    color: var(--white);
    margin-left: 4px;
}

.video-content {
    padding: var(--spacing-lg);
}

.video-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.video-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.video-meta {
    display: flex;
    gap: var(--spacing-md);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 12px;
    color: var(--hizo-blue);
    font-weight: 500;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: var(--white);
    border-color: var(--white);
}

.video-modal-close i {
    font-size: 20px;
    color: var(--white);
    transition: color 0.3s ease;
}

.video-modal-close:hover i {
    color: var(--hizo-navy);
}

.video-modal-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--black);
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Blog Coming Soon Styles */
.blog-coming-soon-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.coming-soon-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #103558 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
}

.coming-soon-icon i {
    font-size: 48px;
    color: var(--hizo-blue);
}

.coming-soon-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.coming-soon-card > p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.coming-soon-topics {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: left;
}

.coming-soon-topics h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.coming-soon-topics ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.coming-soon-topics li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-600);
    font-size: 14px;
}

.coming-soon-topics li i {
    color: var(--hizo-blue);
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--spacing-2xl) 0;
}

.newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #0d2d4a 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-2xl);
}

.newsletter-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--hizo-blue);
}

.social-link i {
    font-size: 18px;
}

/* Resources Pages Responsive */
@media (max-width: 1024px) {
    .resources-hub-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .faq-contact-card {
        flex-direction: column;
        text-align: center;
    }

    .faq-contact-actions {
        flex-direction: column;
        width: 100%;
    }

    .faq-contact-actions .btn {
        width: 100%;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-social {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .resource-hub-card {
        flex-direction: column;
        text-align: center;
    }

    .faq-preview-grid {
        grid-template-columns: 1fr;
    }

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

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-topics ul {
        grid-template-columns: 1fr;
    }

    .faq-categories-nav {
        gap: var(--spacing-xs);
    }

    .faq-category-tab {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tech-sheets-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Article Pages (Individual FAQ detail pages)
   ========================================================================== */

.faq-article {
    padding: var(--spacing-3xl) 0;
}

.faq-article-header {
    margin-bottom: var(--spacing-2xl);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-article-header .section-label {
    margin-bottom: var(--spacing-md);
}

.faq-article-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--hizo-navy);
    line-height: 1.2;
}

.faq-article-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

.faq-article-content .lead-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
}

.faq-article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.faq-article-content h2:first-of-type {
    margin-top: 0;
}

.faq-article-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.faq-article-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
}

.faq-article-content ul,
.faq-article-content ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.faq-article-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--spacing-xs);
}

.faq-article-content ul li {
    list-style-type: disc;
}

/* FAQ Table Styles */
.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
    font-size: 0.95rem;
}

.faq-table th,
.faq-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.faq-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--hizo-navy);
}

.faq-table tr:hover {
    background: var(--gray-50);
}

/* Related Questions Section */
.faq-related {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.faq-related h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-lg);
}

.faq-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.faq-related-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-700);
    transition: all var(--transition);
}

.faq-related-card:hover {
    border-color: var(--hizo-orange);
    background: var(--gray-50);
    color: var(--hizo-navy);
}

.faq-related-card i {
    font-size: 1.5rem;
    color: var(--hizo-orange);
    flex-shrink: 0;
}

.faq-related-card span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Service CTA Section */
.faq-service-cta {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--hizo-navy) 0%, #0d2d4a 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.faq-service-cta-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.faq-service-cta-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.faq-service-cta-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.faq-service-cta .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-service-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Back to FAQ Link */
.faq-back {
    max-width: 800px;
    margin: 0 auto;
}

.faq-back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.faq-back-link:hover {
    color: var(--hizo-orange);
}

.faq-back-link i {
    font-size: 1.25rem;
}

/* FAQ Article Responsive */
@media (max-width: 768px) {
    .faq-article {
        padding: var(--spacing-2xl) 0;
    }

    .faq-article-content {
        padding: var(--spacing-lg);
    }

    .faq-article-content h2 {
        font-size: 1.25rem;
    }

    .faq-article-content h3 {
        font-size: 1rem;
    }

    .faq-related-grid {
        grid-template-columns: 1fr;
    }

    .faq-service-cta {
        flex-direction: column;
        text-align: center;
    }

    .faq-service-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .faq-service-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-article-header h1 {
        font-size: 1.5rem;
    }

    .faq-article-content {
        padding: var(--spacing-md);
    }

    .faq-article-content .lead-text {
        font-size: 1rem;
    }

    .faq-table {
        font-size: 0.85rem;
    }

    .faq-table th,
    .faq-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* ===========================================
   REGION PAGES STYLES
   =========================================== */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(30, 165, 222, 0.2);
    color: var(--hizo-blue);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-badge i {
    font-size: 18px;
}

/* Regions Coverage Stats Section */
.regions-stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.regions-coverage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--hizo-navy);
}

.coverage-item i {
    font-size: 22px;
    color: var(--hizo-blue);
}

.coverage-divider {
    width: 1px;
    height: 30px;
    background: var(--gray-300);
}

/* Regions Grid Section */
.regions-grid-section {
    padding: var(--spacing-3xl) 0;
}

.regions-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

.regions-province {
    background: var(--white);
}

.province-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--gray-200);
}

.province-title i {
    color: var(--hizo-blue);
}

.regions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

/* Region Card */
.region-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.region-card:hover {
    background: var(--white);
    border-color: var(--hizo-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.region-card-badge {
    position: absolute;
    top: -10px;
    right: var(--spacing-lg);
    background: var(--hizo-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.region-card-hq {
    background: linear-gradient(135deg, var(--hizo-navy) 0%, var(--hizo-navy-light) 100%);
}

.region-card-hq .region-card-title,
.region-card-hq .region-card-description {
    color: var(--white);
}

.region-card-hq .region-card-icon {
    background: rgba(30, 165, 222, 0.3);
}

.region-card-hq .region-card-services span {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.region-card-hq .region-card-arrow {
    color: var(--hizo-blue);
}

.region-card-hq:hover {
    background: linear-gradient(135deg, var(--hizo-navy-light) 0%, var(--hizo-navy) 100%);
    border-color: var(--hizo-blue);
}

.region-card-office .region-card-badge {
    background: var(--hizo-navy);
}

.region-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    border-radius: var(--radius-md);
}

.region-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.region-card-content {
    flex: 1;
    min-width: 0;
}

.region-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-bottom: 4px;
}

.region-card-description {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.region-card-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.region-card-services span {
    font-size: 11px;
    background: var(--gray-200);
    color: var(--gray-700);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.region-card-arrow {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.region-card:hover .region-card-arrow {
    color: var(--hizo-blue);
    transform: translateX(5px);
}

/* Offices Section */
.offices-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.office-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.office-card:hover {
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.office-card-main {
    border-color: var(--hizo-blue);
    background: linear-gradient(to bottom, rgba(30, 165, 222, 0.05), var(--white));
}

.office-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hizo-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.office-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    border-radius: var(--radius-lg);
    margin: 0 auto var(--spacing-lg);
}

.office-icon i {
    font-size: 28px;
    color: var(--white);
}

.office-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.office-address {
    font-style: normal;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.office-contact {
    margin-bottom: var(--spacing-md);
}

.office-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--hizo-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.office-phone:hover {
    color: var(--hizo-blue-dark);
}

.office-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* Office Banner (for individual region pages) */
.region-office-banner {
    background: linear-gradient(135deg, var(--hizo-navy) 0%, var(--hizo-navy-light) 100%);
    padding: var(--spacing-lg) 0;
}

.office-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.office-banner-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.office-banner-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 165, 222, 0.2);
    border-radius: var(--radius-md);
}

.office-banner-icon i {
    font-size: 24px;
    color: var(--hizo-blue);
}

.office-banner-details h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.office-banner-details address {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-size: var(--font-size-sm);
}

.office-banner-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.office-banner-contact .office-phone {
    color: var(--white);
    font-size: 1.2rem;
}

.office-banner-contact .office-phone:hover {
    color: var(--hizo-blue);
}

.office-banner-contact .office-hours {
    color: rgba(255, 255, 255, 0.7);
}

/* Region Intro Section */
.region-intro-section {
    padding: var(--spacing-3xl) 0;
}

.region-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.region-intro-content h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-lg);
}

.region-intro-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.region-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.region-highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--hizo-navy);
}

.region-highlight-item i {
    font-size: 20px;
    color: var(--hizo-blue);
}

.region-intro-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Region Services Section */
.region-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.region-service-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--gray-200);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--gray-100);
}

.category-header i {
    font-size: 28px;
    color: var(--hizo-blue);
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hizo-navy);
}

.category-services {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.region-service-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-decoration: none;
}

.region-service-item:hover {
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.1), rgba(30, 165, 222, 0.05));
    transform: translateX(5px);
}

.region-service-item .service-name {
    font-weight: 600;
    color: var(--hizo-navy);
    flex: 1;
}

.region-service-item .service-desc {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    flex: 1;
}

.region-service-item i {
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.region-service-item:hover i {
    color: var(--hizo-blue);
    transform: translateX(3px);
}

/* Region Services Section (for hub page) */
.region-services-section {
    padding-top: 32px;
    padding-bottom: 32px;
}

/* Services Overview Grid (for hub page) */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.service-overview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-overview-link {
    display: block;
    padding: var(--spacing-xl);
    text-decoration: none;
}

.service-overview-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.service-overview-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-overview-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.service-overview-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.service-overview-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--hizo-blue);
    font-weight: 600;
}

.service-overview-cta i {
    transition: transform 0.3s ease;
}

.service-overview-card:hover .service-overview-cta i {
    transform: translateX(5px);
}

/* Region Projects Section */
.region-projects-section {
    padding: var(--spacing-3xl) 0;
}

.region-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.projects-cta {
    text-align: center;
}

/* Region Zones Section */
.region-zones-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.zone-group h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.zone-group h3 i {
    color: var(--hizo-blue);
}

.zone-group ul {
    list-style: none;
}

.zone-group li {
    padding: var(--spacing-sm) 0;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    border-bottom: 1px solid var(--gray-200);
}

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

/* Region Why Section */
.region-why-section {
    padding: var(--spacing-3xl) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.why-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

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

.why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    border-radius: var(--radius-lg);
    margin: 0 auto var(--spacing-lg);
}

.why-icon i {
    font-size: 32px;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.why-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Region Pages Responsive */
@media (max-width: 1024px) {
    .regions-list {
        grid-template-columns: 1fr;
    }

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

    .region-intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

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

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

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

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

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

@media (max-width: 768px) {
    .regions-coverage {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .coverage-divider {
        display: none;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .office-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .office-banner-info {
        flex-direction: column;
    }

    .office-banner-contact {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .region-projects-grid {
        grid-template-columns: 1fr;
    }

    .zones-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .region-highlight-item {
        width: 100%;
    }

    .region-service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }

    .region-service-item .service-desc {
        display: none;
    }
}

@media (max-width: 480px) {
    .region-card {
        flex-direction: column;
        text-align: center;
    }

    .region-card-arrow {
        display: none;
    }

    .region-card-badge {
        position: static;
        margin-bottom: var(--spacing-sm);
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-info-section {
    padding: var(--spacing-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    border-color: var(--hizo-blue);
    box-shadow: var(--shadow-md);
}

.contact-method-primary {
    background: linear-gradient(135deg, var(--hizo-navy), var(--hizo-navy-light));
    border-color: transparent;
    color: var(--white);
}

.contact-method-primary:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 165, 222, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-method-icon i {
    font-size: 24px;
    color: var(--hizo-blue);
}

.contact-method-primary .contact-method-icon {
    background: rgba(255, 255, 255, 0.1);
}

.contact-method-primary .contact-method-icon i {
    color: var(--white);
}

.contact-method-content h2,
.contact-method-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--hizo-navy);
}

.contact-method-primary .contact-method-content h2 {
    color: var(--white);
}

.contact-method-content p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: var(--spacing-xs);
}

.contact-method-primary .contact-method-content p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-method-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hizo-blue);
    display: block;
}

.contact-method-primary .contact-method-value {
    color: var(--white);
}

.contact-form-container {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 17px;
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.contact-form-intro {
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

.contact-form-embed {
    min-height: 400px;
}

/* Contact Offices Section */
.contact-offices-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.office-directions {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--hizo-blue);
    transition: all 0.3s ease;
}

.office-directions:hover {
    color: var(--hizo-blue-dark);
}

.office-directions:hover i {
    transform: translateX(3px);
}

/* Contact Regions Section */
.contact-regions-section {
    padding: var(--spacing-3xl) 0;
}

.contact-regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-region-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-weight: 500;
    color: var(--hizo-navy);
    transition: all 0.3s ease;
}

.contact-region-link i {
    color: var(--hizo-blue);
}

.contact-region-link:hover {
    border-color: var(--hizo-blue);
    background: var(--gray-50);
    transform: translateY(-2px);
}

.contact-regions-cta {
    text-align: center;
}

/* Contact Trust Section */
.contact-trust-section {
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
}

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

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

@media (max-width: 768px) {
    .contact-method-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-regions-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   QUOTE REQUEST PAGE STYLES
   ========================================================================== */

.quote-section {
    padding: var(--spacing-3xl) 0;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.quote-form-container {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 17px;
}

.quote-form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.quote-form-header p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xl);
}

.quote-form-embed {
    min-height: 500px;
}

/* Quote Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: sticky;
    top: 120px;
}

.quote-sidebar-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

.quote-sidebar-primary {
    background: linear-gradient(135deg, var(--hizo-navy), var(--hizo-navy-light));
    border-color: transparent;
    color: var(--white);
}

.quote-sidebar-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 165, 222, 0.1);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--spacing-md);
}

.quote-sidebar-icon i {
    font-size: 28px;
    color: var(--hizo-blue);
}

.quote-sidebar-primary .quote-sidebar-icon {
    background: rgba(255, 255, 255, 0.1);
}

.quote-sidebar-primary .quote-sidebar-icon i {
    color: var(--white);
}

.quote-sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.quote-sidebar-primary h3 {
    color: var(--white);
}

.quote-sidebar-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.quote-sidebar-primary p {
    color: rgba(255, 255, 255, 0.8);
}

.quote-sidebar-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-xs);
}

/* Quote Sidebar Trust List */
.quote-sidebar-trust {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.quote-sidebar-trust h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.quote-trust-list {
    list-style: none;
}

.quote-trust-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.quote-trust-list li:last-child {
    border-bottom: none;
}

.quote-trust-list i {
    color: var(--hizo-blue);
    font-size: 18px;
}

/* Quote Sidebar Services */
.quote-sidebar-services {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.quote-sidebar-services h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.quote-services-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.quote-services-links a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--hizo-navy);
    transition: all 0.3s ease;
}

.quote-services-links a i {
    color: var(--hizo-blue);
}

.quote-services-links a:hover {
    background: var(--hizo-blue);
    color: var(--white);
}

.quote-services-links a:hover i {
    color: var(--white);
}

/* Quote Services Section */
.quote-services-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.quote-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.quote-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

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

.quote-service-card i {
    font-size: 40px;
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-md);
}

.quote-service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.quote-service-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Quote Trust Section */
.quote-trust-section {
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
}

/* Quote Page Responsive */
@media (max-width: 1024px) {
    .quote-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .quote-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .quote-sidebar > * {
        flex: 1 1 calc(50% - var(--spacing-md));
        min-width: 250px;
    }

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

@media (max-width: 768px) {
    .quote-sidebar {
        flex-direction: column;
    }

    .quote-sidebar > * {
        flex: 1 1 100%;
    }

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

/* ==========================================================================
   IMAGE SHOWCASE CAROUSEL
   ========================================================================== */

.service-showcase {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.showcase-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.showcase-slides {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--gray-200);
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.showcase-slide.active {
    opacity: 1;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.showcase-prev,
.showcase-next {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-prev:hover,
.showcase-next:hover {
    background: var(--hizo-blue);
    border-color: var(--hizo-blue);
    color: var(--white);
}

.showcase-prev i,
.showcase-next i {
    font-size: 20px;
}

.showcase-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.showcase-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-dot.active {
    background: var(--hizo-blue);
    transform: scale(1.2);
}

.showcase-dot:hover:not(.active) {
    background: var(--gray-400);
}

/* Solution Cards Grid */
.solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.solution-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 165, 222, 0.1), rgba(30, 165, 222, 0.05));
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.solution-card-icon i {
    font-size: 28px;
    color: var(--hizo-blue);
}

.solution-card:hover .solution-card-icon {
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
}

.solution-card:hover .solution-card-icon i {
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.solution-card > p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.solution-card-features {
    list-style: none;
}

.solution-card-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    padding: var(--spacing-xs) 0;
}

.solution-card-features i {
    color: var(--hizo-blue);
    font-size: 16px;
}

/* Solution Cards Responsive */
@media (max-width: 1024px) {
    .solutions-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .showcase-slides {
        aspect-ratio: 4/3;
    }
}

/* ===========================================
   THANK YOU PAGES
   =========================================== */

.thank-you-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border-radius: 50%;
}

.thank-you-icon i {
    font-size: 56px;
    color: #22c55e;
}

.thank-you-content h1 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.thank-you-subtitle {
    font-size: var(--font-size-md);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.thank-you-details {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--gray-200);
}

.thank-you-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--gray-700);
    font-size: 15px;
}

.thank-you-detail-item i {
    font-size: 20px;
    color: var(--hizo-blue);
}

.thank-you-detail-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-100);
}

.thank-you-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Thank You Services Section */
.thank-you-services-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.thank-you-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.thank-you-service-card {
    display: block;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thank-you-service-card:hover {
    background: var(--white);
    border-color: var(--hizo-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.thank-you-service-card i {
    font-size: 42px;
    color: var(--hizo-blue);
    margin-bottom: var(--spacing-md);
    display: block;
}

.thank-you-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.thank-you-service-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Next Steps Section */
.thank-you-next-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.thank-you-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.thank-you-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--hizo-blue), var(--hizo-blue-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.thank-you-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-sm);
}

.thank-you-step p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Thank You Pages Responsive */
@media (max-width: 1024px) {
    .thank-you-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: var(--font-size-lg);
    }

    .thank-you-subtitle {
        font-size: var(--font-size-base);
    }

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

    .thank-you-steps-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-icon {
        width: 80px;
        height: 80px;
    }

    .thank-you-icon i {
        font-size: 42px;
    }

    .thank-you-cta {
        flex-direction: column;
    }

    .thank-you-cta .btn {
        width: 100%;
    }
}

/* ===========================================
   LEGAL PAGES (Privacy Policy, Terms, etc.)
   =========================================== */

.page-hero-compact {
    padding: var(--spacing-2xl) 0;
    background: var(--hizo-navy);
    color: var(--white);
    text-align: center;
}

.page-hero-compact .page-hero-content {
    max-width: 100%;
}

.page-hero-compact h1 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.page-hero-compact .page-hero-subtitle {
    font-size: var(--font-size-base);
    color: var(--gray-300);
    margin: 0;
}

.legal-content-section {
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--spacing-xl);
}

.legal-section {
    margin-bottom: var(--spacing-xl);
}

.legal-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--hizo-blue);
    display: inline-block;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hizo-navy);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--spacing-md);
}

.legal-section ul li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
    line-height: 1.6;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--hizo-blue);
    border-radius: 50%;
}

.legal-section a {
    color: var(--hizo-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--hizo-blue-dark);
}

.legal-contact {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    border-left: 4px solid var(--hizo-blue);
}

.legal-contact h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hizo-navy);
    margin-bottom: var(--spacing-md);
}

.legal-contact p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.legal-contact ul {
    list-style: none;
    padding: 0;
}

.legal-contact ul li {
    padding: var(--spacing-sm) 0;
    color: var(--gray-700);
}

.legal-contact ul li::before {
    display: none;
}

.legal-contact a {
    color: var(--hizo-blue);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .page-hero-compact h1 {
        font-size: var(--font-size-lg);
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }

    .legal-intro {
        font-size: 1rem;
    }
}

/* ===========================================
   PARTNERS SECTION
   =========================================== */

.partners {
    padding: var(--spacing-3xl) 0;
    background: var(--hizo-navy);
}

.partners .section-label {
    color: var(--hizo-blue);
}

.partners .section-title {
    color: var(--white);
}

.partners .section-subtitle {
    color: var(--gray-300);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
    align-items: center;
    justify-items: center;
    margin-top: var(--spacing-xl);
}

.partners .partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partners .partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.partners .partner-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners .partner-logo:hover img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Partners Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .partner-logo {
        height: 80px;
        padding: var(--spacing-md);
    }

    .partner-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}
