/* ============================================
   FireWise Safety - Premium Stylesheet
   UAE Market Optimized Design
   ============================================ */

/* CSS Variables - Modern Fire Safety Color Palette */
:root {
    /* Primary Colors - Refined Fire Safety Theme */
    --primary: #EF4444;              /* Refined Fire Red - modern, urgency, action, safety */
    --primary-dark: #DC2626;         /* Darker red for depth and contrast */
    --primary-light: #F87171;        /* Lighter red for highlights */
    
    /* Secondary Accent Colors */
    --orange: #F97316;               /* Vibrant Orange - energy, alertness, action */
    --orange-light: #FB923C;         /* Light orange */
    --orange-dark: #EA580C;          /* Dark orange */
    
    /* Professional & Trust Colors */
    --navy: #1E40AF;                 /* Deep Navy Blue - professional trust, authority, compliance */
    --navy-light: #3B82F6;           /* Light navy */
    --navy-dark: #1E3A8A;            /* Dark navy */
    
    /* Supporting Secondary Colors */
    --gold: #F59E0B;                 /* Vibrant Gold - premium service, trust */
    --gold-light: #FBBF24;           /* Light gold */
    --gold-dark: #D97706;            /* Dark gold */
    
    --blue: #3B82F6;                 /* Modern Blue - calm, reliability */
    --blue-light: #60A5FA;           /* Light blue */
    --blue-dark: #2563EB;            /* Dark blue */
    
    --green: #10B981;                /* Emerald Green - success, trust, safety */
    --green-light: #34D399;          /* Light green */
    --green-dark: #059669;           /* Dark green */
    
    /* Neutral Palette - Modern & Clean */
    --charcoal: #1E1E1E;             /* Text, headings */
    --slate: #4A4A4A;                /* Body text */
    --silver: #8E8E93;               /* Muted text */
    --pearl: #F8F9FA;                /* Light backgrounds */
    --white: #FFFFFF;                /* White */
    
    /* Extended Neutral Palette */
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Legacy color mappings for compatibility */
    --primary-red: var(--primary);
    --primary-red-dark: var(--primary-dark);
    --secondary-blue: var(--navy);
    --secondary-blue-light: var(--navy-light);
    --accent-orange: var(--orange);
    --accent-orange-light: var(--orange-light);
    
    /* Typography - Modern Web Fonts */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows - Premium depth */
    --shadow-sm: 0 1px 2px 0 rgba(30, 30, 30, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(30, 30, 30, 0.08), 0 2px 4px -1px rgba(30, 30, 30, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(30, 30, 30, 0.1), 0 4px 6px -2px rgba(30, 30, 30, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(30, 30, 30, 0.1), 0 10px 10px -5px rgba(30, 30, 30, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(30, 30, 30, 0.25);
    --shadow-primary: 0 4px 14px 0 rgba(239, 68, 68, 0.3);
    --shadow-orange: 0 4px 14px 0 rgba(249, 115, 22, 0.3);
    --shadow-gold: 0 4px 14px 0 rgba(245, 158, 11, 0.3);
    
    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

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

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

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--gray-700);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-600);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Buttons - Premium Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px -5px rgba(230, 57, 70, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px -3px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    border-color: transparent;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.btn-outline:active {
    transform: translateY(-1px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
    min-height: 56px;
}

.btn i, .btn svg {
    width: 18px;
    height: 18px;
}

/* Top Contact Bar - Streamlined & Subtle */
.top-contact-bar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(244, 162, 97, 0.2);
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.top-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.top-contact-left {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.top-contact-right {
    display: flex;
    gap: var(--spacing-md);
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
}

.top-contact-item i {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.top-contact-item a {
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    font-weight: 500;
}

.top-contact-item a:hover {
    color: var(--gold);
    transform: translateX(2px);
}

.top-contact-badge {
    background: rgba(244, 162, 97, 0.15);
    border: 1px solid var(--gold);
    padding: 4px 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation - Modern Glassmorphism Design */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 40px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(230, 57, 70, 0.1);
}

@media (max-width: 767px) {
    .navbar {
        top: 0 !important;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    min-height: 70px;
    width: 100%;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover {
    transform: scale(1.05);
}

.logo a::before {
    content: '🔥';
    font-size: 2rem;
    filter: drop-shadow(0 2px 6px rgba(230, 57, 70, 0.4));
    flex-shrink: 0;
    animation: flameGlow 2s ease-in-out infinite;
}

@keyframes flameGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 6px rgba(230, 57, 70, 0.4));
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.6));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    align-items: center;
    margin: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
    position: relative;
}

.nav-menu a {
    color: var(--gray-700);
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--orange) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - var(--spacing-md));
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-xs) 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding-top: calc(var(--spacing-xs) + 10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--gray-200);
    pointer-events: none;
}

/* Bridge to connect nav item to dropdown - prevents hover gap */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.nav-dropdown-menu .nav-link {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--gray-700);
    font-size: 0.9375rem;
    border-radius: 0;
    transition: all 0.2s ease;
}

.nav-dropdown-menu .nav-link::after {
    display: none;
}

.nav-dropdown-menu .nav-link:hover {
    background: var(--pearl);
    color: var(--primary);
    padding-left: calc(var(--spacing-md) + 8px);
}

.nav-dropdown-menu .nav-link.active {
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary);
    font-weight: 600;
}

