/* ============================================
   MK VEASEY ELECTRICAL - MODERN STYLESHEET
   Version: 2.0 - Mobile-First Responsive Design
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --primary: #1E3A5F;
    --primary-dark: #152a45;
    --secondary: #F7B500;
    --secondary-dark: #d99e00;
    --accent: #2ECC71;
    --accent-dark: #27ae60;
    
    --white: #FFFFFF;
    --light: #F8F9FA;
    --grey-100: #F8F9FA;
    --grey-200: #E9ECEF;
    --grey-300: #DEE2E6;
    --grey-400: #CED4DA;
    --grey-500: #ADB5BD;
    --grey-600: #6C757D;
    --grey-700: #495057;
    --grey-800: #343A40;
    --grey-900: #212529;
    
    /* Typography */
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 5rem;
    
    /* Radius */
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-4);
    color: var(--grey-700);
}

.lead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--grey-700);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Tablet/Foldable screens need more padding */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-5);
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0 var(--space-6);
    }
}

.section {
    padding: var(--space-10) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-12) 0;
    }
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   BUTTONS - MODERN DESIGN
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(1.25rem, 2.5vw, 1.75rem);
    font-family: var(--font-heading);
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 14px 0 rgba(247, 181, 0, 0.4);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(247, 181, 0, 0.5);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(30, 58, 95, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(30, 58, 95, 0.4);
}

.btn-phone {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(46, 204, 113, 0.4);
}

.btn-phone:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(46, 204, 113, 0.5);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: clamp(0.875rem, 1.75vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.9375rem, 1.75vw, 1rem);
}

.btn svg {
    width: clamp(16px, 3vw, 18px);
    height: clamp(16px, 3vw, 18px);
    pointer-events: none; /* Fix: Prevent SVG from intercepting touch events on mobile */
}

/* Fix for mobile touch issues on header icons */
.site-header a svg,
.site-header button svg {
    pointer-events: none;
}

/* Improve touch responsiveness on mobile */
.site-header a,
.site-header button,
.btn,
.mobile-menu-toggle {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* ============================================
   HEADER - CLEAN RESPONSIVE DESIGN
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all var(--transition);
}

/* Top Bar - Slim info bar */
.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8125rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.header-tagline svg {
    width: 14px;
    height: 14px;
    color: var(--secondary);
    flex-shrink: 0;
}

.header-contact {
    display: none;
}

@media (min-width: 640px) {
    .header-contact {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact-item svg {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

.header-contact-item a,
.header-contact-item span {
    color: var(--white);
    font-weight: 500;
}

.header-contact-item a:hover {
    color: var(--secondary);
}

/* Main Header */
.header-main {
    padding: 12px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: block;
}

.site-logo img {
    height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    .site-logo img {
        height: 45px;
    }
}

/* Navigation - Mobile First (Off-canvas) */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    padding: 80px 24px 24px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
}

.main-nav.active {
    right: 0;
}

/* Mobile nav overlay - CRITICAL FIX: Don't block nav clicks */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050; /* Below nav menu (1100) */
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Allow clicks to close overlay */
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    border-bottom: 1px solid var(--grey-200);
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-800);
    transition: color var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: rgba(247, 181, 0, 0.2);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary);
}

/* Ensure nav links work on touch devices */
.nav-link:active {
    color: var(--secondary);
}

/* Dropdown arrow for mobile */
.nav-item.has-dropdown .nav-link::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown.open .nav-link::after {
    transform: rotate(-135deg);
}

/* Dropdown Menu - Mobile */
.nav-dropdown {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 12px 16px;
}

.nav-item.open .nav-dropdown {
    display: block;
}

.nav-dropdown-link {
    display: block;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--grey-600);
    transition: color var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: rgba(247, 181, 0, 0.2);
}

.nav-dropdown-link:active {
    color: var(--secondary);
}

.nav-dropdown-link:hover {
    color: var(--primary);
}

/* Mobile CTA in nav */
.nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--grey-200);
}

