/* ============================================
   BRIDGEWATER PLUMBING & MECHANICAL
   Global Stylesheet
   ============================================ */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-900: #0a1628;
    --blue-800: #0f2447;
    --blue-700: #143366;
    --blue-600: #1a4480;
    --blue-500: #2563eb;
    --blue-400: #3b82f6;
    --blue-300: #60a5fa;
    --blue-200: #93c5fd;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --red-600: #dc2626;
    --red-500: #ef4444;
    --red-400: #f87171;
    --red-50: #fef2f2;
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-100: #dcfce7;
    --amber-500: #f59e0b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--blue-500);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.btn-primary:hover {
    background: var(--blue-600);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue-600);
    border: 2px solid var(--blue-500);
}
.btn-secondary:hover {
    background: var(--blue-50);
    transform: translateY(-2px);
}

.btn-red {
    background: var(--red-600);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}
.btn-red:hover {
    background: #b91c1c;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--blue-700);
    box-shadow: var(--shadow-lg);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--blue-900);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: var(--blue-300);
    transition: color var(--transition);
}
.top-bar a:hover { color: var(--white); }

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-phone a {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.emergency-badge {
    background: var(--red-600);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ---- HEADER / NAV ---- */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
    border-bottom: 1px solid var(--gray-200);
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

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

.logo img {
    height: 55px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-500);
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--blue-600); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue-600); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--blue-700) !important;
    font-size: 0.95rem;
    white-space: nowrap;
}
.nav-phone::after { display: none !important; }
.nav-phone:hover { color: var(--blue-500) !important; }
.nav-phone svg { flex-shrink: 0; }

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

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a .chevron {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}

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

.nav-dropdown:hover > a .chevron {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: all var(--transition);
}

.dropdown-menu a:hover {
    background: var(--blue-50);
    color: var(--blue-600);
}

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

/* Wide dropdown for areas (many items) */
.dropdown-menu.dropdown-areas {
    min-width: 340px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px 0;
}

.dropdown-menu.dropdown-areas a {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    padding: 80px 24px 24px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--blue-500); }
.mobile-nav .btn { margin-top: 20px; width: 100%; }

.mobile-nav .mobile-dropdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    padding: 16px 0 6px;
    border-bottom: none;
    font-weight: 600;
}

.mobile-nav .mobile-sub-link {
    padding-left: 16px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    color: var(--white);
    padding: 120px 0 100px;
    overflow: hidden;
    background: var(--blue-900);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(20, 51, 102, 0.82) 50%, rgba(26, 68, 128, 0.75) 100%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--blue-300), var(--blue-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat { text-align: center; }
.hero-stat .number { font-size: 2rem; font-weight: 800; }
.hero-stat .label { font-size: 0.85rem; opacity: 0.7; margin-top: 2px; }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.hero-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.hero-card p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 24px; }

.trust-indicators {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--green-500);
}

/* ---- FLOATING CTA (mobile) ---- */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 998;
    gap: 10px;
}

.floating-cta .btn {
    flex: 1;
    padding: 14px;
    font-size: 0.9rem;
}

/* ---- SECTION HEADERS ---- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-500);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue-300);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

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

/* ---- SERVICES GRID ---- */
.services {
    padding: 100px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue-500);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    color: var(--blue-500);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.service-card:hover .service-link { gap: 8px; }

/* ---- WHY CHOOSE US ---- */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.4rem;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.why-us-content > p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.feature-text h4 {
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

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

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

.stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stat-card:nth-child(1) { border-top: 4px solid var(--blue-500); }
.stat-card:nth-child(2) { border-top: 4px solid var(--red-500); }
.stat-card:nth-child(3) { border-top: 4px solid var(--green-500); }
.stat-card:nth-child(4) { border-top: 4px solid var(--amber-500); }

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---- PROCESS / HOW IT WORKS ---- */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
    color: var(--white);
}

.process .section-label { color: var(--blue-300); }
.process .section-label::before,
.process .section-label::after { background: rgba(255,255,255,0.3); }
.process .section-header h2 { color: var(--white); }
.process .section-header p { color: rgba(255,255,255,0.7); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(255,255,255,0.2);
}

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

.step-number {
    width: 56px;
    height: 56px;
    background: var(--blue-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255,255,255,0.2);
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; opacity: 0.7; max-width: 200px; margin: 0 auto; }