.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--charcoal);
}

.btn-cta-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-nav:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-nav::after {
    display: none;
}

.btn-cta-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.45);
}

.btn-cta-nav:active {
    transform: translateY(-1px) scale(1.02);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 100;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Modern Image Carousel Design */
.hero {
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-3xl);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

/* Hero Background Carousel - Horizontal Scroll */
.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slides-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.92) 0%, rgba(29, 53, 87, 0.75) 50%, rgba(29, 53, 87, 0.88) 100%);
    z-index: 1;
}

/* Slide indicators */
.hero-slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slide-indicator.active {
    background: var(--gold);
    width: 40px;
    border-radius: 6px;
    border-color: var(--white);
}

.hero-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(244, 162, 97, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    line-height: 1.1;
    text-align: center;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-cta.mobile-only {
        display: none;
    }
}

/* Hero PDF Card */
.hero-pdf-wrapper {
    position: relative;
    z-index: 10;
}

.hero-pdf-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-pdf-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.hero-pdf-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-primary);
}

.hero-pdf-icon i {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.hero-pdf-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.hero-pdf-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-pdf-preview {
    background: linear-gradient(135deg, var(--pearl) 0%, var(--gray-100) 100%);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-pdf-preview:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, var(--pearl) 100%);
}

.hero-pdf-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--gray-600);
}

.hero-pdf-placeholder i {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.hero-pdf-placeholder span {
    font-weight: 600;
    font-size: 1rem;
}

.hero-pdf-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.hero-pdf-actions .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

/* Trust indicators - Premium cards */
.trust-indicators {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.trust-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: var(--charcoal);
}

.trust-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--charcoal);
    stroke-width: 3;
}

/* Trusted By Section - Enhanced with Trust Badges */
.trusted-by-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--gray-200);
}

.trusted-label {
    text-align: center;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
}

.trust-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon i {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.trust-badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-badge-content strong {
    color: var(--charcoal);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
}

.trust-badge-content span {
    color: var(--gray-600);
    font-size: 0.75rem;
    line-height: 1.3;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
}

/* Stats & Why Choose Combined Section */
.stats-why-choose-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-why-choose-section .section-header h2,
.stats-why-choose-section .section-header p {
    color: var(--white);
}

.stats-why-choose-section .stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.stats-why-choose-section .feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.stats-why-choose-section .feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-8px);
}

.stats-why-choose-section .feature-card h3 {
    color: var(--white);
}

.stats-why-choose-section .feature-card p {
    color: rgba(255, 255, 255, 0.85);
}

.stats-why-choose-section .feature-card:hover h3 {
    color: var(--white);
}

.stats-why-choose-section .feature-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.stats-why-choose-section .feature-icon {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    border-color: var(--gold);
}

.stats-why-choose-section .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    border-color: var(--white);
}

/* Statistics Section - Premium Design */
.stats-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
}

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

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    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);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 0 0 3px 3px;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--gold);
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-accent);
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    -webkit-text-fill-color: var(--gold);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Services Overview - Premium Design */
.services-overview {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pearl) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--orange) 50%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    border: 2px solid var(--gold);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.service-icon svg,
.service-icon i {
    width: 36px;
    height: 36px;
    font-size: 2.25rem;
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    font-size: 1.35rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9375rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

.service-link svg,
.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--orange);
}

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

/* Service Card with Background Image */
.service-card-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    position: relative;
}

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

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

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