.nav-cta-mobile .btn {
    width: 100%;
    justify-content: center;
}

/* Desktop Navigation - 1024px+ */
@media (min-width: 1024px) {
    .main-nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }
    
    .nav-menu {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }
    
    .nav-item {
        position: relative;
        border-bottom: none;
    }
    
    .nav-link {
        padding: 10px 14px;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    /* Remove dropdown arrow on desktop - use hover instead */
    .nav-item.has-dropdown .nav-link::after {
        display: none;
    }
    
    /* Desktop Dropdown */
    .nav-dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        min-width: 220px;
        background: var(--white);
        box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        border-radius: 8px;
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
        z-index: 100;
    }
    
    .nav-item:hover .nav-dropdown,
    .nav-item.open .nav-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-dropdown-link {
        padding: 10px 16px;
        border-radius: 6px;
        font-size: 0.875rem;
    }
    
    .nav-dropdown-link:hover {
        background: var(--grey-100);
        color: var(--primary);
    }
    
    .nav-cta-mobile {
        display: none;
    }
}

/* Larger desktop - more spacing */
@media (min-width: 1200px) {
    .nav-link {
        padding: 10px 18px;
        font-size: 0.9375rem;
    }
    
    .nav-menu {
        gap: 8px;
    }
}

@media (min-width: 1400px) {
    .nav-link {
        padding: 12px 20px;
    }
}

/* Header CTA Buttons */
.header-cta {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
    
    .header-cta .btn {
        padding: 10px 18px;
        font-size: 0.8125rem;
    }
}

@media (min-width: 1200px) {
    .header-cta .btn {
        padding: 12px 22px;
        font-size: 0.875rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--grey-100);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1150;
    flex-shrink: 0;
    transition: background var(--transition);
    position: relative;
}

.mobile-menu-toggle:hover {
    background: var(--grey-200);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
    background: var(--primary);
}

.mobile-menu-toggle.active span {
    background: var(--white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Scrolled State */
.site-header.scrolled .header-top {
    display: none;
}

.site-header.scrolled .header-main {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
    margin-top: 100px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
        margin-top: 120px;
    }
}

.hero-home {
    min-height: 70vh;
}

@media (min-width: 768px) {
    .hero-home {
        min-height: 80vh;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Ensure proper background sizing for ultra-wide/tall screens (foldables) */
@media (min-aspect-ratio: 16/9) {
    .hero-bg {
        background-size: cover;
        background-position: center center;
    }
}

@media (max-aspect-ratio: 9/16) {
    .hero-bg {
        background-size: cover;
        background-position: center center;
    }
}

/* Z Fold 5 and similar foldable devices (cover screen ~23:9, unfolded ~5:4) */
@media (min-width: 280px) and (max-width: 380px) and (min-height: 700px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-bg {
        background-size: cover;
        background-position: center center;
    }
}

/* Z Fold 5 unfolded (tablet mode) */
@media (min-width: 700px) and (max-width: 900px) and (min-height: 800px) {
    .hero {
        min-height: 65vh;
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(30, 58, 95, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--secondary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-5);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-6);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

/* Hero CTA responsive adjustments */
@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet/Foldable - ensure buttons fit */
@media (min-width: 481px) and (max-width: 1023px) {
    .hero-cta {
        gap: var(--space-3);
    }
    
    .hero-cta .btn {
        padding: var(--space-3) var(--space-4);
        font-size: 0.875rem;
    }
    
    .hero-cta .btn-lg {
        padding: var(--space-3) var(--space-5);
    }
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */
.page-hero {
    position: relative;
    padding: var(--space-8) 0 var(--space-6);
    background: var(--grey-100);
    margin-top: 100px;
}

@media (min-width: 768px) {
    .page-hero {
        padding: var(--space-10) 0 var(--space-8);
        margin-top: 130px;
    }
}

@media (min-width: 1024px) {
    .page-hero {
        margin-top: 140px;
    }
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.03) 0%, rgba(30, 58, 95, 0.08) 100%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: var(--space-3);
}

.page-hero .lead {
    margin-bottom: var(--space-4);
    max-width: 700px;
}

.breadcrumb-nav {
    margin-top: var(--space-4);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-2);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--grey-600);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: var(--space-2);
    color: var(--grey-400);
}

.breadcrumb-item a {
    color: var(--primary);
}

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--grey-600);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--grey-100);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--grey-200);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-badge img {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
    .trust-badge img {
        height: 60px;
    }
}

