/*
Theme Name: Idaho Sprinkler Repair
Theme URI: https://idahosprinklerrepair.com
Author: Idaho Sprinkler Repair
Author URI: https://idahosprinklerrepair.com
Description: Custom SEO-optimized theme for Idaho Sprinkler Repair - Boise's trusted sprinkler service experts. Built for Google rankings, AI overviews, and voice search optimization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: idaho-sprinkler
Tags: business, one-column, custom-menu, featured-images, full-site-editing, block-patterns

Idaho Sprinkler Repair Theme - Built for maximum SEO performance and conversions.
*/

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Brand Colors - ISR Blue Theme */
    --color-primary: #2563eb;        /* ISR Blue - Primary Brand */
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-secondary: #0f172a;      /* Navy - Secondary */
    --color-secondary-dark: #0a0a0a;
    --color-accent: #f59e0b;         /* Gold - CTAs/Premium */
    --color-accent-dark: #d97706;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;

    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes - Mobile First */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 960px;
    --header-height: 80px;
    --header-height-mobile: 70px;

    /* Borders & Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
}

h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
}

h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

p {
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    h3 { font-size: var(--text-2xl); }
    h4 { font-size: var(--text-xl); }
}

@media (min-width: 1024px) {
    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.container-narrow {
    max-width: var(--container-narrow);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

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

@media (min-width: 768px) {
    .section {
        padding: var(--space-16) 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-20) 0;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    height: var(--header-height-mobile);
    transition: all var(--transition-base);
}

@media (min-width: 1024px) {
    .site-header {
        height: var(--header-height);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-4);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--color-primary);
}

.site-logo img {
    height: 45px;
    width: auto;
}

@media (min-width: 1024px) {
    .site-logo {
        font-size: var(--text-xl);
    }
    .site-logo img {
        height: 55px;
    }
}

/* Top Bar */
.top-bar {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    display: none;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
    .site-header {
        top: 40px;
    }
    body {
        padding-top: calc(var(--header-height) + 40px);
    }
}

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

.top-bar a {
    color: var(--color-white);
}

.top-bar a:hover {
    color: var(--color-gray-200);
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--space-6);
    }
}

.main-nav a {
    color: var(--color-gray-700);
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

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

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: var(--space-2) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: var(--space-2) var(--space-4);
    color: var(--color-gray-700);
}

.nav-dropdown-menu a:hover {
    background: var(--color-gray-50);
    color: var(--color-primary);
}

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

/* Header CTAs */
.header-ctas {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.header-phone {
    display: none;
    align-items: center;
    gap: var(--space-2);
    font-weight: 700;
    color: var(--color-primary);
    font-size: var(--text-lg);
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

.header-phone svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    transition: all var(--transition-fast);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: var(--space-4);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    z-index: 999;
}

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

.mobile-nav a {
    display: block;
    padding: var(--space-3) 0;
    color: var(--color-gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--color-gray-200);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-gray-900);
    border-color: var(--color-accent);
}

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

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

.btn-secondary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

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

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

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

.btn-white:hover {
    background: var(--color-gray-100);
    color: var(--color-primary-dark);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-icon {
    padding: var(--space-3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-12);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: var(--space-20) 0 var(--space-16);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.hero-subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-6);
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: var(--text-xl);
    }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

