/* Mobile-First Stylesheet - Blowin' Cold AC */

/* CSS Variables */
:root {
    --primary-blue: #04356f;
    --primary-blue-light: #0552a5;
    --primary-red: #e00707;
    --primary-red-light: #ff0a0a;
    --secondary-teal: #027a97;
    --secondary-teal-light: #029ec2;
    --accent-light-blue: #b7dcec;
    --text-dark: #1a1f24;
    --text-gray: #32373c;
    --text-light: #6a737d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #fafbfc;
    --border-color: #e1e4e8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Logo Watermark Pattern - subtle tiled logo on blue sections */
.logo-watermark {
    position: relative;
}

.logo-watermark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/logo-watermark.png');
    background-repeat: repeat;
    background-size: 400px auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Typography - Mobile First */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

/* Mobile typography */
h1 {
    font-size: 1.75rem;
    /* 28px */
}

h2 {
    font-size: 1.5rem;
    /* 24px */
}

h3 {
    font-size: 1.25rem;
    /* 20px */
}

/* Tablet and desktop typography */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
        /* 40px */
    }

    h2 {
        font-size: 2rem;
        /* 32px */
    }

    h3 {
        font-size: 1.5rem;
        /* 24px */
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
        /* 48px */
    }

    h2 {
        font-size: 2.5rem;
        /* 40px */
    }

    h3 {
        font-size: 1.75rem;
        /* 28px */
    }
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-teal);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Container - Mobile First */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

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

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 32px;
    }
}