.trust-badge span {
    font-size: 0.75rem;
    color: var(--grey-600);
    font-weight: 600;
}

/* ============================================
   TRUST STATS
   ============================================ */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-6);
    }
}

.trust-stat {
    text-align: center;
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.trust-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.trust-stat-label {
    font-size: 0.875rem;
    color: var(--grey-600);
    font-weight: 600;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--grey-200);
    margin-bottom: 30px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.service-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-icon {
    position: absolute;
    bottom: -25px;
    right: var(--space-4);
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.service-card-content {
    padding: var(--space-6);
    padding-top: calc(var(--space-6) + 25px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-4);
    color: var(--grey-600);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-link:hover {
    color: var(--secondary);
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   FEATURE BOXES
   ============================================ */
.feature-box {
    text-align: center;
    padding: var(--space-5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 16px rgba(247, 181, 0, 0.3);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.feature-box h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
}

.feature-box p {
    font-size: 0.9375rem;
    color: var(--grey-600);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--grey-100);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    left: var(--space-5);
    font-size: 60px;
    color: var(--secondary);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-4);
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-style: italic;
    color: var(--grey-700);
    margin-bottom: var(--space-5);
    line-height: 1.7;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--grey-500);
}

/* Review Platform Links */
.review-platform-link:hover {
    border-color: var(--secondary) !important;
    background: var(--grey-50) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   LOCATION CARDS
   ============================================ */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-card {
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius);
    border: 2px solid var(--grey-200);
    text-align: center;
    transition: all var(--transition);
}

.location-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.location-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.location-card span {
    font-size: 0.875rem;
    color: var(--grey-500);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary);
    color: var(--white);
}

.footer-main {
    padding: var(--space-10) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-6);
    }
}

.footer-logo {
    height: 50px;
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin-bottom: var(--space-4);
}

.footer-accreditations {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.footer-accreditations img {
    height: 45px;
    width: auto;
}

.footer-heading {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: var(--space-4);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: var(--space-2);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-bottom {
    background: var(--primary-dark);
    padding: var(--space-4) 0;
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Developer Credit */
.footer-credit {
    width: 100%;
    text-align: center;
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-credit {
        width: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        margin-left: auto;
    }
}

.dev-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
    padding: 6px 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
}

.dev-credit:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.dev-credit svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.dev-credit:hover svg {
    opacity: 1;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-light { background: var(--grey-100); }
.bg-primary { background: var(--primary); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.d-flex { display: flex; }
.justify-center { justify-content: center; }
.gap-4 { gap: var(--space-4); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   QUOTE FORM STYLES
   ============================================ */

/* Quote Section Layout */
.quote-section {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 1024px) {
    .quote-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Form Wrapper */
.quote-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Progress Indicator */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-8);
    position: relative;
    padding: 0 1rem;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grey-300);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    position: relative;
    z-index: 1;
    flex: 1;
}

.progress-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--grey-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--grey-600);
    transition: all 0.3s ease;
}

.progress-step-label {
    font-size: clamp(0.625rem, 1.5vw, 0.875rem);
    color: var(--grey-600);
    text-align: center;
    transition: color 0.3s ease;
}

.progress-step.active .progress-step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.progress-step.active .progress-step-label {
    color: var(--primary);
    font-weight: 600;
}

.progress-step.completed .progress-step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.progress-step.completed .progress-step-number::after {
    content: '✓';
}

.progress-step.completed .progress-step-label {
    color: var(--accent);
}

/* Hide step numbers when completed */
.progress-step.completed .progress-step-number {
    font-size: 0;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.form-step-header {
    margin-bottom: var(--space-6);
}

.form-step-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
}

.form-step-header p {
    color: var(--grey-600);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* Form Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    color: var(--grey-800);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(0.875rem, 2vw, 1.125rem);
    border: 2px solid var(--grey-300);
    border-radius: var(--radius);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-family: var(--font-body);
    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 3px rgba(30, 58, 95, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--space-2);
}

/* Checkbox Labels */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    margin-bottom: var(--space-4);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--grey-700);
    line-height: 1.5;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--grey-200);
}