/* Why Choose Us - Premium Design */
.why-choose-us {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--pearl);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--white);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.feature-icon svg,
.feature-icon i {
    width: 36px;
    height: 36px;
    font-size: 2rem;
    color: var(--gold);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
    font-size: 1.125rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 40%);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-lg);
    background: rgba(244, 162, 97, 0.2);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
}

.cta-badge i {
    width: 20px;
    height: 20px;
}

.cta-trust-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
}

.cta-stat i {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.cta-stat strong {
    color: var(--white);
    font-weight: 700;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

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

.btn-secondary {
    background: #25D366;
    color: var(--white);
    border-color: transparent;
}

.btn-secondary:hover {
    background: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px -5px rgba(37, 211, 102, 0.5);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.cta-buttons .btn-primary:hover {
    background: var(--pearl);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Page Header - Premium Design */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 162, 39, 0.1) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

/* Service Detail Pages */
.service-detail {
    padding: var(--spacing-3xl) 0;
}

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

.service-detail.alt-bg {
    background: linear-gradient(180deg, var(--pearl) 0%, var(--white) 100%);
}

.service-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.service-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.service-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.compliance-badges {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
}

.badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    box-shadow: var(--shadow-primary);
}

.badge svg {
    width: 16px;
    height: 16px;
}

.service-features {
    margin-bottom: var(--spacing-2xl);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--charcoal);
    font-weight: bold;
    font-size: 0.875rem;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--charcoal);
    stroke-width: 3;
}

.product-types {
    margin-bottom: var(--spacing-2xl);
}

.product-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.product-header h4 {
    color: var(--charcoal);
    margin: 0;
    font-size: 1.25rem;
}

.product-tag {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
}

.product-specs {
    display: grid;
    gap: var(--spacing-sm);
}

.spec-item {
    padding: var(--spacing-md);
    background: var(--pearl);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.spec-item strong {
    color: var(--charcoal);
}

/* Product Images in Product Cards */
.product-image {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.product-image:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

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

.product-image-caption {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
}

/* Maintenance Scope Cards */
.maintenance-scope {
    margin-bottom: var(--spacing-2xl);
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.scope-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
}

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

.scope-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.scope-icon svg,
.scope-icon i {
    width: 28px;
    height: 28px;
    font-size: 1.5rem;
    color: var(--primary);
}

.scope-card h4 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.scope-card ul {
    list-style: none;
    padding-left: 0;
}

.scope-card li {
    padding: var(--spacing-xs) 0;
    color: var(--gray-600);
    position: relative;
    padding-left: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.scope-card li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Equipment Categories */
.equipment-categories {
    display: grid;
    gap: var(--spacing-lg);
}

.equipment-category {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--navy);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.equipment-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.equipment-category h3 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xs);
    list-style: none;
    padding-left: 0;
    margin-top: var(--spacing-md);
}

.equipment-list li {
    padding: var(--spacing-xs) 0;
    color: var(--gray-700);
    position: relative;
    padding-left: var(--spacing-lg);
}

.equipment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--navy);
    border-radius: 2px;
}

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

/* FAQ Section - Premium Design */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--pearl) 0%, var(--white) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* About Section Styles */
.about-section {
    padding: var(--spacing-3xl) 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    text-align: center;
}

.about-intro-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-md);
}

.about-mission-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    text-align: center;
}

.about-mission-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-md);
}

.evacuation-closing {
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-2xl) auto 0;
    padding: var(--spacing-lg);
    background: var(--pearl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
}

.evacuation-closing p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0;
}

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

/* Evacuation Gallery */
.evacuation-gallery {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--gray-200);
}

.evacuation-gallery h3 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.evacuation-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.evacuation-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.evacuation-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

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

/* About Page Styles */
.about-intro {
    padding: var(--spacing-3xl) 0;
}

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

.intro-content .lead {
    font-size: 1.375rem;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.mission-section {
    padding: var(--spacing-3xl) 0;
}

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

.why-choose-section {
    padding: var(--spacing-3xl) 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.advantage-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

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

.advantage-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.advantage-icon svg,
.advantage-icon i {
    width: 32px;
    height: 32px;
    font-size: 1.75rem;
    color: var(--gold);
}

.compliance-section {
    padding: var(--spacing-3xl) 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.compliance-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
    transition: all 0.3s ease;
}

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

.compliance-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.compliance-icon svg,
.compliance-icon i {
    width: 28px;
    height: 28px;
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.expertise-section {
    padding: var(--spacing-3xl) 0;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.expertise-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--navy);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.expertise-item h4 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.expertise-item h4 svg,
.expertise-item h4 i {
    color: var(--primary);
}

.expertise-item p {
    color: var(--gray-600);
    margin: 0;
}

/* Portfolio Section - Masonry Grid */
.portfolio-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--pearl) 0%, var(--white) 100%);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    grid-auto-rows: 10px;
}