/* Buttons - Mobile First */
.btn-primary,
.btn-secondary,
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    min-height: 52px;
    /* Touch target minimum */
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    max-width: 300px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {

    .btn-primary,
    .btn-secondary,
    .btn-white {
        width: auto;
        padding: 14px 28px;
        border-radius: 10px;
        min-height: 50px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c00606 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(224, 7, 7, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff0808 0%, var(--primary-red) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(224, 7, 7, 0.45);
    color: white;
}

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

.btn-secondary {
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
    border-color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(4, 53, 111, 0.3);
}

.btn-white {
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-large {
    padding: 18px 32px;
    font-size: 18px;
    min-height: 58px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .btn-large {
        padding: 18px 36px;
        width: auto;
        font-size: 19px;
    }
}

/* Header - Mobile First */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-header.scrolled .header-top {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Contact Bar Styling */
.contact-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

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

.header-contact {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 14px;
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact .icon-phone,
.header-contact .icon-location {
    width: 16px;
    height: 16px;
}

.phone-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.phone-link:hover {
    color: #f0f0f0;
}

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

.header-cta .btn-primary {
    padding: 6px 16px;
    font-size: 13px;
    background-color: var(--primary-red);
    border: none;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-cta .btn-primary:hover {
    background-color: #c00606;
    transform: translateY(-1px);
}

/* Header Top Bar - Always visible with buttons */
.header-top {
    display: block;
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header Buttons Container */
.header-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Header Button Base Styles */
.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phone Button - Bright Yellow/Gold for maximum visibility */
.header-btn-phone {
    background: #FFD700;
    color: #000;
    border: 2px solid #FFD700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.header-btn-phone:hover {
    background: #FFC000;
    border-color: #FFC000;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.6);
}

.header-btn-phone svg,
.header-btn-phone .icon-phone {
    width: 18px;
    height: 18px;
    stroke: #000;
}

/* Schedule Button - White with border for visibility */
.header-btn-schedule {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.header-btn-schedule:hover {
    background: #f0f8ff;
    border-color: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.5);
}

/* Mobile responsive header buttons */
@media (max-width: 767px) {
    .header-buttons {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        padding: 0 10px;
    }
    
    .header-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .header-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .header-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Navigation - Mobile First */
.main-nav {
    background-color: white;
    padding: 10px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.logo-wrapper {
    flex: 0 1 auto;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
    opacity: 0.85;
}

/* Desktop logo and nav styling */
@media (min-width: 768px) {
    .main-nav {
        padding: 12px 0;
    }

    .logo img {
        height: 80px;
    }
}

@media (min-width: 1024px) {
    .main-nav {
        padding: 15px 0;
    }

    .logo img {
        height: 80px;
    }
}

/* Mobile menu toggle - visible by default */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    position: relative;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-left: auto;
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle:active {
    background-color: rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-toggle .hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Enhanced X button when menu is open - Best Practices */
.mobile-menu-toggle.active {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFC107 100%);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle.active:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5), 0 3px 12px rgba(0, 0, 0, 0.25);
}

.mobile-menu-toggle.active:active {
    transform: rotate(90deg) scale(0.95);
}

/* Transform hamburger into X with improved visibility */
.mobile-menu-toggle.active .hamburger-line {
    background-color: var(--primary-blue);
    height: 4px;
    width: 30px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Pulse animation when menu opens */
@keyframes pulseX {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mobile-menu-toggle.active {
    animation: pulseX 0.4s ease-out;
}

/* Improved touch target for mobile (minimum 44x44px) */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile menu - hidden by default */

.nav-menu {
        opacity: 1;
        visibility: visible;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    background-color: white;
    padding: 0;
    padding-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    list-style: none;
    margin: 0;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    }

.nav-menu li {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    min-height: 56px;
    width: 100%;
    max-width: 100%;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-bottom: none;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
    background-color: rgba(4, 53, 111, 0.05);
}

/* Mobile menu extra content (from header-top) */
.mobile-menu-extra {
    display: block;
    padding: 20px 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-section);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-menu-extra .header-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu-extra .header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu-extra .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    background-color: var(--primary-red);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    justify-content: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.mobile-menu-extra .phone-link:hover {
    background-color: #c00606;
    border-color: #c00606;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 7, 7, 0.3);
}

.mobile-menu-extra .icon-phone {
    width: 20px;
    height: 20px;
    stroke: white;
    flex-shrink: 0;
}

.mobile-menu-extra .header-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-menu-extra .icon-location {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--text-gray);
}

/* Mobile menu CTA section */
.mobile-menu-cta {
    padding: 20px 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    background-color: white;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mobile-menu-cta .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--primary-red);
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 52px;
    box-shadow: 0 2px 8px rgba(224, 7, 7, 0.25);
}

.mobile-menu-cta .btn-primary:hover {
    background-color: #c00606;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 7, 7, 0.35);
}

@media (min-width: 768px) {

    /* Hide mobile menu toggle on desktop */
    .mobile-menu-toggle {
        display: none;
    }

/* Show desktop menu */
    .nav-menu {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        position: relative !important;
        flex-direction: row;
        transform: none !important;
        background: none;
        box-shadow: none;
        padding: 0;
        max-height: none;
        overflow: visible;
        gap: 15px;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        margin-left: auto;
        width: auto;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: none;
        z-index: auto;
    }
    .nav-menu li {
        width: auto;
        margin: 0;
        border-bottom: none;
    }
    .nav-menu a {
        padding: 10px 16px;
        border: none;
        background: none !important;
        position: relative;
        min-height: auto;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    .nav-menu a:hover {
        background-color: rgba(4, 53, 111, 0.08) !important;
    }

    .nav-menu a.active {
        font-weight: 600;
        color: var(--primary-blue);
    }

    .nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 14px;
        right: 14px;
        height: 3px;
        background-color: var(--primary-blue);
        border-radius: 2px 2px 0 0;
    }

    /* Hide mobile menu extra on desktop */
    .mobile-menu-extra,
    .mobile-menu-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 10px;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: var(--primary-blue);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 10px 0;
    margin-top: 15px;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
}


/* Hero Section - Mobile First */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    margin-top: 70px;
    /* Mobile header height */
    overflow: hidden;
    background: linear-gradient(135deg, rgba(4, 53, 111, 0.8), rgba(2, 122, 151, 0.7)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
}

@media (min-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        margin-top: 110px;
        /* Desktop header height (header-top + nav) */
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/logo-watermark.png');
    background-repeat: repeat;
    background-size: 400px auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

/* Page Hero Sections */
.page-hero {
    position: relative;
    padding: 120px 0 60px;
    margin-top: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 53, 111, 0.8), rgba(2, 122, 151, 0.7));
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/logo-watermark.png');
    background-repeat: repeat;
    background-size: 400px auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero {
    background-image: url('../images/services-hero-bg.jpg');
}

.about-hero {
    background-image: url('../images/about-hero-bg.jpg');
}

.contact-hero {
    background-image: url('../images/contact-hero-bg.jpg');
}

/* Hero Section - Creative Split-Screen Redesign */
.hero-section {
    position: relative;
    min-height: 100vh;
    margin-top: 0; /* No margin - starts right after fixed header */
    padding-top: 160px; /* Padding to account for fixed header height on mobile */
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 170px; /* Account for header height on desktop */
    }
}

/* Animated Snowflakes */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: rgba(4, 53, 111, 0.6);
    font-size: 1.5rem;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 15s;
    animation-delay: 2s;
    font-size: 1.2rem;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 10s;
    animation-delay: 4s;
    font-size: 1.8rem;
}

.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 11s;
    animation-delay: 3s;
    font-size: 1.4rem;
}

.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 13s;
    animation-delay: 5s;
}

.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 16s;
    animation-delay: 0s;
    font-size: 1.6rem;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 12s;
    animation-delay: 2.5s;
}

.snowflake:nth-child(9) {
    left: 90%;
    animation-duration: 14s;
    animation-delay: 4.5s;
    font-size: 1.3rem;
}

.snowflake:nth-child(10) {
    left: 95%;
    animation-duration: 15s;
    animation-delay: 1.5s;
}

@keyframes fall {
    to {
        transform: translateY(110%) rotate(360deg);
    }
}

/* Geometric Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    top: 10%;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    bottom: 20%;
    right: -100px;
    animation-delay: -10s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-teal), #4ecdc4);
    top: 50%;
    left: 80%;
    animation-delay: -15s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Split Screen Container */
.hero-split-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero-split-container {
        flex-direction: row;
    }
}

/* Left Side - Content */
.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 24px 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    position: relative;
    z-index: 3;
}

@media (min-width: 768px) {
    .hero-left {
        padding: 60px 60px 80px;
    }
}

@media (min-width: 1024px) {
    .hero-left {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        padding: 100px 80px 100px 100px;
    }
}

.hero-content-wrapper {
    max-width: 600px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tagline */
.hero-tagline {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(4, 53, 111, 0.3);
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    color: var(--text-dark);
    animation-delay: 0.4s;
}

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Hero Features List */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item svg {
    flex-shrink: 0;
    color: var(--secondary-teal);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        gap: 20px;
    }
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    color: white;
    box-shadow: 0 8px 25px rgba(224, 7, 7, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(224, 7, 7, 0.45);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 20px rgba(4, 53, 111, 0.15);
}

.btn-hero-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(4, 53, 111, 0.3);
}

/* Trust Badge */
.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
}