.form-actions .btn {
    flex: 1;
}

@media (min-width: 768px) {
    .form-actions .btn {
        flex: 0 0 auto;
        min-width: 150px;
    }
}

/* Success Message */
.form-success {
    text-align: center;
    padding: var(--space-8) var(--space-4);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    color: var(--white);
}

.form-success h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-4);
}

.form-success p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--grey-700);
    margin-bottom: var(--space-4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-success ul {
    list-style: none;
    padding: 0;
    margin: var(--space-6) auto;
    max-width: 500px;
    text-align: left;
}

.form-success ul li {
    padding: var(--space-3);
    margin-bottom: var(--space-2);
    background: var(--grey-100);
    border-radius: var(--radius);
    position: relative;
    padding-left: 2.5rem;
}

.form-success ul li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--accent);
    font-weight: bold;
}

/* Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-4);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--grey-700);
}

.feature-list li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Sidebar Contact */
.sidebar-contact p {
    color: var(--grey-600);
    margin-bottom: var(--space-4);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 600;
    margin-bottom: var(--space-3);
    transition: all 0.3s ease;
}

.contact-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-phone svg {
    flex-shrink: 0;
}

.contact-hours {
    font-size: 0.875rem;
    color: var(--grey-600);
    margin-bottom: var(--space-4);
}

.contact-email {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Sidebar Trust */
.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.trust-badges img {
    max-width: 80px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.rating {
    text-align: center;
}

.stars {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.rating p {
    color: var(--grey-600);
    font-size: 0.875rem;
    margin: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    .form-progress {
        padding: 0;
    }
    
    .progress-step-label {
        display: none;
    }
    
    .progress-step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Section Layout */
.contact-section {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* Contact Info Card */
.contact-info-wrapper,
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--grey-900);
    margin-bottom: var(--space-4);
}

.contact-info-card > p,
.contact-form-card > p {
    color: var(--grey-600);
    margin-bottom: var(--space-6);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.contact-method {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--grey-100);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--grey-200);
    transform: translateX(4px);
}

.contact-method-icon {
    flex-shrink: 0;
    color: #ffffff;
}

.contact-method-icon svg {
    stroke: #ffffff;
}

/* Ensure WhatsApp icon fill is also white */
.contact-method-icon svg[fill="currentColor"] {
    fill: #ffffff;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-method-content h3 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--grey-900);
    margin-bottom: var(--space-2);
}

.contact-method-content p {
    color: var(--grey-600);
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    margin: 0;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    transition: color 0.3s ease;
    display: block;
    margin-bottom: var(--space-1);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Emergency Contact */
.contact-emergency {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius);
    margin-top: var(--space-6);
}

.contact-emergency h3 {
    color: var(--white);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: var(--space-3);
}

.contact-emergency p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-4);
}

.contact-emergency .btn {
    background: var(--white);
    color: #dc3545;
    border-color: var(--white);
}

.contact-emergency .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form .btn-lg {
    width: 100%;
    margin-top: var(--space-4);
}

/* CTA Section */
.cta-section {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method-icon {
        margin: 0 auto;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Introduction */
.about-intro {
    padding: var(--space-10) 0;
    background: var(--white);
}

.about-intro-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-intro-layout {
        grid-template-columns: 1.2fr 1fr;
    }
}

.about-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-5);
}

