/* ===================================================================
   EROL Plumbing - Master CSS
   Navy / Red / Gold Theme (Ray The Plumber Inspired)
   =================================================================== */

/* ===== VARIABLES ===== */
:root {
    --navy: #0b1a30;
    --navy-light: #122344;
    --navy-mid: #0f2038;
    --primary: #0074e4;
    --primary-dark: #005bb5;
    --red: #d42027;
    --red-dark: #b01a20;
    --gold: #e8b923;
    --gold-dark: #c99d1a;
    --success: #16a34a;
    --white: #ffffff;
    --off-white: #f0f2f5;
    --light-gray: #e8eaed;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-light: #c8cdd5;
    --text-navy-light: #8a9ab5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.header-top {
    display: flex; justify-content: space-between;
    align-items: center; padding: 12px 0;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), #00a0ff);
    border-radius: 10px; display: flex;
    align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
}
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800; font-size: 1.4rem; color: var(--white);
}
.logo-text span { color: var(--gold); }
.header-phone-link {
    display: flex; align-items: center; gap: 10px;
    color: var(--white); font-weight: 700; font-size: 1.15rem;
    font-family: 'Space Grotesk', sans-serif; transition: color 0.3s;
}
.header-phone-link:hover { color: var(--gold); }
.header-phone-link i { color: var(--gold); font-size: 1.2rem; }
.header-nav {
    background: var(--navy-light);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-list {
    display: flex; justify-content: center;
    gap: 0; list-style: none; padding: 0;
}
.nav-link {
    display: block; padding: 14px 22px;
    color: var(--text-light); font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.8px; transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold); background: rgba(255,255,255,0.04);
}
.mobile-menu-btn {
    display: none; width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; color: var(--white);
    font-size: 1.25rem; cursor: pointer;
    align-items: center; justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; top: 70px;
    left: 0; right: 0; bottom: 0;
    background: var(--navy); z-index: 900;
    padding: 20px; overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-nav-list { list-style: none; }
.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-link {
    display: block; padding: 16px 12px;
    color: var(--text-light); font-weight: 600;
    font-size: 1rem; text-transform: uppercase;
    letter-spacing: 0.5px; transition: all 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 20px; }
.mobile-phone-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-top: 24px; padding: 16px;
    background: var(--red); color: white; border-radius: 10px;
    font-weight: 700; font-size: 1.1rem;
}

/* ===== SHARED BUTTONS ===== */
.btn-red {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px; background: var(--red);
    color: white; border-radius: 6px;
    font-weight: 700; font-size: 0.95rem;
    text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-primary-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px; font-weight: 600;
    transition: all 0.3s;
}
.btn-primary-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold); color: var(--gold);
}
.gold-sub {
    color: var(--gold); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.8rem; margin-bottom: 12px;
}
.section-eyebrow {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 2rem; margin-bottom: 8px;
}
.lead {
    font-size: 1.1rem; color: var(--text-body);
    line-height: 1.7;
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.floating-call-btn {
    width: 62px; height: 62px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    color: white; font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(212,32,39,0.45);
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(212,32,39,0.6); }
    50% { box-shadow: 0 0 0 18px rgba(212,32,39,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,32,39,0); }
}