@media (min-width: 480px) {
    .hero-ctas {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-6);
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

/* ============================================
   BRANDED HERO SECTION
   ============================================ */
.hero-branded {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
}

@media (min-width: 768px) {
    .hero-branded {
        min-height: 100vh;
        height: 100vh;
        margin-top: -124px;
    }
}

.hero-branded-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-branded-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

/* ISR Logo in Hero */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.hero-logo-icon {
    width: 50px;
    height: 60px;
    margin-bottom: 5px;
}

.hero-logo-icon svg {
    width: 100%;
    height: 100%;
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-isr {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    text-shadow: 2px 2px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    letter-spacing: -2px;
}

.hero-logo-isr sup {
    font-size: 18px;
    top: -30px;
}

@media (min-width: 768px) {
    .hero-logo-icon {
        width: 60px;
        height: 70px;
    }

    .hero-logo-isr {
        font-size: 96px;
    }

    .hero-logo-isr sup {
        font-size: 24px;
        top: -40px;
    }
}

.hero-logo-banner {
    display: inline-block;
    background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 4px;
    margin-top: -5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .hero-logo-banner {
        font-size: 18px;
        padding: 10px 30px;
    }
}

/* Hero Title */
.hero-branded-title {
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
    .hero-branded-title {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .hero-branded-title {
        font-size: 52px;
    }
}

/* Hero CTA Buttons */
.hero-branded-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 480px) {
    .hero-branded-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-hero-quote,
.btn-hero-call {
    display: inline-block;
    padding: 16px 35px;
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.2s ease;
    min-width: 200px;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-hero-quote,
    .btn-hero-call {
        font-size: 18px;
        padding: 18px 40px;
    }
}

.btn-hero-quote {
    background: linear-gradient(180deg, #4A90D9 0%, #2563eb 50%, #1e40af 100%);
    color: #fff;
    border: 2px solid #1e40af;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -2px 4px rgba(0,0,0,0.2);
}

.btn-hero-quote:hover {
    background: linear-gradient(180deg, #5BA0E9 0%, #3573fb 50%, #2e50bf 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 12px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -2px 4px rgba(0,0,0,0.2);
}

.btn-hero-call {
    background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: #fff;
    border: 2px solid #000;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -2px 4px rgba(0,0,0,0.3);
}

.btn-hero-call:hover {
    background: linear-gradient(180deg, #5a5a5a 0%, #3a3a3a 50%, #2a2a2a 100%);
    transform: translateY(-2px);
    box-shadow:
        0 6px 12px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -2px 4px rgba(0,0,0,0.3);
}

/* Hero Subtitle */
.hero-branded-subtitle {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-top: -10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-branded-subtitle {
        font-size: 1rem;
    }
}

/* Breadcrumb Bar (Below Hero) */
.breadcrumb-bar {
    background: var(--color-gray-50);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.breadcrumb-bar .breadcrumbs {
    margin: 0;
}

/* Quick Answer Box (AI Optimization) - Premium */
.quick-answer {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(59, 130, 246, 0.03) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-left: 4px solid var(--isr-blue);
    padding: 28px 32px;
    margin: var(--space-6) 0;
    border-radius: 0 16px 16px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
}

.quick-answer:hover {
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
}

.quick-answer-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.quick-answer p {
    margin-bottom: 0;
    font-size: 17px;
    color: var(--color-gray-700);
    line-height: 1.75;
}

.quick-answer p strong {
    color: var(--color-gray-900);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

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

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-200);
}

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

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-white);
}

.service-card h3 {
    margin-bottom: var(--space-2);
}

.service-card h3 a {
    color: var(--color-gray-900);
}

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

.service-card p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    color: var(--color-primary);
    padding: 10px 20px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

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

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

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

/* ============================================
   WHY CHOOSE US / FEATURES
   ============================================ */
.features-section {
    background: var(--color-gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

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

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

.feature-item {
    text-align: center;
    padding: var(--space-6);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-md);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.feature-item h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.feature-item p {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--color-primary);
    color: var(--color-white);
}

.testimonials-section h2 {
    color: var(--color-white);
}

.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: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    color: var(--color-accent);
    margin-bottom: var(--space-3);
}

.testimonial-text {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-name {
    font-weight: 600;
}

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

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

@media (min-width: 640px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.area-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    color: var(--color-gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.area-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.area-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    background: none;
    border: none;
    text-align: left;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-gray-900);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding-bottom: var(--space-5);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-gray-900);
    text-align: center;
}

.cta-section h2 {
    color: var(--color-gray-900);
}

.cta-section p {
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto var(--space-6);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-phone {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-top: var(--space-4);
}

.cta-phone a {
    color: var(--color-gray-900);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-gray-900);
    color: var(--color-gray-300);
    padding-top: var(--space-12);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-10);
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-gray-300);
    font-size: var(--text-sm);
}

.footer-contact-info a:hover {
    color: var(--color-white);
}

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

.footer-heading {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: var(--space-2);
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding: var(--space-6) 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-4);
}

.footer-legal a {
    color: var(--color-gray-500);
    font-size: var(--text-sm);
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-areas {
    background: var(--color-gray-800);
    padding: var(--space-4) 0;
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-gray-400);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    display: flex;
    gap: var(--space-2);
}

@media (min-width: 768px) {
    .mobile-sticky-cta {
        display: none;
    }
}

.mobile-sticky-cta .btn {
    flex: 1;
    justify-content: center;
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: var(--space-12) 0 var(--space-10);
}

@media (min-width: 768px) {
    .page-header {
        padding: var(--space-16) 0 var(--space-12);
    }
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.page-header p {
    font-size: var(--text-lg);
    opacity: 0.9;
    max-width: 700px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: var(--color-white);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs .current {
    color: var(--color-white);
}

/* Page Content */
.page-content {
    padding: var(--space-10) 0;
}

@media (min-width: 768px) {
    .page-content {
        padding: var(--space-16) 0;
    }
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

@media (min-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr 350px;
    }
}

.main-content h2 {
    margin-top: var(--space-8);
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content ul,
.main-content ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

.main-content ul {
    list-style: disc;
}

.main-content ol {
    list-style: decimal;
}

.main-content li {
    margin-bottom: var(--space-2);
    color: var(--color-gray-600);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-widget {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.sidebar-widget h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-primary);
}

.sidebar-cta {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--color-white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-cta p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.sidebar-cta .btn {
    width: 100%;
}

.sidebar-phone {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-top: var(--space-3);
}

.sidebar-phone a {
    color: var(--color-white);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-gray-700);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

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

.form-hint {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-top: var(--space-1);
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0;
}

.pricing-table th,
.pricing-table td {
    padding: var(--space-3) var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.pricing-table th {
    background: var(--color-gray-100);
    font-weight: 600;
    color: var(--color-gray-900);
}

.pricing-table tr:hover td {
    background: var(--color-gray-50);
}

.pricing-table .price {
    font-weight: 700;
    color: var(--color-primary);
}

/* Premium Pricing Table */
.pricing-table-premium {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table-premium th,
.pricing-table-premium td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-100);
}

.pricing-table-premium th {
    background: var(--isr-navy);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.pricing-table-premium th:first-child {
    border-radius: var(--radius-card) 0 0 0;
}

.pricing-table-premium th:last-child {
    border-radius: 0 var(--radius-card) 0 0;
}

.pricing-table-premium tbody tr {
    transition: background 0.2s ease;
}

.pricing-table-premium tbody tr:hover {
    background: var(--color-gray-50);
}

.pricing-table-premium tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table-premium td {
    color: var(--color-gray-700);
}

.pricing-table-premium td.price {
    font-weight: 700;
    color: var(--isr-blue);
    font-size: 17px;
}

@media (max-width: 768px) {
    .pricing-table-premium th,
    .pricing-table-premium td {
        padding: 14px 16px;
        font-size: 14px;
    }

    .pricing-table-premium td.price {
        font-size: 15px;
    }
}

/* Service Plans Grid Responsive */
.service-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    counter-reset: step;
}

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

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

.process-step {
    position: relative;
    text-align: center;
    padding: var(--space-6);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--text-xl);
    font-weight: 700;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-4);
}

.process-step h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.process-step p {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

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

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-gray-500); }

.bg-white { background: var(--color-white); }
.bg-gray { background: var(--color-gray-50); }
.bg-primary { background: var(--color-primary); }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-10);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeIn var(--transition-base) ease-out;
}

.animate-slide-up {
    animation: slideUp var(--transition-base) ease-out;
}

/* ============================================
   TRUST BADGES & CERTIFICATIONS
   ============================================ */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-white);
    border: 2px solid;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

.trust-badge-icon {
    flex-shrink: 0;
}

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

.trust-badge-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-gray-900);
}

.trust-badge-text {
    font-size: var(--text-xs);
    color: var(--color-gray-500);
}

.trust-badges-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
}

.trust-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-700);
}

.trust-badges-footer {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    justify-content: center;
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: var(--space-6);
}

.trust-badge-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-4);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    min-width: 120px;
}

.trust-badge-footer-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
}

.trust-badge-footer-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
}

.trust-badge-footer-text {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.7);
}

/* Project Examples Cards */
.project-card {
    padding: var(--space-5);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-4);
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.project-card-title {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 600;
}

.project-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    color: var(--color-primary);
}

.project-card-tag {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 500;
}

