/* ==========================================
   SITE-WIDE STYLES
   ========================================== */

:root {
    /* Brand colors from logo */
    --primary-blue: #0B4FA2;
    --dark-navy: #0A1F33;
    --bright-blue: #1E7BE6;
    --accent-orange: #f59e0b;

    /* Text colors */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;

    /* Background colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fb;
    --bg-blue-light: #f0f6ff;

    /* Utilities */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(10, 31, 51, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 31, 51, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 31, 51, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    color: var(--dark-navy);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

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

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

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

header {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(10, 31, 51, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.25rem 0;
    border-bottom: 2px solid var(--bg-light);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    will-change: padding, box-shadow;
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(10, 31, 51, 0.15);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: justify-content 0.3s ease;
}

header:not(.scrolled) nav {
    justify-content: center;
}

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

.logo img {
    display: block;
    max-width: 175px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(10, 31, 51, 0.1));
    transition: all 0.3s ease;
    will-change: max-width;
    transform: translateZ(0);
}

header.scrolled .logo img {
    max-width: 60px;
}

.logo img:hover {
    filter: drop-shadow(0 4px 8px rgba(10, 31, 51, 0.15));
    transform: scale(1.02);
}

/* ==========================================
   HOMEPAGE SECTIONS
   ========================================== */

main {
    padding-bottom: 2rem;
}

/* Enhanced Hero Section with Photo Background */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background:
        linear-gradient(135deg, rgba(10, 31, 51, 0.95) 0%, rgba(11, 79, 162, 0.92) 50%, rgba(30, 123, 230, 0.90) 100%),
        url('/assets/photos/IMG_0117.jpg') center center / cover no-repeat;
    color: var(--bg-white);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle water droplet pattern overlay */
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 31, 51, 0.25);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(4px);
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(10, 31, 51, 0.8);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    opacity: 0.98;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Trust Badges Section */
.trust-badges {
    background: var(--bg-white);
    padding: 3rem 0;
    border-bottom: 2px solid var(--bg-light);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-width: 0;
}

.trust-badge:hover {
    background: var(--bg-blue-light);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.badge-text strong {
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 1.05rem;
}

.badge-text span,
.badge-text a {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.4;
}

.badge-text a {
    text-decoration: underline;
    transition: var(--transition);
}

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

/* Enhanced Offer Tiles */
.offer-tiles {
    padding: 5rem 0;
    background: var(--bg-light);
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.offer-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.offer-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--bright-blue));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.offer-card h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.offer-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.card-link:after {
    content: '→';
    transition: var(--transition);
}

.card-link:hover {
    color: var(--bright-blue);
    gap: 0.75rem;
}

/* Enhanced Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.pricing-section h2 {
    text-align: center;
    color: var(--dark-navy);
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.price-box, .terms-box {
    background: linear-gradient(145deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--bg-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.price-box:hover, .terms-box:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.price-box h3, .terms-box h3 {
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.price-note {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-box p {
    margin: 0.75rem 0;
    color: var(--text-medium);
    font-weight: 600;
}

/* Enhanced How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-blue-light);
}

.how-it-works h2 {
    text-align: center;
    color: var(--dark-navy);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(11, 79, 162, 0.3);
    position: relative;
}

.step-number:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

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

.step h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Enhanced Photo Gallery */
.photo-gallery {
    padding: 5rem 0;
    background: var(--bg-white);
}

.photo-gallery h2 {
    text-align: center;
    color: var(--dark-navy);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.photo-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Service Area */
.service-area {
    padding: 5rem 0;
    background: var(--bg-light);
}

.service-area h2 {
    text-align: center;
    color: var(--dark-navy);
}

.area-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-weight: 500;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.cities-list {
    list-style: none;
    padding: 0;
}

.cities-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.cities-list li:before {
    content: "✓ ";
    color: var(--bright-blue);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.cities-list li:hover {
    color: var(--primary-blue);
    padding-left: 0.5rem;
}

.area-cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Enhanced FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    color: var(--dark-navy);
}

.faq-list {
    max-width: 850px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 1.75rem 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: "+";
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
    transition: var(--transition);
    min-width: 30px;
    text-align: center;
}

.faq-item[open] summary:after {
    content: "−";
    color: var(--bright-blue);
}

.faq-item summary:hover {
    background: var(--bg-light);
}

.faq-item p {
    padding: 0 2rem 2rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Enhanced Bottom CTA */
.bottom-cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(145deg, var(--bg-blue-light) 0%, var(--bg-light) 100%);
    border-top: 3px solid var(--primary-blue);
}

.bottom-cta h2 {
    color: var(--dark-navy);
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
}

.bottom-cta p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.bottom-cta .cta-secondary {
    background: var(--bg-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    backdrop-filter: none;
}

.bottom-cta .cta-secondary:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
    border-color: var(--primary-blue);
}

/* ==========================================
   SERVICE PAGES
   ========================================== */

.service-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 50%, var(--bright-blue) 100%);
    color: var(--bg-white);
    padding: 5rem 2rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.service-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero h1 {
    color: var(--bg-white);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(10, 31, 51, 0.3);
    position: relative;
    z-index: 1;
}

.service-intro {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.when-to-call {
    padding: 5rem 0;
    background: var(--bg-light);
}

.when-to-call h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-navy);
}