/* ===== MOBILE CALL BAR ===== */
.mobile-call-bar {
    display: none; position: fixed; bottom: 0;
    left: 0; right: 0; z-index: 1000;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: 14px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mobile-call-bar a {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; color: white; font-weight: 700; font-size: 1.05rem;
}
.mobile-call-bar i { font-size: 1.4rem; animation: shake 2s infinite; }
.mobile-call-text { display: flex; flex-direction: column; align-items: center; }
.mobile-call-title { font-size: 1.1rem; font-weight: 800; line-height: 1.2; }
.mobile-call-subtitle { font-size: 0.8rem; opacity: 0.9; font-weight: 500; }
@keyframes shake {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 94px; right: 24px;
    width: 42px; height: 42px;
    background: var(--navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); opacity: 0; visibility: hidden;
    transition: all 0.3s; z-index: 998; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
}
.back-to-top.visible { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--primary-dark) 100%);
    position: relative; overflow: hidden; text-align: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0,116,228,0.15) 0%, transparent 60%);
}
.hero-inner {
    position: relative; z-index: 1;
    max-width: 900px; margin: 0 auto;
}
.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 1.6rem;
    color: var(--gold); margin-bottom: 12px;
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem; font-weight: 800;
    color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
    font-size: 1.15rem; color: var(--text-navy-light);
    max-width: 600px; margin: 0 auto 28px; line-height: 1.7;
}
.hero-badges {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 12px; margin-bottom: 32px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 25px; color: var(--white);
    font-size: 0.9rem; font-weight: 600;
}
.hero-badge i { color: var(--gold); }
.hero-phone-btn {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 20px 40px; background: var(--red);
    color: white; border-radius: 12px;
    font-weight: 800; font-size: 1.35rem;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 6px 30px rgba(212,32,39,0.4);
    transition: all 0.3s;
}
.hero-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212,32,39,0.5);
}
.hero-phone-btn i { font-size: 1.4rem; animation: ring 2s infinite; }
@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-12deg); }
    20% { transform: rotate(12deg); }
}
.hero-phone-btn small {
    display: block; font-size: 0.7rem;
    font-weight: 500; opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

/* ===== 3-COLUMN SERVICE CARDS (Homepage) ===== */
.services-trio { padding: 80px 0 60px; background: var(--white); }
.trio-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 40px; margin-bottom: 40px;
}
.trio-card { text-align: center; padding: 0 20px; }
.trio-icon {
    width: 90px; height: 90px; margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    color: var(--gold); font-size: 2.5rem;
    border: 3px solid var(--gold); transition: all 0.3s;
}
.trio-card:hover .trio-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(232,185,35,0.3);
}
.trio-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.trio-card p { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; }
.trio-btn-wrap { text-align: center; }

/* ===== OFFERS SECTION (Homepage) ===== */
.offers-section {
    padding: 60px 0; background: var(--off-white);
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
}
.offers-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 30px; align-items: center;
}
.offers-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 8px; }
.offers-text p { color: var(--text-body); margin-bottom: 24px; line-height: 1.7; }
.offers-highlight {
    background: var(--white); border: 2px solid var(--gold);
    border-radius: 12px; padding: 28px; text-align: center;
}
.offers-highlight .offer-title {
    font-family: 'Playfair Display', serif; font-size: 1.4rem;
    color: var(--navy); margin-bottom: 8px;
}
.offers-highlight .offer-sub {
    color: var(--red); font-weight: 700; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px;
}
.offers-highlight p { color: var(--text-body); font-size: 0.9rem; }

/* ===== REVIEWS (Homepage) ===== */
.reviews-section { padding: 80px 0; background: var(--white); text-align: center; }
.reviews-header h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 2.2rem; margin-bottom: 8px;
}
.reviews-header p {
    color: var(--text-body); text-transform: uppercase;
    letter-spacing: 1.5px; font-size: 0.8rem;
    font-weight: 600; margin-bottom: 40px;
}
.review-slider { max-width: 750px; margin: 0 auto; position: relative; min-height: 200px; }
.review-slide { display: none; animation: fadeIn 0.5s ease; }
.review-slide.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.review-text {
    font-size: 1rem; line-height: 1.8; color: var(--text-body);
    padding: 0 20px; margin-bottom: 24px; font-style: italic;
}
.review-text::before {
    content: '\201C'; font-size: 3rem; color: var(--gold);
    line-height: 1; display: block; margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}
.review-author { font-weight: 700; font-size: 1rem; color: var(--navy); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 8px; }
.review-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.review-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--light-gray); cursor: pointer;
    transition: all 0.3s; border: none;
}
.review-dot.active { background: var(--red); transform: scale(1.2); }
.review-btn-wrap { margin-top: 32px; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 80px 0; background: var(--off-white); }
.why-inner { text-align: center; max-width: 850px; margin: 0 auto; }
.why-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem; font-weight: 700; margin-bottom: 24px;
}
.why-inner > p { color: var(--text-body); line-height: 1.8; margin-bottom: 24px; font-size: 0.98rem; }
.why-features {
    display: grid; grid-template-columns: 1fr;
    gap: 20px; margin: 32px 0;
}
.why-feat {
    display: flex; align-items: center; gap: 16px;
    background: var(--white); border: 1px solid var(--light-gray);
    border-radius: 12px; padding: 20px 24px;
    text-align: left; transition: all 0.3s;
}
.why-feat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md); border-color: var(--primary);
}
.why-feat-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px; display: flex;
    align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.5rem;
}
.why-feat h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.why-feat p { font-size: 0.85rem; color: var(--text-body); margin: 0; }