.project-card-description {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ============================================
   PREMIUM DESIGN SYSTEM - $100K WEBSITE UPGRADE
   ============================================ */

/* ----- PREMIUM CSS VARIABLES ----- */
:root {
    /* ISR Brand Colors - Primary Palette */
    --isr-blue: #2563eb;
    --isr-blue-dark: #1e40af;
    --isr-blue-light: #3b82f6;
    --isr-blue-vibrant: #0ea5e9;
    --isr-navy: #0f172a;
    --isr-navy-light: #1e293b;
    --isr-black: #0a0a0a;

    /* Brand Accent Colors - Premium Feel */
    --isr-gold: #f59e0b;
    --isr-gold-light: #fbbf24;
    --isr-gold-dark: #d97706;
    --isr-green: #10b981;
    --isr-green-dark: #059669;
    --isr-green-light: #34d399;

    /* Premium Gradients - Enhanced */
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --gradient-blue-vibrant: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #1e40af 100%);
    --gradient-blue-btn: linear-gradient(180deg, #60a5fa 0%, #3b82f6 30%, #2563eb 70%, #1e40af 100%);
    --gradient-dark-btn: linear-gradient(180deg, #475569 0%, #334155 30%, #1e293b 70%, #0f172a 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --gradient-navy: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    --gradient-premium: linear-gradient(135deg, #1e40af 0%, #0f172a 50%, #0a0a0a 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    --gradient-hero-overlay: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    --gradient-text-shine: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);

    /* Glassmorphism - Enhanced */
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-bg-dark: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-light: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(20px);
    --glass-blur-heavy: blur(40px);

    /* Premium Shadows - Layered System */
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-card:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-card-hover:
        0 10px 40px -10px rgba(0, 0, 0, 0.15),
        0 20px 60px -15px rgba(0, 0, 0, 0.2);
    --shadow-glow-blue: 0 0 50px rgba(37, 99, 235, 0.35);
    --shadow-glow-gold: 0 0 40px rgba(245, 158, 11, 0.3);
    --shadow-btn:
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        0 10px 20px -5px rgba(0, 0, 0, 0.25);
    --shadow-btn-hover:
        0 8px 15px -3px rgba(0, 0, 0, 0.2),
        0 20px 40px -10px rgba(0, 0, 0, 0.3);
    --shadow-elevated:
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 20px 50px -15px rgba(0, 0, 0, 0.2);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Premium Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Premium Typography Enhancement */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --letter-spacing-tight: -0.025em;
    --letter-spacing-wide: 0.05em;

    /* Premium Easing Functions */
    --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Premium Border Radius */
    --radius-premium: 16px;
    --radius-card: 20px;
    --radius-btn: 8px;
}

/* ----- ANIMATION KEYFRAMES ----- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
}

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

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(37, 99, 235, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.8));
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(37, 99, 235, 0.3);
    }
    50% {
        border-color: rgba(37, 99, 235, 0.8);
    }
}

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

/* Premium Interaction States */
.premium-glow:hover {
    animation: glowPulse 1.5s ease-in-out infinite;
}

.premium-bounce:hover {
    animation: bounceIn 0.6s ease;
}

/* ----- SCROLL REVEAL CLASSES ----- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   PREMIUM HERO SECTION (ISR BRAND)
   ============================================ */
.hero-premium {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-premium-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-premium-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
    z-index: 2;
}

.hero-premium-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

/* ISR Logo Block */
.isr-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.isr-sprinkler-icon {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.isr-sprinkler-icon svg {
    width: 100%;
    height: auto;
}

.isr-text {
    font-family: 'Impact', 'Arial Black', 'Helvetica Bold', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    text-shadow:
        3px 3px 0 #fff,
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
    letter-spacing: -2px;
}

.isr-text sup {
    font-size: 24px;
    vertical-align: super;
    margin-left: 2px;
}

.isr-banner {
    display: inline-block;
    background: var(--gradient-blue);
    color: #fff;
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 30px;
    border-radius: 4px;
    margin-top: 8px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* Hero Title */
.hero-premium-title {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-premium-subtitle {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Premium CTA Buttons */
.hero-premium-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn-premium-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 42px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: var(--gradient-blue-btn);
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.35s var(--ease-premium);
    box-shadow:
        0 4px 15px rgba(37, 99, 235, 0.35),
        0 10px 30px -5px rgba(37, 99, 235, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-premium-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-premium-primary:hover::before {
    left: 100%;
}

.btn-premium-primary:hover {
    transform: translateY(-4px) scale(1.02);
    color: #fff;
    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.45),
        0 15px 40px -5px rgba(37, 99, 235, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-premium-primary:active {
    transform: translateY(-2px) scale(1);
}

.btn-premium-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 42px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: var(--gradient-dark-btn);
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.35s var(--ease-premium);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 10px 30px -5px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-premium-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-premium-secondary:hover::before {
    left: 100%;
}

.btn-premium-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    color: #fff;
    background: linear-gradient(180deg, #64748b 0%, #475569 30%, #334155 70%, #1e293b 100%);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 15px 40px -5px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 4px rgba(0, 0, 0, 0.1);
}

.btn-premium-secondary:active {
    transform: translateY(-2px) scale(1);
}

/* Additional Button Variants */
.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--isr-blue);
    background: transparent;
    border: 2px solid var(--isr-blue);
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.35s var(--ease-premium);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-premium-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.btn-premium-outline:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-premium-outline:hover::before {
    opacity: 1;
}

.btn-premium-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--isr-blue);
    background: #fff;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.35s var(--ease-premium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-premium-white:hover {
    transform: translateY(-3px);
    color: var(--isr-blue-dark);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

/* Premium Button with Icon */
.btn-premium-primary svg,
.btn-premium-secondary svg,
.btn-premium-outline svg,
.btn-premium-white svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-premium-primary:hover svg,
.btn-premium-secondary:hover svg {
    transform: translateX(4px);
}

/* Branded Hero (Logo in image) - starts below header, shows full logo */
.hero-branded {
    min-height: calc(100vh - 70px);
    height: auto;
    display: block;
    margin-top: 0;
    aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
    .hero-branded {
        min-height: calc(100vh - 144px);
        aspect-ratio: 16 / 9;
    }
}

@media (min-width: 1024px) {
    .hero-branded {
        min-height: calc(100vh - 154px);
        aspect-ratio: auto;
    }
}

.hero-branded .hero-premium-bg {
    background-position: center top;
    background-size: cover;
}

.hero-branded-ctas {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn-hero {
    padding: 20px 50px;
    font-size: 18px;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-branded-ctas {
        bottom: 40px;
        flex-direction: column;
        width: 90%;
        gap: 12px;
    }

    .btn-hero {
        padding: 16px 30px;
        font-size: 14px;
        width: 100%;
    }
}

/* ============================================
   HERO TAGLINE - Clean White Text
   ============================================ */
.hero-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    margin-top: 8%;
}

.hero-tagline-text {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    font-style: normal;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 1000px;
    margin: 0 auto;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 8px 30px rgba(0, 0, 0, 0.4);
    animation: taglineFadeIn 1.2s ease-out 0.5s both;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   HERO TRUCK - Scroll-Driven Animation
   ============================================ */
.hero-truck-container {
    position: absolute;
    bottom: 0;
    right: -500px;
    z-index: 5;
    pointer-events: none;
}

.hero-truck {
    width: 420px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    transform-origin: center bottom;
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
    .hero-tagline {
        margin-top: 10%;
    }

    .hero-tagline-text {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .hero-truck-container {
        right: -500px;
        bottom: 0;
    }

    .hero-truck {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .hero-tagline {
        margin-top: 12%;
    }

    .hero-tagline-text {
        font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    }

    .hero-truck-container {
        right: -500px;
        bottom: 0;
    }

    .hero-truck {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        margin-top: 15%;
    }

    .hero-tagline-text {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .hero-truck-container {
        right: -500px;
        bottom: 0;
    }

    .hero-truck {
        width: 200px;
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-premium {
        min-height: 500px;
    }

    .isr-text {
        font-size: 56px;
    }

    .isr-banner {
        font-size: 14px;
        padding: 8px 20px;
    }

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

    .hero-premium-subtitle {
        font-size: 18px;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ============================================
   PREMIUM SECTION BACKGROUNDS
   ============================================ */
.section-premium {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

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

/* Dark Section with Overlay */
.section-dark {
    background: var(--isr-navy);
    color: #fff;
    position: relative;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

/* Section with Background Image */
.section-bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.9);
    z-index: 1;
}

.section-bg-image > .container {
    position: relative;
    z-index: 2;
}

/* Curved Top Section Divider */
.section-curve-top {
    position: relative;
}

.section-curve-top::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    clip-path: ellipse(60% 100% at 50% 100%);
}

/* Blue Wave Accent (from reference images) */
.wave-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
}

.wave-accent svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   PREMIUM CARDS
   ============================================ */
.card-premium {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-premium);
}

.card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37, 99, 235, 0.15);
}

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

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

/* Why Choose Us Grid - 4 Across Responsive Layout */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-choose-grid .card-premium {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-grid .card-premium p {
    flex: 1;
}

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

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Service Card Premium */
.service-card-premium {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: visible;
    box-shadow: var(--shadow-card);
    transition: all 0.5s var(--ease-premium);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    box-shadow: inset 0 0 0 0 rgba(37, 99, 235, 0.3);
    transition: box-shadow 0.4s ease;
    pointer-events: none;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow:
        var(--shadow-card-hover),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.service-card-premium:hover::after {
    box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.service-card-premium-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

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

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

.service-card-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    z-index: 2;
}

.service-card-watermark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 45px;
    height: auto;
    opacity: 0.8;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: opacity 0.3s ease;
}

.service-card-premium:hover .service-card-watermark {
    opacity: 1;
}

.service-card-premium-icon {
    position: absolute;
    top: 190px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    z-index: 10;
    transition: transform 0.3s ease;
}

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

.service-card-premium-content {
    padding: 35px 30px 30px;
}

.service-card-premium-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.service-card-premium-desc {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-premium-price {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--isr-blue);
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-card-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--isr-blue);
    padding: 12px 24px;
    border: 2px solid var(--isr-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-card-premium-link:hover {
    gap: 12px;
    background: var(--isr-blue);
    color: white;
    border-color: var(--isr-blue);
}

/* ============================================
   PREMIUM STATS/COUNTERS SECTION
   ============================================ */
.stats-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.stat-premium {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-premium:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-premium-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-premium-number span {
    color: var(--color-accent);
}

.stat-premium-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PREMIUM TESTIMONIALS
   ============================================ */
.testimonial-premium {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: all 0.5s var(--ease-premium);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-premium::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 140px;
    font-family: Georgia, serif;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.12;
    line-height: 1;
    transition: opacity 0.4s ease;
}

.testimonial-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s var(--ease-premium);
}

.testimonial-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37, 99, 235, 0.1);
}

.testimonial-premium:hover::before {
    opacity: 0.2;
}

.testimonial-premium:hover::after {
    transform: scaleX(1);
}

.testimonial-premium-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-premium-stars svg {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
}

.testimonial-premium-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-premium-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-premium-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--isr-blue);
}

.testimonial-premium-info {
    flex: 1;
}

.testimonial-premium-name {
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 2px;
}

.testimonial-premium-location {
    font-size: 14px;
    color: var(--color-gray-500);
}

.testimonial-premium-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-success);
}

/* ============================================
   PREMIUM CTA SECTION
   ============================================ */
.cta-premium {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-navy);
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-premium-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: grayscale(30%);
}

.cta-premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.cta-premium-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.cta-premium-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-premium-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Phone Number Display */
.cta-phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    display: inline-flex;
}

.cta-phone-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    animation: pulse 2s infinite;
}

.cta-phone-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.cta-phone-number a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-phone-number a:hover {
    color: var(--isr-gold-light);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* ============================================
   PREMIUM TRUST BADGES
   ============================================ */
.trust-badges-premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.trust-badge-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-width: 150px;
    text-decoration: none;
    cursor: pointer;
}

a.trust-badge-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

a.trust-badge-premium .trust-badge-premium-text {
    color: var(--color-gray-700);
}

.trust-badge-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-badge-premium img {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
    object-fit: contain;
}

.trust-badge-premium-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-700);
}