.trust-stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* Right Side - Image */
.hero-right {
    flex: 1;
    position: relative;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .hero-right {
        min-height: auto;
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #d5dfe8 0%, #e8edf2 100%);
    box-shadow:
        inset 0 0 80px rgba(0, 0, 0, 0.15),
        -10px 0 40px rgba(0, 0, 0, 0.1);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    z-index: 3;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    filter: contrast(1.05) saturate(1.1) brightness(1.0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@keyframes subtleZoom {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.03);
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(4, 53, 111, 0.25) 0%,
            rgba(2, 122, 151, 0.15) 50%,
            rgba(4, 53, 111, 0.2) 100%);
    z-index: 2;
    mix-blend-mode: multiply;
    opacity: 0.4;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 3;
}

/* Floating Info Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 24px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 18px;
    animation: floatCard 3s ease-in-out infinite;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 53, 111, 0.05) 0%, rgba(2, 122, 151, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.card-1 {
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 1.5s;
}

@media (max-width: 1023px) {
    .floating-card {
        padding: 16px 20px;
        border-radius: 16px;
    }

    .card-1 {
        top: 10%;
        right: 3%;
    }

    .card-2 {
        bottom: 10%;
        left: 3%;
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.card-icon {
    font-size: 2.8rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.2;
}

/* Remove old hero styles */
.hero-video-wrapper,
.hero-video,
.hero-image-wrapper,
.hero-overlay,
.hero-content,
.hero-badges,
.badge,
.hero-video-control {
    display: none;
}

.hero-video-control svg {
    color: white;
}

/* Quick CTA Section */
.quick-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #04356f 0%, #027a97 100%);
    color: white;
    position: relative;
    overflow: visible;
}

.quick-cta-section .container {
    position: relative;
    z-index: 2;
}

.quick-cta-section .btn-white,
.quick-cta-section .btn-primary {
    position: relative;
    z-index: 2;
}