/* ===== SERVICE AREAS ===== */
.areas-section { padding: 50px 0; background: var(--navy); text-align: center; }
.areas-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white); font-size: 1.6rem; font-weight: 700; margin-bottom: 8px;
}
.areas-section > .container > p { color: var(--text-navy-light); margin-bottom: 24px; }
.areas-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area-badge {
    padding: 8px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; color: var(--text-light);
    font-size: 0.85rem; font-weight: 500; transition: all 0.3s;
}
.area-badge:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ===== CONTACT SECTION (Homepage & Contact Page) ===== */
.contact-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white); text-align: center;
}
.contact-info-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 30px; max-width: 900px; margin: 0 auto;
}
.contact-info-card { text-align: center; }
.contact-info-card h4 {
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gold);
    margin-bottom: 8px; font-weight: 700;
}
.contact-info-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.contact-info-card a { color: var(--white); transition: color 0.3s; }
.contact-info-card a:hover { color: var(--gold); }
.contact-phone-big { margin-top: 40px; }
.contact-phone-big a {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 40px; background: var(--red);
    color: white; border-radius: 10px;
    font-weight: 800; font-size: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 20px rgba(212,32,39,0.4);
    transition: all 0.3s;
}
.contact-phone-big a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,32,39,0.5);
}

/* ===== PAGE HERO (About, Contact, Service pages) ===== */
.page-hero {
    padding: 130px 0 50px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center; color: var(--white);
}
.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem; font-weight: 800; margin-bottom: 12px;
}
.page-hero p { color: var(--text-navy-light); font-size: 1.1rem; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 80px 0; }
.about-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 50px; align-items: start;
}
.about-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem; font-weight: 700; margin-bottom: 16px;
}
.about-text p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.about-highlights { display: grid; gap: 12px; margin: 24px 0; }
.highlight-item { display: flex; align-items: center; gap: 12px; }
.highlight-item i { color: var(--success); font-size: 1.2rem; }
.about-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.stat-card {
    background: var(--off-white); border: 1px solid var(--light-gray);
    border-radius: 12px; padding: 28px 20px; text-align: center;
    transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem; font-weight: 800; color: var(--primary);
    margin-bottom: 4px;
}
.stat-label { font-size: 0.85rem; color: var(--text-body); }

.values-section { padding: 60px 0; background: var(--off-white); }
.values-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 24px; margin-top: 40px;
}
.value-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white); border: 1px solid var(--light-gray);
    border-radius: 12px; padding: 24px; transition: all 0.3s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px; display: flex;
    align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.3rem;
}
.value-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.value-card p { font-size: 0.9rem; color: var(--text-body); margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-page-section { padding: 80px 0; }
.contact-page-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 50px;
}
.contact-methods { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
.contact-method {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: var(--off-white);
    border-radius: 12px; border: 1px solid var(--light-gray);
    transition: all 0.3s;
}
.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md); border-color: var(--primary);
}
.contact-method-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px; display: flex;
    align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.3rem;
}
.contact-method-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.contact-method-content a {
    color: var(--primary); font-size: 1.05rem;
    font-weight: 600; display: block; margin-bottom: 4px;
    word-break: break-all;
}
.contact-method-content a:hover { color: var(--primary-dark); }
.contact-method-content p { color: var(--text-body); font-size: 0.9rem; margin: 0; }

.emergency-box {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white; padding: 36px 28px; border-radius: 16px;
    text-align: center; margin-bottom: 24px;
}
.emergency-box .e-icon {
    width: 70px; height: 70px;
    background: rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 16px;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.emergency-box h3 { font-size: 1.3rem; margin-bottom: 10px; }
.emergency-box p { margin-bottom: 20px; opacity: 0.95; font-size: 0.95rem; }
.btn-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; background: white; color: var(--red);
    border-radius: 10px; font-weight: 700; font-size: 1.05rem;
    transition: all 0.3s;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

.services-sidebar {
    background: var(--off-white); border: 1px solid var(--light-gray);
    border-radius: 16px; padding: 28px 24px;
}
.services-sidebar h3 { font-size: 1.15rem; margin-bottom: 16px; }
.services-sidebar-list { list-style: none; margin-bottom: 20px; }
.services-sidebar-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}
.services-sidebar-list li:last-child { border-bottom: none; }
.services-sidebar-list i { color: var(--success); font-size: 1rem; flex-shrink: 0; }