/* ---- TESTIMONIALS ---- */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

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

.stars {
    color: var(--amber-500);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--blue-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--blue-600);
    font-size: 1rem;
}

.author-info h4 { font-size: 0.95rem; color: var(--gray-900); }
.author-info p { font-size: 0.8rem; color: var(--gray-500); }

/* ---- BOOKING ---- */
.booking {
    padding: 100px 0;
    background: var(--white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.booking-info { padding: 48px 40px; }

.booking-info h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.booking-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.booking-benefit .check {
    width: 24px;
    height: 24px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-600);
    font-size: 0.8rem;
    font-weight: 700;
}

.booking-contact {
    border-top: 1px solid var(--gray-300);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-contact p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 2px;
}

.booking-contact .btn {
    width: 100%;
    justify-content: center;
}

.booking-calendar {
    background: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.calendar-placeholder {
    text-align: center;
    color: var(--gray-500);
    padding: 40px;
}

.calendar-placeholder .icon { font-size: 3rem; margin-bottom: 16px; }
.calendar-placeholder p { font-size: 0.95rem; }

.calendar-placeholder code {
    display: block;
    margin-top: 12px;
    background: var(--gray-100);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--gray-700);
    word-break: break-all;
}

/* ---- SERVICE AREAS ---- */
.service-areas {
    padding: 80px 0;
    background: var(--blue-50);
}

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

.areas-content h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.areas-content > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.area-tag {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition);
    display: inline-block;
}

a.area-tag:hover {
    background: var(--blue-500);
    color: var(--white);
    border-color: var(--blue-500);
}

/* ---- CTA BANNER ---- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    color: var(--white);
    text-align: center;
}

.cta-banner h2 { font-size: 2.4rem; margin-bottom: 16px; }

.cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

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

/* ---- FOOTER ---- */
.footer {
    background: var(--blue-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-brand .logo img {
    height: 50px;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact-item .icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-phone a {
    font-size: 1.1rem;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

/* ---- CHATBOT BUBBLE ---- */
.chatbot-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 997;
    width: 64px;
    height: 64px;
    background: var(--blue-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all var(--transition);
    color: var(--white);
    font-size: 1.6rem;
}

.chatbot-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 99, 235, 0.5);
}

.chatbot-bubble .tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--gray-800);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.chatbot-bubble:hover .tooltip { opacity: 1; }

.chatbot-bubble .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ---- ANIMATIONS ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- SERVICE PAGE SPECIFIC ---- */
.page-hero {
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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.03'%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");
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.breadcrumb a { color: var(--blue-300); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.5; }

.page-hero h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; opacity: 0.85; max-width: 640px; margin: 0 auto; }

/* Service detail content */
.service-detail {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-main h2 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 16px;
    margin-top: 40px;
}

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

.service-detail-main p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-main ul {
    margin-bottom: 24px;
    padding-left: 0;
}

.service-detail-main ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-detail-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background: var(--blue-100);
    border-radius: 50%;
    border: 3px solid var(--blue-500);
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.sidebar-card .btn { width: 100%; margin-bottom: 10px; }
.sidebar-card .btn:last-child { margin-bottom: 0; }

.sidebar-services { display: flex; flex-direction: column; gap: 8px; }

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.sidebar-services a:hover,
.sidebar-services a.active {
    background: var(--blue-50);
    color: var(--blue-600);
    border-color: var(--blue-300);
}

/* Neighborhoods grid on service pages */
.neighborhoods-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.neighborhood-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.neighborhood-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.neighborhood-card .pin { font-size: 1.2rem; }
.neighborhood-card span { font-weight: 500; color: var(--gray-800); font-size: 0.95rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.6rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { gap: 40px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 70px 0 60px; }
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-visual { display: none; }
    .hero-stats { gap: 24px; }
    .hero-stat .number { font-size: 1.5rem; }

    .section-header h2 { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .booking-wrapper { border-radius: var(--radius-lg); }
    .booking-info { padding: 32px 24px; }

    .floating-cta { display: flex; }
    body { padding-bottom: 72px; }
    .chatbot-bubble { bottom: 84px; }

    .cta-banner h2 { font-size: 1.8rem; }

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

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .process-steps { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }
}