.about-intro-content .lead {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--grey-700);
    font-weight: 500;
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.about-intro-content p {
    color: var(--grey-600);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: var(--space-4);
    background: var(--grey-100);
    border-radius: var(--radius);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--grey-600);
    font-weight: 500;
}

/* About Image */
.about-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .about-intro-image img {
        max-height: 400px;
    }
}

@media (min-width: 1024px) {
    .about-intro-image img {
        max-height: 450px;
    }
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-8);
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--grey-600);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.feature-card h3 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--grey-600);
    line-height: 1.6;
    margin: 0;
}

/* Certifications Section */
.certifications-section {
    padding: var(--space-10) 0;
    background: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cert-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--grey-100);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.cert-card:hover {
    background: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.cert-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: var(--space-4);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cert-card:hover img {
    filter: grayscale(0%);
}

.cert-card h3 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
}

.cert-card p {
    color: var(--grey-600);
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    margin: 0;
}

/* Values Section */
.values-section {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.values-section .section-header h2,
.values-section .section-header p {
    color: var(--white);
}

.values-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item h3 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--white);
    margin-bottom: var(--space-3);
}

.value-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-6);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .about-intro-layout {
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        bottom: 10px;
        right: 10px;
        padding: var(--space-3);
        font-size: 0.75rem;
    }
    
    .about-badge svg {
        width: 24px;
        height: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   SERVICES HUB PAGE STYLES
   ============================================ */

/* Services Introduction */
.services-intro {
    padding: var(--space-10) 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-5);
}

.intro-content .lead {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--grey-700);
    font-weight: 500;
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.intro-content p {
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

/* Services Grid Section */
.services-grid-section {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--grey-900);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.emergency {
    background: #dc3545;
    color: var(--white);
}

.service-content {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
}

.service-content > p {
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5) 0;
    flex: 1;
}

.service-features li {
    padding: var(--space-2) 0;
    color: var(--grey-700);
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-content .btn {
    width: 100%;
    margin-top: auto;
}

/* Services CTA Section */
.services-cta {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.services-cta .cta-content {
    text-align: center;
}

.services-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-8);
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cta-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cta-feature {
    text-align: center;
}

.cta-feature svg {
    color: var(--secondary);
    margin-bottom: var(--space-3);
}

.cta-feature h3 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--white);
    margin-bottom: var(--space-2);
}

.cta-feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin: 0;
}

/* Mobile Adjustments for Services */
@media (max-width: 767px) {
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: var(--space-4);
    }
}

/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */

/* Trust Stats Section */
.trust-stats {
    padding: var(--space-8) 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--grey-600);
    font-weight: 500;
}

/* Featured Testimonials Section */
.featured-testimonials {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

@media (min-width: 768px) {
    .testimonial-card.featured {
        grid-column: span 2;
    }
}

@media (min-width: 1200px) {
    .testimonial-card.featured {
        grid-column: span 3;
    }
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
    gap: var(--space-3);
}

.rating {
    display: flex;
    gap: 4px;
    color: var(--secondary);
}

.testimonial-card.featured .rating {
    color: var(--secondary);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(34, 197, 94, 0.1);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
}

.testimonial-card.featured .verified-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.verified-badge svg {
    width: 16px;
    height: 16px;
}

.testimonial-content {
    flex: 1;
    margin-bottom: var(--space-5);
}

.testimonial-content p {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.7;
    color: var(--grey-700);
    margin: 0;
}

.testimonial-card.featured .testimonial-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: var(--space-4);
    border-top: 1px solid var(--grey-200);
    gap: var(--space-4);
    flex-wrap: wrap;
}

.testimonial-card.featured .testimonial-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-weight: 700;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    color: var(--grey-900);
    margin-bottom: var(--space-1);
}

.testimonial-card.featured .customer-name {
    color: var(--white);
}

.customer-location {
    font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
    color: var(--grey-600);
}