.when-list {
    max-width: 850px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.when-list li {
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    margin-bottom: 1.25rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-dark);
}

.when-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--bright-blue);
}

.when-list li:before {
    content: "→ ";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* What's Included Section */
.whats-included {
    padding: 4rem 0;
    background: var(--bg-white);
}

.whats-included h2 {
    text-align: center;
    color: var(--dark-navy);
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.included-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.included-list li {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-left: 3px solid var(--primary-blue);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.included-list li:hover {
    background: var(--bg-blue-light);
    transform: translateX(4px);
}

.included-list li:before {
    content: "✓ ";
    color: var(--bright-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-area-note {
    background: var(--bg-blue-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 3px solid var(--primary-blue);
}

.service-area-note h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-area-note p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.related-services {
    padding: 5rem 0;
    background: var(--bg-white);
}

.related-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-navy);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.related-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--bg-light);
}

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

.related-card h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.related-card p {
    color: var(--text-medium);
    font-weight: 500;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

.legal-page {
    max-width: 850px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    font-size: 1.65rem;
    color: var(--primary-blue);
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-page em {
    color: var(--text-light);
}

/* ==========================================
   COMPONENTS (CTAs, Cards, Mobile Bar)
   ========================================== */

/* Enhanced CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 800;
    font-size: 1.15rem;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-primary {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 16px rgba(30, 123, 230, 0.4);
}

.cta-primary:hover {
    color: var(--bg-white);
    background: linear-gradient(135deg, #2d8CFF 0%, var(--bright-blue) 100%);
    box-shadow: 0 6px 20px rgba(30, 123, 230, 0.5);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(10, 31, 51, 0.15);
    padding: 1rem 1rem;
    display: none;
    gap: 1rem;
    z-index: 999;
    border-top: 2px solid var(--primary-blue);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.mobile-cta-button {
    flex: 1;
    display: inline-block;
    padding: 1rem 1.25rem;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-cta-button.cta-primary {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 16px rgba(30, 123, 230, 0.4);
}

.mobile-cta-button.cta-secondary {
    background: var(--bg-light);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

/* Emergency CTA Styling */
.mobile-cta-bar.emergency-bar {
    background: #fff3cd;
    border-top: 3px solid #ff6b6b;
}

.mobile-cta-button.emergency {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    animation: pulse-emergency 2s ease-in-out infinite;
}

@keyframes pulse-emergency {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

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

footer {
    background: linear-gradient(180deg, var(--dark-navy) 0%, #050f19 100%);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    margin-top: 0;
    border-top: 4px solid var(--primary-blue);
}

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

.footer-content p {
    margin: 0.75rem 0;
    font-weight: 500;
}

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.25rem !important;
}

.footer-content a {
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer-content a:hover {
    color: var(--accent-orange);
}

.footer-meta {
    margin-top: 1.5rem;
    opacity: 0.85;
    font-weight: 600;
}

.footer-links {
    margin: 1.5rem 0;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.7;
}

/* ==========================================
   RESPONSIVE (Mobile-First Approach)
   ========================================== */

@media (max-width: 991px) {
    /* Show mobile CTA bar on mobile and tablet */
    .mobile-cta-bar {
        display: flex;
    }

    /* Add padding to body to prevent content from hiding behind mobile bar */
    body {
        padding-bottom: 90px;
    }

    /* Navigation adjustments */
    nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    header {
        padding: 0.5rem 0;
    }

    .logo img {
        max-width: 80px;
    }

    header.scrolled .logo img {
        max-width: 50px;
    }

    /* Hero adjustments */
    .hero {
        padding: 4rem 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .cta-button {
        width: 100%;
        font-size: 1rem;
        padding: 1.1rem 2rem;
    }

    /* Container padding */
    .container {
        padding: 0 1.5rem;
    }

    /* Adjust section padding */
    .offer-tiles,
    .pricing-section,
    .how-it-works,
    .photo-gallery,
    .service-area,
    .faq-section,
    .bottom-cta {
        padding: 3rem 0;
    }

    /* Single column grids on mobile */
    .badge-grid,
    .tile-grid,
    .pricing-content,
    .steps-grid,
    .photo-grid,
    .cities-grid,
    .included-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Trust badge adjustments for mobile */
    .trust-badge {
        padding: 1.25rem;
    }

    .badge-grid {
        gap: 1rem;
    }

    /* What's Included adjustments for mobile */
    .included-list {
        grid-template-columns: 1fr;
    }

    /* Font size adjustments */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    /* Step number size */
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* Tablet/small desktop adjustments */
    .tile-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    /* Desktop-specific enhancements */
    .hero h1 {
        font-size: 3.25rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .service-hero h1 {
        font-size: 3rem;
    }

    /* Hover effects only on desktop */
    .offer-card, .step, .related-card {
        cursor: pointer;
    }
}