.quick-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.quick-cta-section h2 {
    position: relative;
    z-index: 1;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.quick-cta-section .btn-white {
    background: white;
    color: var(--primary-blue);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.quick-cta-section .btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.quick-cta-section .btn-primary {
    box-shadow: 0 4px 20px rgba(224, 7, 7, 0.4);
}

/* Services Section - Mobile First */
.services-section {
    padding: 60px 0;
    background-color: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .section-title::after {
        width: 80px;
        height: 5px;
    }

    .section-subtitle {
        font-size: 1.25rem;
        max-width: 750px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

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

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

.service-card {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .service-card {
        padding: 36px;
        border-radius: 16px;
    }
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(4, 53, 111, 0.15);
    border-color: rgba(4, 53, 111, 0.1);
}

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

.service-card:focus-visible {
    outline: 3px solid rgba(2, 122, 151, 0.35);
    outline-offset: 4px;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    color: white;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(4, 53, 111, 0.1), rgba(2, 122, 151, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon-photo {
    width: 150px;
    height: 150px;
    background: none;
    border-radius: 0;
    margin: 0 auto;
}

.service-icon-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(4, 53, 111, 0.18);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(4, 53, 111, 0.15), rgba(2, 122, 151, 0.15));
    box-shadow: 0 8px 24px rgba(4, 53, 111, 0.2);
}

.service-card:hover .service-icon-photo {
    transform: scale(1.08);
    rotate: none;
    background: none;
    box-shadow: none;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.25);
}

.service-icon svg {
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card.featured .service-icon svg {
    color: white;
}

.service-title {
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.featured .service-title {
    color: white;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
    flex-grow: 1;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.95);
}

.service-link {
    color: var(--primary-blue);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-card.featured .service-link {
    color: white;
}

.service-link:hover {
    gap: 12px;
    transform: translateX(4px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

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

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

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

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

.feature-item:hover {
    /* Static - no hover effect */
}

.feature-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(4, 53, 111, 0.2);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-item:hover .feature-icon {
    /* Static - no hover effect */
}

.feature-item:hover .feature-icon::after {
    /* Static - no hover effect */
}

.feature-icon svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-item h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Google Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #04356f 0%, #027a97 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-section .section-title,
.reviews-section .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.reviews-layout {
    display: grid;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.reviews-summary-card,
.reviews-feed-shell {
    background: rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.google-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reviews-summary-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.reviews-summary-card p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 38rem;
}

.reviews-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-review-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-review-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.reviews-feed-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.google-reviews-feed {
    display: grid;
    gap: 16px;
}

.google-review-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 22px;
}

.google-review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.google-review-author {
    font-weight: 700;
    color: white;
}

.google-review-time {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.google-review-stars {
    color: #ffd700;
    letter-spacing: 0.12em;
    font-size: 1rem;
    margin-bottom: 10px;
}

.google-review-text {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin: 0;
}

.google-reviews-fallback {
    color: rgba(255, 255, 255, 0.78);
    margin: 16px 0 0;
    line-height: 1.6;
}

.facebook-recommendations {
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.facebook-recommendations-header {
    margin-bottom: 32px;
}

.facebook-recommendations-header .section-title,
.facebook-recommendations-header .section-subtitle {
    color: white;
}

.facebook-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.facebook-review-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.facebook-review-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.facebook-review-meta h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 4px;
}

.facebook-review-meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.5;
}

.facebook-review-meta span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    white-space: nowrap;
}

.facebook-review-text {
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.8;
    margin: 0;
    white-space: pre-line;
}

@media (min-width: 1024px) {
    .reviews-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: start;
    }

    .facebook-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Awards & Recognition Section */
.awards-section {
    padding: 36px 0;
    background: var(--bg-light);
    text-align: center;
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0 auto 16px;
}

.award-badge {
    transition: transform 0.3s ease;
}

.award-badge:hover {
    /* Static - no hover effect */
}

.award-badge-inner {
    padding: 0;
}

.award-icon {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 132, 61, 0.2));
    transition: filter 0.3s ease;
}

.award-badge:hover .award-icon {
    /* Static - no hover effect */
}

.awards-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Trusted Brands Section */
.trusted-brands-section {
    padding: 60px 0;
    background-color: white;
}

@media (min-width: 768px) {
    .trusted-brands-section {
        padding: 80px 0;
    }
}

.brand-logos-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .brand-logos-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.brand-logo-item {
    text-align: center;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.brand-logo-item:hover {
    /* Static - no hover effect */
}

.brand-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.brand-label {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brands-also-service {
    text-align: center;
    padding: 15px 0 25px;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.brands-also-service p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.brands-cta {
    background: linear-gradient(135deg, var(--bg-section), white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.brands-cta h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.brands-cta p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.brands-cta .btn-primary,
.brands-cta .btn-secondary {
    margin: 5px;
    display: inline-flex;
}

/* Service Area Section */
.service-area-section {
    padding: 60px 0;
    background-color: var(--bg-section);
}

.service-area-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-area-list {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.service-area-list h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.area-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 0 20px 0;
}

.area-list li {
    padding: 12px 16px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.area-note {
    font-style: italic;
    color: var(--text-gray);
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
}

.service-area-cta {
    background-color: var(--primary-blue);
    color: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-area-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-area-cta p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-area-cta .btn-primary {
    background: white;
    color: var(--primary-blue);
    width: 100%;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-area-cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.service-area-cta .btn-primary svg {
    stroke: var(--primary-blue);
}

.service-area-cta .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    width: 100%;
    box-shadow: none;
}

.service-area-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Desktop Styles for Service Area */
@media (min-width: 768px) {
    .service-area-section {
        padding: 80px 0;
    }

    .service-area-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: stretch;
    }

    .service-area-list {
        padding: 40px;
        height: 100%;
    }

    .service-area-list h3 {
        text-align: left;
    }

    .area-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .area-list li {
        text-align: left;
        padding-left: 20px;
    }

    .area-note {
        text-align: left;
    }

    .service-area-cta {
        padding: 40px;
        height: 100%;
        align-items: flex-start;
        text-align: left;
        justify-content: center;
    }

    .service-area-cta h3 {
        font-size: 2rem;
    }

    .service-area-cta .btn-primary,
    .service-area-cta .btn-secondary {
        width: auto;
        min-width: 200px;
        margin-right: 16px;
        margin-bottom: 0;
        display: inline-flex;
    }

    .service-area-cta .btn-wrapper {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e00707 0%, #ff3333 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: visible;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: white;
    margin-bottom: 16px;
    font-size: 2.75rem;
    font-weight: 800;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.25rem;
    }
}

.cta-subtitle {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.98;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 1.5rem;
    }
}

.cta-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 15px;
    opacity: 0.92;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer - Mobile First (Inspired by garage door service sites) */
.main-footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: white;
    padding: 40px 0 20px;
}

/* Emergency CTA Banner at top of footer */
.footer-emergency {
    background: var(--primary-red);
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 12px;
    margin: 0 16px 30px 16px;
}

.footer-emergency h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.footer-emergency .emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1.375rem;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 8px;
    transition: var(--transition);
}

.footer-emergency .emergency-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Service Areas Section */
.footer-service-areas {
    margin-bottom: 30px;
}

.footer-service-areas h3 {
    color: white;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.125rem;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 0.875rem;
}

.service-area-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
}

/* Main Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.125rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact Info Styling */
.footer-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.footer-contact strong {
    color: white;
    font-size: 1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

/* Phone number special styling */
.footer-contact a[href^="tel:"] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary-red);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    margin: 5px 0;
    text-decoration: none;
}

.footer-contact a[href^="tel:"]:hover {
    background: #c00606;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 4px 0;
    display: block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

/* Review/Rating Section */
.footer-reviews {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.footer-reviews h3 {
    margin-bottom: 10px;
    border: none;
    display: block;
}

.star-rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: white;
}

.footer-credit {
    margin-top: 10px;
    opacity: 0.7;
}

/* Tablet and Desktop Footer */
@media (min-width: 768px) {
    .main-footer {
        padding: 50px 0 20px;
    }

    .footer-emergency {
        margin: 0 0 40px 0;
        border-radius: 0;
    }

    .footer-emergency h3 {
        font-size: 1.5rem;
    }

    .service-areas-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-column h3 {
        font-size: 1.25rem;
    }

    .footer-bottom {
        padding-top: 30px;
        font-size: 14px;
    }
}

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

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

/* Utility Classes */
.icon {
    display: inline-block;
    vertical-align: middle;
}

/* Screen reader only content */
.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;
}

/* Responsive Grid Utilities - Mobile First */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-2-col-center {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.grid-2-col-start {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

@media (min-width: 768px) {
    .grid-2-col,
    .grid-2-col-center,
    .grid-2-col-start {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* Improved touch targets for mobile */
@media (hover: none) and (pointer: coarse) {

    .btn-primary,
    .btn-secondary,
    .btn-white,
    .nav-menu a,
    .service-link,
    a[href^="tel:"],
    a[href^="mailto:"] {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading State */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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