@supports (grid-template-rows: masonry) {
    .portfolio-grid {
        grid-template-rows: masonry;
    }
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid var(--gray-200);
    opacity: 1;
    transform: scale(1);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

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

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

.portfolio-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    z-index: 3;
    transition: opacity 0.4s ease;
    padding: var(--spacing-lg);
    text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
}

.portfolio-overlay h3 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

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

.portfolio-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
    font-size: 1.25rem;
}

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

.portfolio-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
}

.portfolio-placeholder-content {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--pearl);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--gray-300);
}

/* Contact Page Styles */
.contact-section {
    padding: var(--spacing-3xl) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--spacing-md);
}

.contact-methods {
    margin: var(--spacing-xl) 0;
}

.contact-method {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: var(--pearl);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg,
.method-icon i {
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
    color: var(--white);
}

.method-content h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-xl);
    color: var(--white);
}

.contact-cta-box h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
}

.contact-cta-box .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}

.contact-cta-box .btn-primary:hover {
    background: var(--gold-light);
}

/* Contact Form - Premium Design */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--spacing-sm);
}

.contact-form-wrapper > p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

.contact-form {
    display: grid;
    gap: var(--spacing-md);
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.error-message {
    color: var(--primary);
    font-size: 0.8125rem;
    margin-top: var(--spacing-xs);
    display: none;
}

.error-message.show {
    display: block;
}

.form-message {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-md);
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

/* Form Button Loading State */
.btn.loading {
    position: relative;
    cursor: not-allowed;
    opacity: 0.8;
}

.btn.loading .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.quick-contact-cta {
    padding: var(--spacing-3xl) 0;
    background: var(--pearl);
}

.quick-contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.quick-contact-content h2 {
    margin-bottom: var(--spacing-md);
}

.quick-contact-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

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

/* Footer - Premium Design */
.footer {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--gray-900) 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--gray-400);
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-section ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact-prominent {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.footer-contact-prominent h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: transparent;
    transform: translateX(5px);
}

.footer-contact-item i {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    color: var(--gray-400);
    font-weight: 400;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.875rem;
}

/* PDF Section - Premium Design */
/* Portfolio CTA Section */
.portfolio-cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--pearl) 0%, var(--gray-50) 100%);
    position: relative;
}

.portfolio-cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-cta-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.portfolio-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.portfolio-cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.portfolio-cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    transition: transform 0.3s ease;
}

.portfolio-cta-card:hover .portfolio-cta-icon {
    transform: scale(1.1) rotate(5deg);
}

.portfolio-cta-icon svg,
.portfolio-cta-icon i {
    width: 48px;
    height: 48px;
    color: var(--white);
}

.portfolio-cta-card h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.portfolio-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.portfolio-cta-buttons .btn {
    min-width: 200px;
    font-weight: 600;
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 30, 0.95);
    z-index: 10000;
    overflow-y: auto;
}

.pdf-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.pdf-modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-2xl);
}

.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
}

.pdf-modal-header h3 {
    margin: 0;
    color: var(--charcoal);
}

.pdf-modal-close {
    background: var(--pearl);
    border: none;
    font-size: 1.25rem;
    color: var(--gray-600);
    cursor: pointer;
    padding: var(--spacing-xs);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pdf-modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.pdf-modal-body {
    position: relative;
    flex: 1;
    overflow: hidden;
    min-height: 500px;
}

.pdf-modal-body iframe {
    width: 100%;
    height: 70vh;
    border: none;
}

.pdf-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gray-600);
    font-size: 1rem;
}

.pdf-modal-footer {
    padding: var(--spacing-md) var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

/* Testimonials Section - Premium Design */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--pearl) 0%, var(--white) 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    min-height: 320px;
}