.map-section { padding: 0 0 60px; }
.map-wrapper {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--light-gray); box-shadow: var(--shadow-md);
}
.map-wrapper iframe { width: 100%; height: 300px; border: none; display: block; }

/* ===== SERVICES PAGE ===== */
.services-page-section { padding: 80px 0; }
.services-page-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 24px;
}
.service-page-card {
    display: flex; flex-direction: column;
    background: var(--white); border: 1px solid var(--light-gray);
    border-radius: 16px; overflow: hidden;
    transition: all 0.3s;
}
.service-page-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg); border-color: var(--primary);
}
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.5s;
}
.service-page-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px; display: flex;
    align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.4rem; margin-bottom: 16px;
}
.service-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-card-body p { color: var(--text-body); font-size: 0.92rem; margin-bottom: 16px; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.service-tag {
    padding: 4px 12px; background: rgba(0,116,228,0.1);
    color: var(--primary); border-radius: 12px;
    font-size: 0.75rem; font-weight: 600;
}
.service-tag.emergency { background: rgba(212,32,39,0.1); color: var(--red); }
.service-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-weight: 600; font-size: 0.9rem;
}
.service-card-link:hover { color: var(--navy); }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-hero {
    padding: 130px 0 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 16px; font-size: 0.85rem;
}
.breadcrumb a { color: var(--text-navy-light); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-navy-light); }
.breadcrumb .current { color: var(--white); font-weight: 500; }
.detail-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem; font-weight: 800; margin-bottom: 12px;
}
.detail-hero-desc {
    color: var(--text-navy-light); font-size: 1.1rem;
    max-width: 600px; margin-bottom: 16px;
}
.emergency-badge-inline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; background: var(--red);
    color: white; border-radius: 20px; font-weight: 600;
    font-size: 0.9rem; animation: pulse 2s infinite;
}