/* ============================================
   PREMIUM FAQ ACCORDION
   ============================================ */
.faq-premium {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-premium {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    box-shadow: var(--shadow-md);
}

.faq-question-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-900);
    transition: color 0.3s ease;
}

.faq-question-premium:hover {
    color: var(--isr-blue);
}

.faq-icon-premium {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item-premium.active .faq-icon-premium {
    background: var(--gradient-blue);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-premium.active .faq-answer-premium {
    max-height: 500px;
    padding: 0 30px 24px;
}

.faq-answer-premium p {
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* ============================================
   PREMIUM PROCESS/STEPS
   ============================================ */
.process-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .process-premium {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step-premium {
    text-align: center;
    position: relative;
}

@media (min-width: 768px) {
    .process-step-premium:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -15px;
        width: 30px;
        height: 2px;
        background: var(--isr-blue);
        opacity: 0.3;
    }
}

.process-step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease;
}

.process-step-premium:hover .process-step-number {
    transform: scale(1.1);
}

.process-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ============================================
   PREMIUM SECTION HEADERS
   ============================================ */
.section-header-premium {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-header-premium .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--isr-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.section-header-premium .section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

.section-header-premium h2 {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-header-premium p {
    font-size: 19px;
    color: var(--color-gray-600);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

/* Dark section headers */
.section-dark .section-header-premium .section-label {
    color: var(--isr-gold-light);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(251, 191, 36, 0.3);
}

.section-dark .section-header-premium h2 {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.section-dark .section-header-premium p {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   PREMIUM FEATURE LIST
   ============================================ */
.feature-list-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .feature-list-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item-premium {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item-premium:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon-premium {
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.feature-content-premium h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 6px;
}

.feature-content-premium p {
    font-size: 14px;
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   SERVICE AREAS GRID - Symmetrical Layout
   ============================================ */
.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-areas-grid .location-card-premium {
    flex: 0 1 calc(20% - 16px);
    min-width: 200px;
    max-width: 280px;
}

@media (max-width: 1200px) {
    .service-areas-grid .location-card-premium {
        flex: 0 1 calc(25% - 15px);
    }
}

@media (max-width: 992px) {
    .service-areas-grid .location-card-premium {
        flex: 0 1 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .service-areas-grid .location-card-premium {
        flex: 0 1 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .service-areas-grid .location-card-premium {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/* ============================================
   PREMIUM LOCATION CARDS
   ============================================ */
.location-card-premium {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-card);
    transition: all 0.5s var(--ease-premium);
    cursor: pointer;
}

.location-card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    box-shadow: inset 0 0 0 0 rgba(37, 99, 235, 0.5);
    transition: box-shadow 0.4s ease;
    z-index: 5;
    pointer-events: none;
}

.location-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
}

.location-card-premium:hover::before {
    box-shadow: inset 0 0 0 3px rgba(37, 99, 235, 0.6);
}

.location-card-premium-image {
    position: absolute;
    inset: 0;
}

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

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

.location-card-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.6) 40%,
        rgba(15, 23, 42, 0.2) 70%,
        transparent 100%
    );
    z-index: 2;
    transition: background 0.4s ease;
}

.location-card-premium:hover .location-card-premium-overlay {
    background: linear-gradient(
        to top,
        rgba(30, 64, 175, 0.9) 0%,
        rgba(15, 23, 42, 0.5) 40%,
        rgba(15, 23, 42, 0.15) 70%,
        transparent 100%
    );
}

/* Logo Watermark */
.location-card-premium-watermark {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: auto;
    opacity: 0.85;
    z-index: 4;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: opacity 0.3s ease;
}

.location-card-premium:hover .location-card-premium-watermark {
    opacity: 1;
}

.location-card-premium-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
}

.location-card-premium-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.location-card-premium-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.location-card-premium-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* ============================================
   PREMIUM BUTTONS (GENERAL)
   ============================================ */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-premium-blue {
    background: var(--gradient-blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-premium-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: #fff;
}

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

.btn-premium-outline:hover {
    background: var(--isr-blue);
    color: #fff;
    transform: translateY(-3px);
}

.btn-premium-white {
    background: #fff;
    color: var(--isr-navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-premium-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--isr-navy);
}

/* ============================================
   FLOATING ELEMENTS & DECORATIONS
   ============================================ */
.floating-badge {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.floating-badge-text {
    font-weight: 700;
    color: var(--color-gray-900);
}

.floating-badge-text span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-500);
}

/* ============================================
   PREMIUM HEADER & TOP BAR
   ============================================ */

/* Social Bar - Top-most bar */
.social-bar {
    background: #0f172a;
    color: #fff;
    padding: 6px 0;
    font-size: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

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

.social-bar-directions {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.social-bar-directions:hover {
    color: #fff;
}

.social-bar-directions:hover svg:last-child {
    transform: translateX(3px);
}

.social-bar-directions svg {
    transition: transform 0.25s ease;
}

.social-bar-directions svg:first-child {
    color: #3b82f6;
}

.social-bar-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
}

.social-bar-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Facebook hover */
.social-bar-icon:nth-child(1):hover {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.15);
}

/* Yelp hover */
.social-bar-icon:nth-child(2):hover {
    color: #d32323;
    background: rgba(211, 35, 35, 0.15);
}

/* Nextdoor hover */
.social-bar-icon:nth-child(3):hover {
    color: #8ed500;
    background: rgba(142, 213, 0, 0.15);
}

/* HomeAdvisor hover */
.social-bar-icon:nth-child(4):hover {
    color: #f68b1e;
    background: rgba(246, 139, 30, 0.15);
}

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

.top-bar-premium {
    background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 50%, #1e40af 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    position: fixed;
    top: 32px; /* Below social bar */
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(37, 99, 235, 0.3);
    letter-spacing: 0.3px;
}

@media (max-width: 767px) {
    .top-bar-premium {
        top: 0; /* Social bar hidden on mobile */
    }
}

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

.top-bar-premium-left,
.top-bar-premium-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-premium-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.top-bar-premium-link {
    transition: all 0.25s var(--ease-premium);
    position: relative;
}

.top-bar-premium-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.top-bar-premium-link:hover {
    color: #fff;
}

.top-bar-premium-link:hover::after {
    width: 100%;
}

.top-bar-premium-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 14px;
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: inline;
    }
}

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

/* Premium Main Header */
.site-header-premium {
    position: fixed;
    top: 69px; /* 32px social bar + 37px top bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 100%);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 12px 40px rgba(0, 0, 0, 0.04);
    height: 75px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

@media (max-width: 767px) {
    .site-header-premium {
        top: 0; /* Both top bar & social bar hidden on mobile */
        height: 70px;
    }
}

@media (min-width: 1024px) {
    .site-header-premium {
        height: 85px;
    }
}

.site-header-premium.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.06),
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 20px 50px rgba(37, 99, 235, 0.08);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.header-premium-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

/* Premium Logo */
.site-logo-premium {
    flex-shrink: 0;
}

.header-logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.site-logo-premium:hover .header-logo-img {
    transform: scale(1.03) translateY(-1px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

@media (min-width: 1024px) {
    .header-logo-img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .header-logo-img {
        height: 50px;
    }
}

.logo-premium {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-premium-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.logo-premium-icon svg {
    width: 100%;
    height: 100%;
}

.logo-premium-text {
    display: flex;
    flex-direction: column;
}

.logo-premium-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--isr-blue);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-premium-tagline {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray-600);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .logo-premium-icon {
        width: 50px;
        height: 50px;
    }
    .logo-premium-name {
        font-size: 26px;
    }
    .logo-premium-tagline {
        font-size: 12px;
    }
}

/* Premium Navigation */
.main-nav-premium {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav-premium {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

.nav-link-premium {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 18px;
    color: var(--color-gray-700);
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.2px;
}

.nav-link-premium:hover {
    color: var(--isr-blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.06) 100%);
    transform: translateY(-1px);
}

.nav-link-premium.active {
    color: var(--isr-blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%);
    font-weight: 700;
}

.nav-link-premium svg {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

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

.nav-dropdown-premium:hover .nav-link-premium svg {
    transform: rotate(180deg);
}

.nav-dropdown-premium-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(37, 99, 235, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    min-width: 300px;
}

.nav-dropdown-premium:hover .nav-dropdown-premium-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.nav-dropdown-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.nav-dropdown-premium-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-dropdown-premium-item:hover {
    background: rgba(37, 99, 235, 0.08);
    transform: translateX(4px);
}

.nav-dropdown-premium-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.nav-dropdown-premium-label {
    font-weight: 600;
    color: var(--color-gray-800);
    font-size: 14px;
}

.nav-dropdown-premium-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-dropdown-premium-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--color-gray-700);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-dropdown-premium-list a:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--isr-blue);
    transform: translateX(4px);
}

.nav-dropdown-premium-list a svg {
    color: var(--isr-blue);
}

.nav-dropdown-premium-viewall {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--color-gray-100);
    color: var(--isr-blue) !important;
    font-weight: 600 !important;
}

/* Header CTAs Premium */
.header-ctas-premium {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone-premium {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.header-phone-premium:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

@media (min-width: 768px) {
    .header-phone-premium {
        display: flex;
    }
}

.header-phone-premium-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.header-phone-premium-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--isr-blue);
    letter-spacing: -0.3px;
}

.btn-header {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow:
        0 4px 15px rgba(37, 99, 235, 0.35),
        0 2px 4px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-header:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.4),
        0 4px 10px rgba(37, 99, 235, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .btn-header {
        display: none;
    }
}

/* Mobile Menu Toggle Premium */
.mobile-menu-toggle-premium {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(37, 99, 235, 0.1);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-menu-toggle-premium:hover {
    background: rgba(37, 99, 235, 0.15);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle-premium {
        display: none;
    }
}

.mobile-menu-toggle-premium span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--isr-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle-premium.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle-premium.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle-premium.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Premium */
.mobile-nav-premium {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    padding: 0;
}

@media (min-width: 768px) {
    .mobile-nav-premium {
        top: calc(var(--header-height-mobile) + 44px);
    }
}

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

.mobile-nav-premium-inner {
    padding: 20px;
}

.mobile-nav-premium-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--color-gray-700);
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-nav-premium-link:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--isr-blue);
}