.testimonial-card.featured .customer-location {
    color: rgba(255, 255, 255, 0.8);
}

.service-type {
    font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
    font-weight: 600;
    color: var(--primary);
    background: var(--grey-100);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.testimonial-card.featured .service-type {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Review Platforms Section */
.review-platforms {
    padding: var(--space-10) 0;
    background: var(--white);
}

.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.platform-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    border: 2px solid var(--grey-200);
    transition: all 0.3s ease;
    text-decoration: none;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.platform-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
}

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: var(--space-2);
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.rating-number {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 800;
    color: var(--primary);
}

.rating-stars {
    color: var(--secondary);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Testimonials CTA Section */
.testimonials-cta {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.testimonials-cta p {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
}

/* Mobile Adjustments for Testimonials */
@media (max-width: 767px) {
    .testimonial-card {
        padding: var(--space-5);
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-type {
        align-self: flex-start;
    }
    
    .platform-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   INDIVIDUAL SERVICE PAGE STYLES
   ============================================ */

/* Service Hero Section */
.service-hero {
    position: relative;
    padding: var(--space-12) 0 var(--space-10);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    overflow: hidden;
    margin-top: 100px; /* Account for fixed header */
}

@media (min-width: 768px) {
    .service-hero {
        margin-top: 120px;
    }
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern_lines.png');
    opacity: 0.1;
    pointer-events: none;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--grey-900);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-4);
}

.service-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.service-hero .lead {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-6);
    line-height: 1.5;
}

.service-hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    font-weight: 500;
}

.hero-feature svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.service-hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Overview Section */
.service-overview {
    padding: var(--space-10) 0;
    background: var(--white);
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .service-overview-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.overview-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-5);
}

.overview-content .lead {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--grey-700);
    font-weight: 500;
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.overview-content p {
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.service-highlights {
    margin-top: var(--space-6);
    padding: var(--space-6);
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.service-highlights h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-4);
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: var(--space-3) 0;
    color: var(--grey-700);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Overview Sidebar */
.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.quick-quote-card,
.contact-card {
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 2px solid var(--grey-200);
}

.quick-quote-card h3,
.contact-card h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
}

.quick-quote-card p {
    color: var(--grey-600);
    margin-bottom: var(--space-4);
}

.quote-features {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--grey-200);
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    color: var(--grey-700);
    font-size: 0.9375rem;
}

.quote-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--grey-200);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact-method svg {
    color: var(--primary);
    flex-shrink: 0;
}

.method-label {
    font-size: 0.8125rem;
    color: var(--grey-600);
    margin-bottom: var(--space-1);
}

.method-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--grey-900);
}

/* Service Process Section */
.service-process {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: var(--space-6);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.process-step h3 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
    margin-top: var(--space-3);
}

.process-step p {
    color: var(--grey-600);
    line-height: 1.6;
    margin: 0;
}