/* Image Gallery */
.gallery-section { padding: 50px 0; }
.gallery-container { max-width: 900px; margin: 0 auto; }
.gallery-main {
    position: relative; border-radius: 16px; overflow: hidden;
    background: var(--navy); box-shadow: var(--shadow-lg); margin-bottom: 16px;
}
.gallery-slider { position: relative; height: 350px; }
.gallery-slide {
    position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s;
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav {
    position: absolute; top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    display: flex; justify-content: space-between;
    padding: 0 16px; pointer-events: none;
}
.gallery-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.9); border: none;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem;
    pointer-events: auto; transition: all 0.3s;
    color: var(--navy);
}
.gallery-btn:hover { background: white; transform: scale(1.1); }
.gallery-counter {
    position: absolute; bottom: 16px; right: 16px;
    padding: 8px 16px; background: rgba(0,0,0,0.7);
    color: white; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600;
}
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
}
.gallery-thumb {
    height: 90px; border-radius: 8px; overflow: hidden;
    cursor: pointer; border: 2px solid transparent;
    transition: all 0.3s;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb:hover { border-color: var(--gold); opacity: 0.85; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Service Content */
.service-content-section { padding: 60px 0; background: var(--off-white); }
.service-content-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
.service-main h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    margin: 28px 0 12px; color: var(--text-dark);
}
.service-main h2:first-child { margin-top: 0; }
.service-main p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.service-checklist { list-style: none; margin: 20px 0; }
.service-checklist li {
    display: flex; gap: 12px; padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}
.service-checklist li:last-child { border-bottom: none; }
.service-check-icon {
    width: 24px; height: 24px; flex-shrink: 0;
    background: var(--success); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.8rem;
}
.service-sidebar { display: grid; gap: 24px; }
.sidebar-card {
    background: var(--white); border: 1px solid var(--light-gray);
    border-radius: 16px; padding: 28px; text-align: center;
}
.sidebar-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.sidebar-card p { color: var(--text-body); margin-bottom: 20px; font-size: 0.95rem; }
.sidebar-features { list-style: none; }
.sidebar-features li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--light-gray);
    text-align: left;
}
.sidebar-features li:last-child { border-bottom: none; }
.sidebar-features i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0 20px;
}
.footer-nav {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 6px 20px; margin-bottom: 24px;
}
.footer-nav a {
    color: var(--text-navy-light); font-size: 0.8rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social {
    display: flex; justify-content: center;
    gap: 12px; margin-bottom: 24px;
}
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    color: var(--text-light); font-size: 1rem;
    transition: all 0.3s;
}
.social-link:hover {
    background: var(--gold); color: var(--navy);
    border-color: var(--gold); transform: translateY(-2px);
}
.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 1.3rem;
    color: var(--gold); text-align: center; margin-bottom: 16px;
}
.footer-bottom {
    text-align: center; color: var(--text-navy-light);
    font-size: 0.8rem; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 767px) {
    .header-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .header-phone-link .phone-text { display: none; }
    .mobile-call-bar { display: block; }
    .floating-call { display: none; }
    body { padding-bottom: 76px; }
    .back-to-top { bottom: 85px; }

    .hero { padding: 110px 0 50px; }
    .hero-tagline { font-size: 1.2rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-phone-btn { font-size: 1.1rem; padding: 16px 28px; }

    .page-hero { padding: 110px 0 40px; }
    .page-hero h1 { font-size: 1.8rem; }
    .detail-hero-title { font-size: 1.8rem; }
    .service-detail-hero { padding: 110px 0 30px; }

    .services-trio { padding: 50px 0 40px; }
    .trio-card h3 { font-size: 1.1rem; }
    .offers-section { padding: 40px 0; }
    .offers-text h2 { font-size: 1.6rem; }
    .reviews-header h2 { font-size: 1.7rem; }
    .review-text { font-size: 0.92rem; padding: 0 8px; }
    .why-inner .section-eyebrow { font-size: 1.5rem; }
    .why-inner h2 { font-size: 1.4rem; }
    .areas-section h2 { font-size: 1.3rem; }
    .section-eyebrow { font-size: 1.5rem; }
    .map-wrapper iframe { height: 250px; }
}

/* ===== TABLET (768px+) ===== */
@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
    .header-nav { display: block; }

    .hero { padding: 140px 0 70px; }
    .hero-title { font-size: 3.5rem; }
    .hero-tagline { font-size: 1.8rem; }
    .page-hero h1 { font-size: 3rem; }
    .detail-hero-title { font-size: 3rem; }

    .trio-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .offers-grid { grid-template-columns: 1.2fr 1fr; }
    .why-features { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

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

    .contact-page-grid { grid-template-columns: 1.4fr 1fr; }
    .contact-methods { grid-template-columns: 1fr 1fr; }
    .map-wrapper iframe { height: 350px; }

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

    .gallery-slider { height: 500px; }
    .gallery-thumb { height: 110px; }
    .gallery-thumbnails { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
    .service-content-grid { grid-template-columns: 2fr 1fr; }

    .floating-call { bottom: 30px; right: 30px; }
    .floating-call-btn { width: 68px; height: 68px; font-size: 1.6rem; }
}

/* ===== DESKTOP (992px+) ===== */
@media (min-width: 992px) {
    .hero-title { font-size: 3.8rem; }
    .why-features { grid-template-columns: repeat(3, 1fr); }
    .contact-info-grid { grid-template-columns: repeat(4, 1fr); }
    .services-page-grid { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .map-wrapper iframe { height: 400px; }
}
/* ===== EMERGENCY CTA SECTION ===== */
/* Add this to your style.css (replace the old .offers-section styles) */

.emergency-cta-section {
    padding: 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}
.emergency-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.emergency-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px 20px;
    text-align: center;
    color: var(--white);
}
.emergency-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.emergency-cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: pulse 2s infinite;
}
.emergency-cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.emergency-cta-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 550px;
    margin: 0 auto 20px;
}
.emergency-cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
}
.emergency-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.95;
}
.emergency-cta-features i {
    font-size: 1.1rem;
}
.emergency-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.emergency-cta-note {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .emergency-cta-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 60px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .emergency-cta-content {
        flex-direction: row;
        align-items: center;
    }
    .emergency-cta-text h2 { font-size: 2.2rem; }
    .emergency-cta-text p { margin: 0 0 16px; }
    .emergency-cta-features { justify-content: flex-start; }
    .emergency-cta-action { align-items: flex-end; flex-shrink: 0; }
}