.mobile-nav-premium-link svg {
    color: var(--isr-blue);
}

.mobile-nav-premium-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-100);
}

.mobile-nav-premium-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray-400);
    padding: 0 16px;
    margin-bottom: 10px;
}

.mobile-nav-premium-viewall {
    color: var(--isr-blue) !important;
    margin-top: 10px;
    border-top: 1px solid var(--color-gray-100);
    padding-top: 14px !important;
}

.mobile-nav-premium-ctas {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-gray-200);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
.site-footer-premium {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.footer-premium-main {
    padding: 80px 0 60px;
}

.footer-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-premium-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-premium-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
    }
}

/* Footer Brand Column */
.footer-premium-brand {
    max-width: 400px;
}

.footer-premium-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-premium-logo a:hover .footer-logo-img {
    transform: scale(1.02);
}

.footer-premium-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer Rating */
.footer-premium-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 25px;
}

.footer-premium-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.footer-premium-rating-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-premium-rating-text strong {
    color: #fff;
    font-weight: 700;
}

/* Footer Rating Link Hover */
a.footer-premium-rating {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

a.footer-premium-rating:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

a.footer-premium-rating:hover .footer-premium-rating-text {
    color: #fff;
}

/* Footer Contact */
.footer-premium-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-premium-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.2s ease;
}