.testimonial-card {
    display: none;
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-quote {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.testimonial-quote svg,
.testimonial-quote i {
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
    color: var(--charcoal);
}

.testimonial-content p {
    font-size: 1.25rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.9;
    margin-bottom: var(--spacing-xl);
}

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

.author-info h4 {
    margin: 0;
    color: var(--charcoal);
    font-size: 1.125rem;
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.testimonial-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px -5px rgba(196, 30, 58, 0.4);
}

.testimonial-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: scale(1.3);
}


/* Our Clients Section - Logo Carousel */
.our-clients-section {
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.clients-logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-logo-track {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}

.clients-logo-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-width: 180px;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-item.dark-bg {
    background: var(--charcoal);
}

.client-logo-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.client-logo-item img {
    max-height: 70px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-item.dark-bg img {
    filter: grayscale(100%) opacity(0.7) brightness(1.2);
}

.client-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.client-logo-item.dark-bg:hover img {
    filter: grayscale(0%) opacity(1) brightness(1);
}

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


/* Evacuation Plans Hero Section - Compact */
.evacuation-hero-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pearl) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.evacuation-hero-section .section-header {
    margin-bottom: var(--spacing-xl);
}

.evacuation-hero-section .section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--spacing-md);
}

.evacuation-hero-section .section-header p {
    font-size: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.evacuation-features-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.evacuation-feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.evacuation-feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.evacuation-feature-icon-compact {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.evacuation-feature-icon-compact i {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.evacuation-feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.evacuation-feature-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Evacuation Showcase Section */
.evacuation-showcase-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pearl) 100%);
}

.evacuation-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

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

@media (max-width: 768px) {
    .evacuation-showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .flip-card-wrapper {
        height: 240px;
    }
    
    .flip-card-front,
    .flip-card-back {
        padding: var(--spacing-md);
    }
    
    .flip-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .flip-card-icon i {
        width: 24px;
        height: 24px;
    }
    
    .flip-card-front h3,
    .flip-card-back h3 {
        font-size: 1rem;
    }
    
    .flip-card-front p,
    .flip-card-back p {
        font-size: 0.8125rem;
    }
}

/* Flip Card Styles */
.flip-card-wrapper {
    perspective: 1000px;
    height: 280px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.flip-card-wrapper:hover .flip-card {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.flip-card-wrapper:hover .flip-card-front,
.flip-card-wrapper:hover .flip-card-back {
    box-shadow: var(--shadow-xl);
}

.flip-card-back {
    transform: rotateY(180deg);
    border-top-color: var(--orange);
    background: linear-gradient(135deg, var(--white) 0%, var(--pearl) 100%);
}

.flip-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.flip-card-back .flip-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.08) 100%);
}

.flip-card-icon i {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.flip-card-back .flip-card-icon i {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.flip-card-front h3,
.flip-card-back h3 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
}

.flip-card-back h3 {
    font-size: 1rem;
}

.flip-card-front p,
.flip-card-back p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.flip-card-back p {
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.flip-hint {
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-500);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.flip-hint i {
    width: 14px;
    height: 14px;
    animation: rotate-hint 2s ease-in-out infinite;
}

@keyframes rotate-hint {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.evacuation-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.evacuation-type-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.evacuation-type-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, var(--white) 100%);
    box-shadow: var(--shadow-lg);
}

.evacuation-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.evacuation-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.evacuation-type-header h3 {
    color: var(--charcoal);
    margin: 0;
    font-size: 1.25rem;
}

.type-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.evacuation-type-content p {
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.evacuation-type-content ul {
    list-style: none;
    padding-left: 0;
}

.evacuation-type-content li {
    padding: var(--spacing-xs) 0;
    color: var(--gray-600);
    position: relative;
    padding-left: var(--spacing-lg);
}

.evacuation-type-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Evacuation Type Product Images */
.evacuation-type-image {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.evacuation-type-image:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

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

.image-caption {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
}

/* Featured Service Card */
.service-card.featured-service {
    position: relative;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.03) 0%, var(--white) 100%);
    box-shadow: var(--shadow-xl);
}

.service-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-gold);
}

.service-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.service-feature-tag {
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    padding: 4px var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg,
.whatsapp-float i {
    width: 32px;
    height: 32px;
    font-size: 2rem;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--charcoal);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--spacing-sm);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-sticky-cta .btn {
    width: 100%;
}

/* Utility Classes */
.alt-bg {
    background: var(--pearl);
}

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

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

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mb-md { margin-bottom: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-lg { margin-bottom: var(--spacing-lg); }

/* Pulse animation for Nav CTA */
@keyframes navCtaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(196, 30, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0);
    }
}

.btn-cta-nav {
    animation: navCtaPulse 2s infinite;
}