/* Service Pricing Section */
.service-pricing {
    padding: var(--space-10) 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-tier {
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 2px solid var(--grey-200);
    transition: all 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.pricing-tier.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
}

.tier-name {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: var(--space-2);
}

.pricing-tier.featured .tier-name {
    color: var(--white);
}

.tier-price {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.pricing-tier.featured .tier-price {
    color: var(--secondary);
}

.tier-description {
    color: var(--grey-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.pricing-tier.featured .tier-description {
    color: rgba(255, 255, 255, 0.9);
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5) 0;
}

.tier-features li {
    padding: var(--space-2) 0;
    color: var(--grey-700);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-tier.featured .tier-features li {
    color: rgba(255, 255, 255, 0.95);
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.pricing-tier.featured .tier-features li::before {
    color: var(--secondary);
}

.pricing-note {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    margin-top: var(--space-6);
    padding: var(--space-4);
    background: var(--grey-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.pricing-note svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note p {
    color: var(--grey-600);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Service FAQ Section */
.service-faq {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: clamp(1.0625rem, 1.5vw, 1.125rem);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.faq-question::before {
    content: 'Q:';
    color: var(--primary);
    font-weight: 800;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--grey-600);
    line-height: 1.7;
    margin: 0;
    padding-left: calc(var(--space-2) + 1.5rem);
}

/* Related Services Section */
.related-services {
    padding: var(--space-10) 0;
    background: var(--white);
}

.related-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .related-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.related-service-card {
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    border: 2px solid var(--grey-200);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.related-service-card h3 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--grey-900);
    margin-bottom: var(--space-2);
}

.related-service-card p {
    color: var(--grey-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Service CTA Section */
.service-cta {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.service-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.service-cta p {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-top: var(--space-6);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    font-weight: 500;
}

.trust-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Mobile Adjustments for Service Pages */
@media (max-width: 767px) {
    .service-hero {
        padding: var(--space-10) 0 var(--space-8);
    }
    
    .service-hero-features {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }
    
    .service-hero-cta {
        flex-direction: column;
    }
    
    .service-hero-cta .btn {
        width: 100%;
    }
    
    .quick-quote-card,
    .contact-card {
        padding: var(--space-5);
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: var(--space-3);
    }
}

/* ============================================
   LOCATION PAGES STYLES
   ============================================ */

/* Coverage Overview Section */
.coverage-overview {
    padding: var(--space-10) 0;
    background: var(--white);
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .coverage-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.coverage-stat {
    text-align: center;
    padding: var(--space-5);
    background: var(--grey-50);
    border-radius: var(--radius-lg);
    border: 2px solid var(--grey-200);
    transition: all 0.3s ease;
}

.coverage-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-icon {
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--grey-900);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--grey-600);
    font-weight: 500;
}

/* Main Areas Section */
.main-areas {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.regions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

@media (min-width: 768px) {
    .regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.region-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.region-icon {
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.region-card h3 {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
}

.region-card p {
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.region-count {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
}

/* All Locations Section */
.all-locations {
    padding: var(--space-10) 0;
    background: var(--white);
}

.location-group {
    margin-bottom: var(--space-8);
}

.location-group:last-child {
    margin-bottom: 0;
}

.location-group-title {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    color: var(--grey-900);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 3px solid var(--primary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .locations-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.location-card {
    background: var(--grey-50);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.location-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-name {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: var(--space-1);
}

.location-meta {
    font-size: 0.875rem;
    color: var(--grey-600);
}

/* Coverage CTA Section */
.coverage-cta {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.coverage-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.coverage-cta p {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-top: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    font-weight: 500;
}

.contact-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Individual Location Page Styles */
.location-hero {
    padding: var(--space-12) 0 var(--space-10);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 100px; /* Account for fixed header */
}

@media (min-width: 768px) {
    .location-hero {
        margin-top: 120px;
    }
}

.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern_lines.png');
    opacity: 0.1;
    pointer-events: none;
}

.location-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.location-hero .lead {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-6);
}

.location-features {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.location-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    font-weight: 500;
}

.location-feature svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Location Info Section */
.location-info {
    padding: var(--space-10) 0;
    background: var(--white);
}

.location-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .location-info-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.location-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--grey-900);
    margin-bottom: var(--space-5);
}

.location-content h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    color: var(--grey-900);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.location-content p {
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.location-content ul {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.location-content ul li {
    padding: var(--space-2) 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--grey-700);
}

.location-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Nearby Areas Section */
.nearby-areas {
    padding: var(--space-10) 0;
    background: var(--grey-100);
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

@media (min-width: 768px) {
    .nearby-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nearby-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nearby-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nearby-card h3 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--grey-900);
    margin-bottom: var(--space-1);
}

.nearby-card p {
    font-size: 0.875rem;
    color: var(--grey-600);
    margin: 0;
}

/* Mobile Adjustments for Location Pages */
@media (max-width: 767px) {
    .coverage-stats {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-features {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }
    
    .cta-contact {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .nearby-grid {
        grid-template-columns: 1fr;
    }
}