a.footer-premium-contact-item:hover {
    color: #fff;
}

.footer-premium-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
}

/* Footer Columns */
.footer-premium-column {
}

.footer-premium-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-premium-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.footer-premium-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-premium-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-premium-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-premium-viewall {
    color: #60a5fa !important;
    font-weight: 600;
    margin-top: 5px;
}

/* Footer Trust Section */
.footer-premium-trust {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-premium-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (min-width: 768px) {
    .footer-premium-trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-premium-trust-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.footer-premium-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.footer-premium-trust-item:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

a.footer-premium-trust-item .footer-premium-trust-name,
a.footer-premium-trust-item .footer-premium-trust-desc {
    color: inherit;
}

.footer-premium-trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-premium-trust-text {
    display: flex;
    flex-direction: column;
}

.footer-premium-trust-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.footer-premium-trust-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-premium-bottom {
    padding: 25px 0;
}

.footer-premium-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-premium-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-premium-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-premium-divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-premium-license {
    color: rgba(255, 255, 255, 0.5);
}

.footer-premium-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-premium-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-premium-legal a:hover {
    color: #fff;
}

/* Footer Service Areas Bar */
.footer-premium-areas {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    text-align: center;
}

.footer-premium-areas .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-premium-areas-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-premium-areas-list {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PREMIUM MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta-premium {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
}

@media (max-width: 767px) {
    .mobile-sticky-cta-premium {
        display: flex;
        gap: 12px;
    }
}

.mobile-sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mobile-sticky-cta-call {
    background: var(--gradient-blue);
    color: #fff;
}

.mobile-sticky-cta-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.mobile-sticky-cta-estimate {
    background: #f8fafc;
    color: var(--isr-blue);
    border: 2px solid var(--isr-blue);
}

.mobile-sticky-cta-estimate:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--isr-blue);
}

/* Body padding for mobile sticky CTA */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .mobile-sticky-cta,
    .sidebar-cta,
    .cta-section,
    .cta-premium {
        display: none;
    }

    body {
        padding-top: 0;
    }

    .hero,
    .hero-premium {
        background: none;
        color: var(--color-gray-900);
        padding: var(--space-4) 0;
        min-height: auto;
    }

    .hero h1,
    .hero-premium-title {
        color: var(--color-gray-900);
        text-shadow: none;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   MOBILE RESPONSIVE OVERRIDES
   Override inline grid styles for mobile devices
   ============================================ */

/* Service Cards Grid - Force single column on mobile */
@media (max-width: 767px) {
    .section-premium > .container > [style*="grid-template-columns: repeat(auto-fit, minmax(340px"],
    .section-premium > .container > [style*="grid-template-columns: repeat(auto-fit, minmax(350px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Why Choose Us cards - 2 columns on tablet, 1 on phone */
    .section-premium > .container > [style*="grid-template-columns: repeat(auto-fit, minmax(280px"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Service cards padding adjustment */
    .service-card-premium-content {
        padding: 25px 20px 20px;
    }

    .service-card-premium-title {
        font-size: 20px;
    }

    .service-card-premium-desc {
        font-size: 14px;
    }

    /* Testimonials padding adjustment */
    .testimonial-premium {
        padding: 25px;
    }

    .testimonial-premium::before {
        font-size: 80px;
        top: 10px;
        left: 20px;
    }

    .testimonial-premium-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .testimonial-premium-author {
        flex-wrap: wrap;
        gap: 12px;
    }

    .testimonial-premium-author > div:first-of-type {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    /* Stats section mobile */
    .stat-premium {
        padding: 20px 15px;
    }

    .stat-premium-number {
        font-size: 36px;
    }

    .stat-premium-label {
        font-size: 12px;
    }

    /* CTA Section mobile */
    .cta-premium {
        padding: 60px 0;
    }

    .cta-premium-title {
        font-size: 28px;
    }

    .cta-premium-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-phone-number {
        font-size: 24px;
    }

    .cta-phone-icon {
        width: 50px;
        height: 50px;
    }

    .cta-premium-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-premium-buttons .btn-premium-primary,
    .cta-premium-buttons .btn-premium-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Trust badges mobile */
    .trust-badges-premium {
        gap: 15px;
        padding: 30px 0;
    }

    .trust-badge-premium {
        padding: 15px 20px;
        min-width: 130px;
        flex: 1 1 calc(50% - 15px);
    }

    .trust-badge-premium img {
        height: 40px;
    }

    .trust-badge-premium-text {
        font-size: 12px;
    }

    /* Card premium mobile */
    .card-premium {
        padding: 25px;
    }

    .card-premium h3 {
        font-size: 18px !important;
    }

    .card-premium > div:first-child {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 20px !important;
    }

    /* Process steps mobile */
    .process-premium {
        flex-direction: column;
        gap: 20px;
    }

    .process-step-premium {
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .process-step-number {
        flex-shrink: 0;
    }

    /* Location cards grid */
    .section-premium > .container > [style*="grid-template-columns: repeat(auto-fit, minmax(200px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* Quick answer box */
    .quick-answer {
        padding: 20px;
    }

    .quick-answer p {
        font-size: 15px;
    }

    /* Section header mobile */
    .section-header-premium h2 {
        font-size: 26px;
    }

    .section-header-premium p {
        font-size: 15px;
    }

    /* Feature list mobile */
    .feature-list-premium {
        margin-top: 30px;
    }

    .feature-item-premium {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .feature-icon-premium {
        align-self: center;
    }

    /* Footer mobile adjustments */
    .footer-premium-main {
        padding: 50px 0 40px;
    }

    .footer-premium-brand {
        text-align: center;
        max-width: 100%;
    }

    .footer-premium-logo {
        display: flex;
        justify-content: center;
    }

    .footer-premium-rating {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .footer-premium-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-premium-column {
        text-align: center;
    }

    .footer-premium-links {
        align-items: center;
    }

    /* Footer trust grid */
    .footer-premium-trust {
        padding: 30px 0;
    }

    .footer-premium-trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-premium-trust-text {
        align-items: center;
    }

    /* Footer legal */
    .footer-premium-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-premium-divider,
    .footer-premium-license {
        display: none;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 380px) {
    /* Location cards single column on very small screens */
    .section-premium > .container > [style*="grid-template-columns: repeat(auto-fit, minmax(200px"] {
        grid-template-columns: 1fr !important;
    }

    .btn-hero {
        padding: 14px 24px;
        font-size: 13px;
    }

    .cta-premium-title {
        font-size: 24px;
    }

    .stat-premium-number {
        font-size: 30px;
    }

    .section-header-premium h2 {
        font-size: 22px;
    }

    .header-logo-img {
        height: 40px;
    }
}

/* Tablet landscape adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Service cards 2 columns on tablet */
    .section-premium > .container > [style*="grid-template-columns: repeat(auto-fit, minmax(340px"],
    .section-premium > .container > [style*="grid-template-columns: repeat(auto-fit, minmax(350px"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Why choose us - 2 columns on tablet */
    .section-premium > .container > [style*="grid-template-columns: repeat(auto-fit, minmax(280px"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cta-premium-title {
        font-size: 36px;
    }
}

/* ============================================
   SERVICE & LOCATION PAGE RESPONSIVE
   ============================================ */

/* Related services grid on service pages */
@media (max-width: 767px) {
    .main-content > .reveal > [style*="grid-template-columns: repeat(auto-fill, minmax(300px"],
    .main-content [style*="grid-template-columns: repeat(auto-fill, minmax(280px"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Service areas links grid */
    .main-content > .reveal > [style*="grid-template-columns: repeat(auto-fill, minmax(180px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Feature list on location pages */
    .feature-list-premium[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .feature-item-premium {
        padding: 14px 16px !important;
    }

    /* Sidebar on mobile */
    .sidebar .card-premium {
        padding: 25px 20px;
    }

    .sidebar .card-premium h3 {
        font-size: 18px !important;
    }

    /* Google map responsive */
    .main-content iframe {
        height: 280px !important;
    }

    /* Section header on inner pages */
    .main-content .section-header-premium h2 {
        font-size: 24px !important;
    }

    /* Entry content typography */
    .entry-content p {
        font-size: 16px;
        line-height: 1.75;
    }

    .entry-content h2 {
        font-size: 24px;
        margin-top: 35px;
    }

    .entry-content h3 {
        font-size: 20px;
    }

    /* Breadcrumb bar */
    .breadcrumb-bar {
        padding: 12px 0;
    }

    .breadcrumb-bar a,
    .breadcrumb-bar span {
        font-size: 13px;
    }

    /* Inner page featured image */
    .main-content > .reveal:first-child img {
        height: 250px !important;
        object-fit: cover;
    }

    /* Buttons in content */
    .main-content [style*="display: flex"][style*="flex-wrap: wrap"] {
        flex-direction: column;
        gap: 12px !important;
    }

    .main-content [style*="display: flex"][style*="flex-wrap: wrap"] .btn-premium-primary,
    .main-content [style*="display: flex"][style*="flex-wrap: wrap"] .btn-premium-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet adjustments for service/location pages */
@media (min-width: 768px) and (max-width: 1023px) {
    .main-content > .reveal > [style*="grid-template-columns: repeat(auto-fill, minmax(300px"],
    .main-content [style*="grid-template-columns: repeat(auto-fill, minmax(280px"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================
   ADDITIONAL MOBILE POLISH
   ============================================ */
@media (max-width: 767px) {
    /* Better touch targets */
    .btn-premium-primary,
    .btn-premium-secondary,
    .btn-premium,
    .btn-premium-outline,
    .btn-premium-white {
        min-height: 48px;
        padding: 14px 24px;
    }

    /* Improve tap targets on location/service cards */
    .location-card-premium {
        height: 200px;
    }

    .service-card-premium {
        min-height: auto;
    }

    /* Location card content on mobile */
    .location-card-premium-content {
        padding: 20px;
    }

    .location-card-premium-title {
        font-size: 18px;
    }

    .location-card-premium-info {
        font-size: 12px;
    }

    /* Watermark sizing on mobile */
    .location-card-premium-watermark {
        width: 40px;
        top: 10px;
        right: 10px;
    }

    .service-card-watermark {
        width: 35px;
        top: 8px;
        right: 8px;
    }

    /* FAQ mobile */
    .faq-question-premium {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer-premium {
        padding: 0 20px 18px;
    }

    .faq-answer-premium p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Process steps better mobile layout */
    .process-premium {
        gap: 25px;
    }

    .process-step-premium {
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
    }

    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .process-step-title {
        font-size: 18px !important;
        margin-bottom: 8px;
    }

    .process-step-desc {
        font-size: 14px !important;
    }
}

/* ============================================
   MOBILE OPTIMIZATION FIXES
   Touch Targets, Tables, Forms, Grids
   ============================================ */

/* Touch Target Minimum 44px - WCAG 2.1 Compliance */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline {
    min-height: 44px;
    padding: var(--space-3) var(--space-5);
}

.mobile-nav a {
    min-height: 44px;
    padding: var(--space-4) var(--space-3);
    display: flex;
    align-items: center;
}

.mobile-menu-toggle,
.mobile-menu-toggle-premium {
    min-width: 44px;
    min-height: 44px;
    padding: var(--space-3);
}

/* Form Inputs - 44px minimum touch target */
.form-input,
.form-textarea,
.form-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea {
    min-height: 44px;
    padding: var(--space-3) var(--space-4);
    font-size: 16px; /* Prevents iOS zoom on focus */
}

/* Responsive Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin-bottom: var(--space-4);
}

.pricing-table,
.pricing-table-premium,
table {
    min-width: 100%;
}

@media (max-width: 767px) {
    .pricing-table,
    .pricing-table-premium {
        font-size: var(--text-sm);
    }

    .pricing-table th,
    .pricing-table td,
    .pricing-table-premium th,
    .pricing-table-premium td {
        padding: var(--space-2) var(--space-3);
        white-space: nowrap;
    }

    /* Card-style tables on mobile */
    .pricing-table-stack,
    .pricing-table-stack thead,
    .pricing-table-stack tbody,
    .pricing-table-stack tr,
    .pricing-table-stack th,
    .pricing-table-stack td {
        display: block;
        width: 100%;
    }

    .pricing-table-stack thead {
        display: none;
    }

    .pricing-table-stack tr {
        margin-bottom: var(--space-4);
        border: 1px solid var(--color-gray-200);
        border-radius: var(--radius-md);
        padding: var(--space-3);
    }

    .pricing-table-stack td {
        padding: var(--space-2) 0;
        border: none;
        text-align: left;
    }

    .pricing-table-stack td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: var(--space-1);
        color: var(--color-gray-600);
        font-size: var(--text-xs);
        text-transform: uppercase;
    }
}

/* Mobile Grid Stacking */
@media (max-width: 767px) {
    .grid-stack-mobile,
    [style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }

    .grid-stack-mobile > *,
    [style*="grid-template-columns: 1fr 1fr"] > * {
        margin-bottom: var(--space-4);
    }

    /* Two-column to single column */
    .two-col-grid {
        grid-template-columns: 1fr !important;
    }

    /* Contact form grid fix */
    .contact-form-grid {
        display: block !important;
    }

    .contact-form-grid > * {
        margin-bottom: var(--space-4);
    }
}

/* Hero Logo Mobile Optimization */
@media (max-width: 480px) {
    .hero-logo-isr {
        font-size: 48px;
    }

    .hero-tagline {
        font-size: var(--text-lg);
    }

    .btn-hero-quote,
    .btn-hero-call {
        min-width: auto;
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-3);
    }
}

/* Small Mobile (320px) */
@media (max-width: 380px) {
    .container {
        padding: 0 var(--space-3);
    }

    .hero-logo-isr {
        font-size: 36px;
    }

    h1 {
        font-size: var(--text-2xl);
    }

    h2 {
        font-size: var(--text-xl);
    }

    .section-premium {
        padding: var(--space-8) 0;
    }
}

/* FAQ Touch Targets */
.faq-question,
.faq-question-premium {
    min-height: 44px;
    cursor: pointer;
}

/* Gallery Filter Buttons */
.gallery-filter {
    min-height: 44px;
    padding: var(--space-3) var(--space-5);
}

/* Mobile Sticky CTA Improvements */
.mobile-sticky-cta,
.mobile-sticky-cta-premium {
    z-index: 9999;
    padding: var(--space-3);
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-cta-btn {
    min-height: 48px;
    font-size: 16px;
}

/* Image Lazy Loading Placeholder */
img[loading="lazy"] {
    background: var(--color-gray-100);
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Improve tap highlight on mobile */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2);
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .mobile-sticky-cta,
    .mobile-sticky-cta-premium,
    .mobile-nav,
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* ============================================
   GALLERY PAGE MOBILE OPTIMIZATION
   ============================================ */

/* Gallery Grid - Responsive */
.gallery-item {
    width: 100%;
}

/* Gallery Filter Buttons - Mobile Responsive */
@media (max-width: 767px) {
    /* Filter buttons container */
    .gallery-filter {
        padding: 10px 16px !important;
        font-size: 14px !important;
        min-height: 44px;
    }

    /* Gallery grid - single column on small tablets/phones */
    [style*="grid-template-columns: repeat(auto-fill, minmax(320px"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Testimonial grid - single column on mobile */
    [style*="grid-template-columns: repeat(auto-fit, minmax(350px"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Services grid - single column on mobile */
    [style*="grid-template-columns: repeat(auto-fit, minmax(280px"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Gallery item text adjustments */
    .gallery-item p[style*="font-size: 18px"] {
        font-size: 16px !important;
    }

    /* Stats section mobile */
    .stats-premium {
        flex-direction: column;
        gap: 15px;
    }

    .stat-premium {
        width: 100%;
        text-align: center;
    }

    /* CTA features row on mobile */
    [style*="display: flex"][style*="flex-wrap: wrap"][style*="justify-content: center"][style*="gap: 30px"] {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }
}

/* Tablet - Two columns */
@media (min-width: 768px) and (max-width: 1023px) {
    [style*="grid-template-columns: repeat(auto-fill, minmax(320px"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    [style*="grid-template-columns: repeat(auto-fit, minmax(350px"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    [style*="grid-template-columns: repeat(auto-fit, minmax(280px"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Small phones (320px - 380px) */
@media (max-width: 380px) {
    /* Filter buttons - horizontal scroll */
    .gallery-filter {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }

    /* Gallery item content padding */
    .gallery-item [style*="padding: 20px"] {
        padding: 15px !important;
    }

    /* Gallery item title */
    .gallery-item p[style*="font-size: 18px"] {
        font-size: 15px !important;
    }

    /* Card icon boxes */
    .card-premium [style*="width: 70px"][style*="height: 70px"] {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 20px !important;
    }

    /* Section padding reduction */
    .section-premium {
        padding: 40px 0 !important;
    }
}

/* Testimonials mobile improvements */
@media (max-width: 767px) {
    .testimonial-premium {
        padding: 20px !important;
    }

    .testimonial-premium-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .testimonial-premium-badge {
        margin-left: 0 !important;
    }

    /* Avatar size on mobile */
    .testimonial-premium-author [style*="width: 56px"] {
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
    }
}

/* Gallery hover effects - disable on touch devices */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover img {
        transform: none;
    }

    .gallery-item:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Ensure gallery images maintain aspect ratio */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
