/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ROTO-ROOTER CLONE BRAND CSS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
    --rr-blue: #06122c;
    /* Dark Navy/Blue */
    --rr-red: #bd8352;
    /* Warm Golden Terracotta */
    --rr-red-hover: #a36d40;
    --rr-yellow: #EDB900;
    /* Gold/Yellow stars */
    --rr-light-blue: #e8edf5;
    /* Light gray/blue backgrounds */
    --text-dark: #212529;
    /* Dark text */
    --text-muted: #555558;
    /* Grey text */

    --bg-cream-light: #faf6ee;
    /* Soft light cream */
    --bg-cream-dark: #f5edd7;
    /* Warmer cream for alternate blocks */
    --border-cream: #e6dfce;
    /* Warm cream borders */
    --border-light: var(--border-cream);

    --rr-light-red-bg: rgba(189, 131, 82, 0.05);
    --rr-light-red-text: #bd8352;
    --rr-light-blue-bg: #f1f0fb;
    --rr-light-blue-text: #3b3095;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

.main-content {
    margin-top: 90px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOP UTILITY HEADER BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.top-header-bar {
    background-color: var(--rr-blue);
    color: #ffffff;
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar-left i {
    color: var(--rr-red);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-links {
    display: flex;
    gap: 16px;
    font-weight: 400;
}

.top-bar-links a:hover {
    color: var(--rr-red);
}

.top-bar-search {
    position: relative;
    display: flex;
    align-items: center;
}

.top-bar-search input {
    background-color: #ffffff;
    border: none;
    padding: 6px 36px 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    width: 220px;
    color: var(--text-dark);
    outline: none;
}

.top-bar-search button {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--rr-blue);
    cursor: pointer;
    font-size: 0.8rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAIN HEADER & NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.main-header {
    background-color: #ffffff;
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 16px rgba(6, 18, 44, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    height: 74px;
    box-shadow: 0 6px 24px rgba(6, 18, 44, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo styling */
.brand-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.brand-logo-img {
    height: 54px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.3s ease;
}

.main-header.scrolled .brand-logo-img {
    height: 44px;
}

/* Nav Menu */
.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 8px 4px;
}

.nav-link:hover {
    color: var(--rr-red);
}

/* Dropdown Wrapper */
.nav-item.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Menu Container */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(6, 18, 44, 0.1);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    z-index: 1000;
    padding: 12px 0;
    margin-top: 10px;
}

/* Arrow indicator */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

/* Dropdown Item */
.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--bg-card-hover);
    color: var(--rr-red);
    padding-left: 28px;
}

/* Hover Behavior */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile responsive navigation overrides */
@media (max-width: 1024px) {
    .nav-item.dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: block;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 0 15px;
        margin-top: 5px;
        background-color: transparent;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        padding: 8px 0;
    }

    .dropdown-menu a:hover {
        background-color: transparent;
        padding-left: 4px;
    }
}

/* Header CTAs */
.header-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-schedule {
    background-color: var(--rr-red);
    color: #ffffff;
}

.btn-schedule:hover {
    background-color: var(--rr-red-hover);
    transform: translateY(-1px);
}

.btn-call {
    background-color: var(--rr-blue);
    color: #ffffff;
}

.btn-call:hover {
    background-color: #0c2045;
    transform: translateY(-1px);
}

.mobile-call-sticky {
    display: none;
}

.mobile-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background-color: var(--rr-red);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 16px 38px rgba(6, 18, 44, 0.18);
    transition: var(--transition);
    text-decoration: none;
    z-index: 9999;
}

.mobile-call-button:hover {
    background-color: var(--rr-red-hover);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .mobile-call-sticky {
        display: flex;
        position: fixed;
        bottom: 16px;
        right: 16px;
        left: auto;
        z-index: 9999;
    }

    .mobile-call-button {
        padding: 14px 18px;
    }
}

/* Mobile toggle icon */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 24px;
    height: 2.5px;
    background-color: var(--rr-blue);
    border-radius: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO BANNER LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 40%, var(--rr-light-blue) 100%);
    padding: 30px 0;
    overflow: hidden;
}

.hero-home-bg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 40%, rgba(232, 237, 245, 0.92) 100%), url('../images/hero_plumbing_bg.png') no-repeat center center;
    background-size: cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(6, 18, 44, 0.05);
    border: 1px solid rgba(6, 18, 44, 0.15);
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--rr-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--rr-accent);
}

/* Hero Typography */
.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

/* Direct callout line */
.hero-callout-line {
    margin-bottom: 24px;
}

.hero-callout-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rr-red);
}

.hero-callout-phone {
    font-size: 3rem;
    font-weight: 900;
    color: var(--rr-blue);
    line-height: 1.1;
    margin-top: 4px;
    letter-spacing: -1px;
}

/* Hero primary actions */
.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    width: 100%;
}

.btn-hero-schedule {
    background-color: var(--rr-red);
    color: #ffffff;
    padding: 16px 28px;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1.2;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(218, 41, 28, 0.25);
}

.btn-hero-schedule span:first-child {
    font-size: 1.05rem;
    font-weight: 900;
}

.btn-hero-schedule span:last-child {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-hero-schedule:hover {
    background-color: var(--rr-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(218, 41, 28, 0.35);
}

/* Ratings widget */
.hero-ratings-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-sans);
}

.ratings-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
}

.ratings-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ratings-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--rr-blue);
}

.ratings-stars {
    color: var(--rr-yellow);
    display: flex;
    gap: 2px;
    font-size: 0.9rem;
}

.ratings-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero visual right side */
.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

.hero-visual-img {
    max-width: 110%;
    transform: translateX(10%);
    object-fit: contain;
    z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HIGHLIGHTS BAR (NAVY STRIP)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.highlights-section {
    background-color: var(--rr-blue);
    color: #ffffff;
    padding: 36px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon-circle {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    color: var(--rr-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.highlight-info h3,
.highlight-info h2 {

    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.highlight-info p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RED TAG BANNER STRIP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.promo-banner-section {
    background-color: var(--rr-red);
    color: #ffffff;
    padding: 16px 0;
    text-align: center;

    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(218, 41, 28, 0.15);
}

.promo-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.promo-banner-inner:hover {
    opacity: 0.95;
    transform: scale(1.01);
}

.promo-banner-inner i {
    font-size: 1.4rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE DESIGN MEDIA QUERIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
    .navbar {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-bottom: 1px solid var(--border-light);
        padding: 30px 24px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        pointer-events: none;
        box-shadow: 0 10px 20px rgba(6, 18, 44, 0.08);
        z-index: 999;
    }

    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 4px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hamburger Menu Active Crossing Animations */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .top-header-bar {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NYC ABOUT SECTION STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-nyc-section {
    padding: 80px 0 60px;
    background-color: var(--bg-cream-light);
}

.about-nyc-section[style*="background-color: #f8fafc"],
.about-nyc-section[style*="background-color:#f8fafc"] {
    background-color: var(--bg-cream-dark) !important;
}

section[style*="background-color: #f7f8fb"],
section[style*="background-color:#f7f8fb"] {
    background-color: var(--bg-cream-dark) !important;
}

.about-nyc-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

/* Left side details */
.about-nyc-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--rr-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-nyc-eyebrow i {
    color: var(--rr-red);
}

.about-nyc-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--rr-blue);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.about-nyc-title span {
    color: var(--rr-red);
}

.about-nyc-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--rr-red);
    margin-top: 16px;
}

.about-nyc-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-nyc-subtitle {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.about-nyc-subtitle::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--rr-red);
    margin-top: 10px;
}

/* Features Grid */
.icon-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 28px;
}

.icon-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.icon-list-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--rr-light-blue);
    border: 1px solid rgba(6, 18, 44, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rr-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.icon-list-circle.alert-color {
    color: var(--rr-red);
}

.icon-list-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--rr-blue);
    margin-bottom: 4px;
}

.icon-list-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* Right side cards */
.about-nyc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Trust Metrics Card */
.trust-metrics-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(6, 18, 44, 0.04);
}

.metric-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.metric-col:not(:last-child) {
    border-right: 1px solid var(--border-light);
}

.metric-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(218, 41, 28, 0.05);
    border: 1.5px solid rgba(218, 41, 28, 0.15);
    color: var(--rr-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.metric-icon-circle.clock-color {
    background-color: rgba(6, 18, 44, 0.05);
    border-color: rgba(6, 18, 44, 0.15);
    color: var(--rr-blue);
}

.metric-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--rr-blue);
    line-height: 1;
}

.metric-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rr-blue);
}

.metric-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.metric-stars {
    color: var(--rr-yellow);
    display: flex;
    gap: 1px;
    font-size: 0.68rem;
}

/* Navy Callout Card */
.cta-navy-card {
    background-color: var(--rr-blue);
    color: #ffffff;
    border-radius: 12px;
    padding: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 18, 44, 0.15);
}

.cta-navy-card img {
    object-fit: cover;
    width: 100%;
    height: fit-content;

}

.cta-navy-card::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 4px;
    height: 24px;
    background-color: var(--rr-red);
}

.cta-navy-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.cta-navy-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
    margin-bottom: 28px;
}

.cta-navy-card p strong {
    color: #ffffff;
    font-weight: 700;
}

.btn-sidebar-schedule {
    width: 100%;
    background-color: var(--rr-red);
    color: #ffffff;
    padding: 14px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.btn-sidebar-schedule:hover {
    background-color: var(--rr-red-hover);
    transform: translateY(-1px);
}

/* Bottom Call Bar Strip */
.bottom-callbar {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(6, 18, 44, 0.03);
}

.callbar-left {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 30px;
    flex-grow: 1;
}

.callbar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.callbar-icon {
    font-size: 1.6rem;
    color: var(--rr-blue);
}

.callbar-info h4 {
    font-size: 0.78rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.callbar-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.callbar-right-cta {
    background-color: var(--rr-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;

    cursor: pointer;
    transition: var(--transition);
}

.callbar-right-cta:hover {
    background-color: var(--rr-red-hover);
}

.callbar-right-cta i {
    font-size: 1.8rem;
}

.callbar-right-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.callbar-right-label {
    font-size: 0.8rem;
    font-weight: 800;
    opacity: 0.9;
}

.callbar-right-phone {
    font-weight: 600;
    font-size: 18px;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .about-nyc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bottom-callbar {
        flex-direction: column;
        align-items: stretch;
    }

    .callbar-left {
        flex-wrap: wrap;
        gap: 20px;
    }

    .callbar-right-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-header-bar {
        display: none;
    }

    .main-header {
        height: 74px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-callout-phone {
        font-size: 2.5rem;
    }

    .hero-actions-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero-visual-img {
        max-width: 100%;
        transform: none;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        justify-content: center;
        text-align: left;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CUSTOMER REVIEWS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reviews-section {
    padding: 80px 0;
    background-color: var(--bg-cream-dark);
    border-top: 1px solid var(--border-light);
}

.reviews-header {
    margin-bottom: 24px;
}

.reviews-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--rr-blue);
    margin-bottom: 12px;
}

.reviews-summary-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.reviews-summary-score {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--rr-blue);
    line-height: 1;
}

.reviews-summary-stars {
    color: var(--rr-yellow);
    display: flex;
    gap: 2px;
    font-size: 1.15rem;
}

.reviews-summary-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.reviews-divider-line {
    height: 1px;
    background-color: var(--border-light);
    width: 100%;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(6, 18, 44, 0.02);
    min-height: 320px;
}

.card-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-review-text {
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more-btn {
    color: #4f46e5;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    margin-top: 8px;
    border: none;
    background: none;
    cursor: pointer;
}

.card-review-stars {
    color: var(--rr-yellow);
    display: flex;
    gap: 2px;
    font-size: 0.82rem;
}

.review-card-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 24px 0 20px;
}

.card-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--rr-blue);
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Pagination / slider controls */
.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background-color: #ffffff;
    color: var(--rr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(6, 18, 44, 0.02);
}

.slider-btn:hover {
    background-color: var(--rr-light-blue);
    border-color: var(--rr-blue);
    transform: scale(1.05);
}

.slider-indicator {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rr-blue);
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-title {
        font-size: 1.8rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ROTO-ROOTER WHITE FOOTER STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.main-footer {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1.25fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 24px;
}

.emergency-callout-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.callout-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--rr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rr-blue);
    font-size: 1.40rem;
    flex-shrink: 0;
}

.callout-info {
    display: flex;
    flex-direction: column;
}

.callout-label {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.callout-phone {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--rr-blue);
    line-height: 1.1;
    margin-top: 2px;
}

.footer-col h3 {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-links-list a:hover {
    color: var(--rr-blue);
    font-weight: 500;
}

.footer-links-list a i {
    font-size: 0.72rem;
    color: var(--rr-blue);
    opacity: 0.75;
    transition: var(--transition);
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

.footer-location-widget {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-decoration: none;
    margin-top: 6px;
}

.footer-phone-link i {
    font-size: 1rem;
}

.footer-phone-link:hover {
    color: var(--rr-red);
}

.location-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--rr-light-blue);
    color: var(--rr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.location-info h4 {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--rr-blue);
    margin-bottom: 2px;
}

.location-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rr-blue);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-circle-btn:hover {
    background-color: var(--rr-light-blue);
    border-color: var(--rr-blue);
    transform: translateY(-2px);
}

/* Mid Footer highlights strip */
.mid-footer-highlights-bar {
    border-top: 1px solid var(--border-light);
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mid-highlight-col {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mid-highlight-icon {
    font-size: 2.2rem;
    color: var(--rr-blue);
    flex-shrink: 0;
    line-height: 1;
}

.mid-highlight-info h4 {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.mid-highlight-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Copyright bottom bar strip */
.copyright-bottom-strip {
    background-color: #f8fafc;
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-links {
    display: flex;
    gap: 20px;
}

.copyright-links a:hover {
    color: var(--rr-blue);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .mid-footer-highlights-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mid-footer-highlights-bar {
        grid-template-columns: 1fr;
    }

    .copyright-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE SPECIFIC STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
}

.contact-info-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(6, 18, 44, 0.04);
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--rr-light-blue);
    color: var(--rr-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(6, 18, 44, 0.06);
}

.info-content h4,
.info-content h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--rr-blue);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.info-content p strong {
    color: var(--rr-blue);
}

.contact-form {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(6, 18, 44, 0.04);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--rr-blue);
}

.form-control {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--rr-blue);
    box-shadow: 0 0 0 3px rgba(6, 18, 44, 0.08);
}

textarea.form-control {
    resize: vertical;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.alert-success i {
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE DETAIL PAGES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--rr-blue);
}

.breadcrumbs span.active {
    color: var(--rr-red);
}

.service-hero-section {
    padding: 40px 0 80px;
    background-color: #ffffff;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: flex-start;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rr-blue);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-badge i {
    font-size: 1.1rem;
    color: #3b3095;
}

.service-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--rr-blue);
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.service-desc {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 36px;
}

.service-ctas-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.coupon-tag-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rr-blue);
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.coupon-tag-link i {
    color: #3b3095;
    font-size: 1.25rem;
}

.coupon-tag-link a {
    color: #3b3095;
    text-decoration: underline;
}

.coupon-tag-link a:hover {
    color: var(--rr-red);
}

/* Service Hero Image & Red Overlay Card */
.service-hero-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 18, 44, 0.08);
}

.service-hero-img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.service-hero-banner {
    background-color: var(--rr-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    text-decoration: none;
    transition: var(--transition);
}

.service-hero-banner:hover {
    background-color: var(--rr-red-hover);
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.banner-left i {
    font-size: 1.8rem;
}

.banner-left span {
    font-weight: 900;
    font-size: 0.95rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-right i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.service-hero-banner:hover .banner-right i {
    transform: translateX(4px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ROTO-ROOTER DIFFERENCE SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.difference-section {
    background-color: #3b3095;
    color: #ffffff;
    padding: 80px 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Video Card Mock */
.video-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: #3b3095;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 2;
}

.video-play-btn:hover {
    transform: scale(1.1);
    color: var(--rr-red);
}

.video-controls-bar {
    background-color: #0d0c1d;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: #94a3b8;
    font-size: 0.85rem;
}

.video-controls-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.video-timeline {
    flex-grow: 1;
    height: 4px;
    background-color: #334155;
    margin: 0 12px;
    border-radius: 2px;
    position: relative;
}

.video-progress {
    width: 32%;
    height: 100%;
    background-color: var(--rr-red);
    border-radius: 2px;
}

.video-caption {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 14px;
    display: block;
    font-style: italic;
}

.difference-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 16px;
    letter-spacing: 0.5px;
}

.difference-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--rr-red);
}

.difference-content p {
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.difference-content p:last-child {
    margin-bottom: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VERSUS CARD SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.versus-section {
    padding: 80px 0;
    background-color: var(--bg-cream-dark);
}

.versus-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 56px 48px;
    box-shadow: 0 6px 30px rgba(6, 18, 44, 0.03);
}

.versus-title {
    font-size: 2.1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--rr-blue);
    text-align: center;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 16px;
    letter-spacing: 0.5px;
}

.versus-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #3b3095;
}

.versus-subtitle-p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 56px;
}

.versus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    row-gap: 40px;
}

.versus-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.versus-icon-wrap {
    width: 56px;
    height: 56px;
    background-color: #f1f0fb;
    color: #3b3095;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    border: 1px solid rgba(59, 48, 149, 0.08);
}

.versus-item-content h3 {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.versus-item-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {

    .service-hero-grid,
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .versus-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-hero-img {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .versus-card {
        padding: 40px 24px;
    }

    .service-title {
        font-size: 2.2rem;
    }

    .versus-title {
        font-size: 1.6rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PREMIUM SCROLL REVEAL ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-scale-in {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LIGHT RED & LIGHT BLUE TEXT / BACKGROUND ACCENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--rr-light-blue-bg);
    border: 1px solid rgba(59, 48, 149, 0.12);
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--rr-light-blue-text);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-badge i {
    color: var(--rr-light-blue-text) !important;
    font-size: 0.9rem;
}

.coupon-tag-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--rr-light-blue-bg);
    border: 1px solid rgba(59, 48, 149, 0.12);
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--rr-light-blue-text);
    font-weight: 800;
    font-size: 0.78rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.coupon-tag-link i {
    color: var(--rr-light-blue-text) !important;
    font-size: 0.95rem;
}

.coupon-tag-link a {
    color: var(--rr-light-blue-text) !important;
    text-decoration: underline;
    font-weight: 800;
}

.coupon-tag-link a:hover {
    color: var(--rr-red) !important;
}

.about-nyc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--rr-light-blue-bg);
    border: 1px solid rgba(59, 48, 149, 0.12);
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--rr-light-blue-text);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.about-nyc-eyebrow i {
    color: var(--rr-light-blue-text) !important;
}

.glow-card {
    background-color: var(--rr-light-red-bg);
    border: 1.5px dashed rgba(218, 41, 28, 0.25);
    padding: 30px;
    border-radius: 12px;
    color: var(--text-dark);
}

/* Override coupons container inline styles dynamically */
div[style*="border: 2px dashed var(--rr-red)"],
div[style*="border:2px dashed var(--rr-red)"] {
    background-color: var(--rr-light-red-bg) !important;
    border-color: rgba(218, 41, 28, 0.25) !important;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--bg-cream-dark);
    border-top: 1px solid var(--border-cream);
    border-bottom: 1px solid var(--border-cream);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-choose-card {
    background-color: #ffffff;
    border: 1px solid var(--border-cream);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(6, 18, 44, 0.02);
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(6, 18, 44, 0.06);
}

.why-choose-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--rr-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-card h3 i {
    color: var(--rr-red);
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.why-choose-list li:last-child {
    margin-bottom: 0;
}

.why-choose-list li i {
    color: #10b981;
    /* Green checkmark */
    margin-top: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE PAGE COMPONENT STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.service-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #ffffff 40%, var(--rr-light-blue) 100%);
}

.breadcrumbs {
    font-size: 0.85rem;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--rr-red);
    font-weight: 700;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 8px;
    opacity: 0.5;
}

.breadcrumbs .active {
    color: var(--text-dark);
    font-weight: 500;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(6, 18, 44, 0.05);
    border: 1px solid rgba(6, 18, 44, 0.15);
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--rr-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.service-badge i {
    color: var(--rr-red);
}

.service-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.service-subdesc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-ctas-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.coupon-tag-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rr-blue);
}

.coupon-tag-link i {
    color: var(--rr-red);
}

.service-hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(6, 18, 44, 0.12);
    border: 4px solid #ffffff;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.service-hero-image-wrap:hover {
    transform: translateY(-5px);
}

.service-hero-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.service-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--rr-blue);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(6, 18, 44, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.service-image-badge i {
    color: var(--rr-red);
}

.service-hero-media {
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(6, 18, 44, 0.05);
    background-color: #ffffff;
    border: 1px solid var(--border-cream);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.service-hero-media .media-icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--rr-light-red-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 1px dashed rgba(218, 41, 28, 0.3);
}

.service-hero-media .media-icon-circle i {
    font-size: 2.2rem;
    color: var(--rr-red);
}

.service-hero-media h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-hero-media p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-hero-media .btn-call {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.service-details-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-details-p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-number-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-number-list li {
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.service-number-list li .list-num {
    background-color: var(--rr-red);
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-number-list.blue-num li .list-num {
    background-color: var(--rr-blue);
}

.service-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-check-list li {
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.service-check-list li i {
    color: #10b981;
    margin-top: 4px;
}

.service-check-list.red-check li i {
    color: var(--rr-red);
}

.service-details-italic {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
}

.section-header-center p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 8px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.why-choose-card {
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid var(--border-cream);
    border-radius: 8px;
}

.why-choose-card .card-icon {
    font-size: 2rem;
    color: var(--rr-red);
    margin-bottom: 12px;
}

.why-choose-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--rr-blue);
    margin-bottom: 8px;
}

.why-choose-card p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.service-highlight-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid var(--border-cream);
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(6, 18, 44, 0.02);
}

.service-highlight-box p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
}

.service-cta-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.service-cta-container .section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--rr-red);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.service-cta-container h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--rr-blue);
    font-weight: 900;
    text-transform: uppercase;
}

.service-cta-container p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.service-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    text-align: left;
    margin-bottom: 40px;
}

.service-feature-item {
    background-color: var(--rr-light-red-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--rr-red);
    display: flex;
    gap: 12px;
    align-items: center;
}

.service-feature-item i {
    color: var(--rr-red);
    font-size: 1.2rem;
}

.service-feature-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-cta-banner-box {
    background-color: var(--rr-blue);
    color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(6, 18, 44, 0.15);
}

.service-cta-banner-box p {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff !important;
}

.service-cta-dashed-box {
    background-color: var(--rr-light-red-bg);
    border: 2px dashed rgba(218, 41, 28, 0.25);
    border-radius: 12px;
    padding: 45px;
    text-align: center;
    margin-bottom: 0;
}

.service-cta-dashed-box h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-cta-dashed-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.service-cta-dashed-box .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Prevent horizontal scrollbars caused by slide animations and overflowing elements */
html,
body {
    overflow-x: hidden !important;
}

/* Hide header CTA buttons on mobile/tablet screens when hamburger menu is active */
@media (max-width: 1024px) {

    .header-ctas .btn-schedule,
    .header-ctas .btn-call {
        display: none !important;
    }
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {

    /* 1. Remove major padding from all layout sections */
    .hero-section,
    .service-hero-section,
    .section-padding,
    .why-choose-section,
    .about-nyc-section,
    .reviews-section,
    .highlights-section,
    section[style*="padding"] {
        padding: 35px 0 !important;
    }

    /* 2. Reduce font sizes on mobile */
    .hero-title,
    .service-title,
    h1[style*="font-size"] {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }

    .hero-callout-phone,
    h2[style*="font-size: 3rem"] {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .about-nyc-title,
    .section-title,
    .versus-title,
    h2[style*="font-size"] {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
    }

    .hero-desc,
    .service-desc,
    .about-nyc-desc,
    p[style*="font-size: 1.15rem"],
    p[style*="font-size: 1.1rem"] {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        max-width: 100% !important;
    }

    /* 3. Stack layout elements vertically */
    .hero-grid,
    .service-hero-grid,
    .about-nyc-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .why-choose-grid,
    .highlights-grid,
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Adjust specific cards and widgets */
    .why-choose-card {
        grid-column: span 1 !important;
        /* Reset spanning cards */
        padding: 20px !important;
    }

    .why-choose-card h3 {
        font-size: 1.1rem !important;
    }

    .trust-metrics-card {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px !important;
    }

    .metric-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(6, 18, 44, 0.08) !important;
        padding-bottom: 15px !important;
        width: 100% !important;
    }

    .metric-col:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    /* Mobile-friendly CTAs and spacing */
    .hero-actions-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .btn-hero-schedule,
    .btn-schedule {
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        padding: 14px 20px !important;
    }

    .hero-ratings-block {
        align-items: center !important;
        margin-top: 10px !important;
    }

    .service-hero-media {
        padding: 20px !important;
    }

    .bottom-callbar {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px !important;
        text-align: center !important;
    }

    .callbar-left {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .callbar-right-cta {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px !important;
    }

    .service-hero-image-wrap {
        max-width: 100% !important;
    }

    .service-hero-image {
        height: 240px !important;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG ARTICLE PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Section wrapper */
.blog-article-section {
    background-color: #ffffff;
    padding: 60px 0;
}

/* Breadcrumbs */
.blog-breadcrumbs {
    margin-bottom: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumb-active {
    color: var(--rr-red);
}

/* Two-column layout: article + sidebar */
.blog-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Cover image */
.blog-cover-image-wrap {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    background-color: #eee;
    border: 1px solid var(--border-light);
}

.blog-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article header */
.blog-article-header {
    margin-bottom: 32px;
}

.blog-article-meta {
    font-size: 0.9rem;
    color: var(--rr-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.blog-article-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.blog-title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--rr-red);
    border-radius: 2px;
}

/* Article body text */
.article-body-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-para {
    margin-bottom: 24px;
    text-align: justify;
}

.article-h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin: 32px 0 16px 0;
}

.article-list-disc {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 24px;
}

.article-list-steps {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.article-step-item {
    margin-bottom: 12px;
}

/* FAQ items */
.article-faq-item {
    margin-bottom: 24px;
}

.article-faq-question {
    color: var(--rr-blue);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

/* Back to blog link */
.blog-back-link-wrap {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.blog-back-btn {
    padding: 12px 24px;
}

/* ── Sidebar ────────────────────────────────────── */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-self: start;
    position: sticky;
    top: 24px;
}

/* Callout card */
.blog-sidebar-callout.trust-metrics-card {
    position: sticky;
    top: 24px;
    flex-direction: column;
    padding: 32px 24px;
    align-items: stretch;
    border: 1px solid var(--border-light);
    background-color: var(--bg-card-hover);
    border-radius: 8px;
    gap: 20px;
}

.sidebar-callout-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

.sidebar-callout-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.sidebar-callout-divider {
    border-top: 1px solid var(--border-light);
    margin: 5px 0;
}

.sidebar-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
}

.sidebar-btn-call {
    background-color: var(--rr-blue);
}

/* Recent posts widget */
.blog-sidebar-recent {
    border: 1px solid var(--border-light);
    padding: 32px 24px;
    border-radius: 8px;
    background-color: #ffffff;
}

.sidebar-recent-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin: 0 0 20px 0;
    border-bottom: 2px solid var(--rr-red);
    padding-bottom: 8px;
    display: inline-block;
}

.sidebar-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-recent-post-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.sidebar-recent-post-title a {
    color: var(--rr-blue);
}

.sidebar-recent-post-title a:hover {
    color: var(--rr-red);
}

.sidebar-recent-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Responsive overrides ───────────────────────── */
@media (max-width: 768px) {
    .blog-content-grid {
        grid-template-columns: 1fr;
    }

    .blog-article-title {
        font-size: 2rem;
    }

    .blog-cover-image-wrap {
        height: 240px;
    }

    /* Disable blog transition effects on mobile */
    .blog-card,
    .blog-card-img,
    .blog-index-hero-title,
    .blog-index-hero-desc,
    .blog-article-title,
    .blog-cover-image,
    .blog-sidebar,
    .blog-sidebar-callout.trust-metrics-card,
    .blog-back-btn,
    .blog-card-read-link {
        transition: none !important;
    }

    .blog-card:hover {
        transform: none !important;
        box-shadow: 0 4px 20px rgba(6, 18, 44, 0.03) !important;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INDEX PAGE – SERVICES SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.home-services-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f4f8 100%);
    border-top: 1px solid var(--border-light);
}

.home-services-header {
    text-align: center;
    margin-bottom: 54px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.home-services-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.home-services-subtitle {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-top: 10px;
    line-height: 1.7;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.home-services-grid .service-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid rgba(6, 18, 44, 0.08);
    padding: 36px 30px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(6, 18, 44, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.home-services-grid .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204, 24, 39, 0.04), transparent 55%);
    pointer-events: none;
}

.home-services-grid .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(6, 18, 44, 0.12);
    border-color: rgba(204, 24, 39, 0.22);
}

.home-service-card-icon {
    color: var(--rr-red);
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: rgba(204, 24, 39, 0.08);
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.home-service-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.35;
}

.home-service-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-service-card-li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.home-check-icon {
    color: var(--rr-red);
    margin-top: 4px;
    flex-shrink: 0;
}

.home-service-card-link {
    color: var(--rr-red);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-service-card-link:hover {
    color: var(--rr-blue);
}

.home-why-header {
    text-align: center;
    margin-bottom: 30px;
}

.home-why-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--rr-red);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.home-why-title {

    font-weight: 900;
    color: var(--rr-blue);

}

.promo-chevron {
    font-size: 0.95rem;
    margin-left: 6px;
}



.metric-icon-yellow {
    color: var(--rr-yellow);
    background-color: rgba(237, 185, 0, 0.05);
    border-color: rgba(237, 185, 0, 0.15);
}

.metric-icon-red {
    color: var(--rr-red);
    background-color: rgba(218, 41, 28, 0.05);
    border-color: rgba(218, 41, 28, 0.15);
}

.metric-sub-top {
    margin-top: 2px;
}

.metric-label-tight {
    margin-top: -4px;
}

.sidebar-arrow-icon {
    margin-left: 8px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE INDEX PAGE GLOBAL STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.services-hero {
    padding: 30px 0;
    background-color: var(--bg-navy);

}

.services-hero-inner {
    text-align: center;
    max-width: 800px;
}

.services-hero-tag {
    background-color: rgba(218, 41, 28, 0.1);
    color: var(--rr-red);
    border: 1px solid rgba(218, 41, 28, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.services-hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-hero-desc {

    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.services-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(6, 18, 44, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(6, 18, 44, 0.08);
}

.service-icon {
    color: var(--rr-red);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card-link {
    padding: 12px 20px;
    font-size: 0.8rem;
    border-radius: 6px;
    text-align: center;
}

.services-cta-section {
    background-color: var(--bg-card-hover);
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.services-cta-inner {
    max-width: 800px;
}

.services-cta-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--rr-blue);
    font-weight: 900;
    text-transform: uppercase;
}

.services-cta-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.services-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVIEWS PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.reviews-hero-section {
    padding: 100px 0 60px;
    background-color: var(--bg-navy);
    color: #ffffff;
}

.reviews-hero-inner {
    text-align: center;
    max-width: 800px;
}

.reviews-hero-tag {
    background-color: rgba(218, 41, 28, 0.1);
    color: var(--rr-red);
    border: 1px solid rgba(218, 41, 28, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.reviews-hero-title {
    font-size: 3rem;
    line-height: 1. font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reviews-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.reviews-board-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.reviews-board-container {
    max-width: 1000px;
}

.reviews-score-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 48px;
    background-color: var(--bg-card-hover);
    flex-wrap: wrap;
}

.reviews-score-num-col {
    text-align: center;
}

.reviews-big-score {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rr-blue);
    line-height: 1;
}

.reviews-score-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.reviews-score-divider {
    border-left: 1px solid var(--border-light);
    height: 60px;
    display: block;
}

.reviews-stars-col {
    text-align: center;
}

.reviews-stars-row {
    color: var(--rr-yellow);
    font-size: 1.8rem;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.reviews-verified-count {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 6px;
}

.reviews-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-card {
    border: 1px solid var(--border-light);
    padding: 32px;
    border-radius: 8px;
    background-color: #ffffff;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.review-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--rr-blue);
    margin: 0 0 4px 0;
}

.review-card-client {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-card-stars {
    color: var(--rr-yellow);
    font-size: 1rem;
    display: flex;
    gap: 2px;
}

.review-card-body {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG INDEX PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.blog-index-hero-section {
    padding: 100px 0 60px;
    background-color: var(--bg-navy);
    color: #ffffff;
}

.blog-index-hero-inner {
    text-align: center;
    max-width: 800px;
}

.blog-index-hero-tag {
    background-color: rgba(218, 41, 28, 0.1);
    color: var(--rr-red);
    border: 1px solid rgba(218, 41, 28, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.blog-index-hero-title {
    font-size: 3rem;
    line-height: 1. font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-index-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.blog-index-listing-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(6, 18, 44, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 18, 44, 0.08);
}

.blog-card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #eee;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-body {
    padding: 24px 24px 0 24px;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--rr-red);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-title font-size: 1.25rem;
font-weight: 900;
color: var(--rr-blue);
margin-bottom: 12px;
line-height: 1.4;
text-transform: uppercase;
}

.blog-card-title a {
    color: var(--rr-blue);
}

.blog-card-title a:hover {
    color: var(--rr-red);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-card-footer {
    padding: 0 24px 24px 24px;
}

.blog-card-read-link {
    color: var(--rr-red);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-page-section {
    padding: 80px 0;
    background-color: #f7f8fb;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page-title font-size: 2.4rem;
font-weight: 900;
color: var(--rr-blue);
text-transform: uppercase;
margin-bottom: 16px;
}

.contact-page-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-card-shadow {
    box-shadow: 0 4px 20px rgba(6, 18, 44, 0.05);
}

.contact-info-heading font-size: 1.4rem;
font-weight: 900;
color: var(--rr-blue);
text-transform: uppercase;
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 2px solid var(--rr-red);
}

.info-icon-themed {
    background-color: rgba(218, 41, 28, 0.08);
    color: var(--rr-red);
    border-color: rgba(218, 41, 28, 0.15);
}

.info-item-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin: 0 0 6px 0;
}

.info-email-link {
    color: var(--rr-red);
    font-weight: 600;
}

.info-email-link:hover {
    text-decoration: underline;
}

.contact-form-shadow {
    box-shadow: 0 4px 20px rgba(6, 18, 44, 0.05);
}

.form-control-light {
    background-color: #f9fafb;
    border: 1px solid var(--border-light);
}

.form-select-height {
    height: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group-last {
    margin-bottom: 24px;
}

.form-required {
    color: var(--rr-red);
}

.alert-success,
.alert-error {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-success {
    background-color: rgba(0, 168, 90, 0.08);
    border: 1px solid rgba(0, 168, 90, 0.25);
    color: #006b39;
}

.alert-success i {
    color: #00a85a;
    margin-top: 2px;
    font-size: 1.1rem;
}

.alert-error {
    background-color: rgba(218, 41, 28, 0.07);
    border: 1px solid rgba(218, 41, 28, 0.2);
    color: var(--rr-red);
}

.alert-error i {
    margin-top: 2px;
    font-size: 1.1rem;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
}

.contact-submit-icon {
    margin-right: 8px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-hero-section {
    padding: 100px 0 80px;
}

.about-hero-grid {
    align-items: center;
}

.about-hero-tag {
    background-color: rgba(218, 41, 28, 0.1);
    color: var(--rr-red);
    border: 1px solid rgba(218, 41, 28, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero-desc-bold {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-hero-desc-regular {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-hero-card-col {
    display: flex;
    align-items: flex-start;
}

.about-philosophy-card {
    padding: 36px;
    border-radius: 10px;
    width: 100%;
}

.about-philosophy-title font-size: 1.3rem;
font-weight: 900;
color: var(--rr-blue);
text-transform: uppercase;
margin-bottom: 16px;
}

.about-philosophy-title i {
    color: var(--rr-red);
    margin-right: 8px;
}

.about-philosophy-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.about-who-section,
.about-how-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
}

.about-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-col-title font-size: 1.8rem;
font-weight: 900;
color: var(--rr-blue);
text-transform: uppercase;
margin-bottom: 20px;
}

.about-col-subtitle font-size: 1rem;
font-weight: 800;
color: var(--rr-blue);
text-transform: uppercase;
margin-bottom: 12px;
}

.about-col-p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-check-icon-green {
    color: #00a85a;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-check-icon-red {
    color: var(--rr-red);
    margin-top: 2px;
    flex-shrink: 0;
}

.about-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(218, 41, 28, 0.07);
    color: var(--rr-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-service-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rr-blue);
    line-height: 1.5;
    margin: 0;
    padding-top: 10px;
}

.about-promise-section {
    padding: 80px 0;
    background-color: #f7f8fb;
    border-top: 1px solid var(--border-light);
}

.about-promise-container {
    text-align: center;
    max-width: 800px;
}

.about-promise-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--rr-red);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.about-promise-title font-size: 2.2rem;
font-weight: 900;
color: var(--rr-blue);
text-transform: uppercase;
margin-bottom: 32px;
}

.about-promise-box {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 36px;
    margin-bottom: 32px;
    text-align: left;
}

.about-promise-p-bold {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-promise-p-muted {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-promise-cta i {
    margin-right: 8px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER EXTRAS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer-logo-link {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-logo-img {
    height: 48px;
}

.footer-view-all-link {
    color: var(--rr-blue);
    font-weight: 700;
}

.footer-connected-heading {
    margin-bottom: 16px;
}

.copyright-sep {
    opacity: 0.3;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE PAGES – SHARED EXTRAS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.service-cream-section {
    background-color: var(--bg-cream-dark);
    border-bottom: 1px solid var(--border-cream);
}

.service-grid-bottom-gap {
    margin-bottom: 40px;
}

.service-card-icon-red {
    color: var(--rr-red);
    margin-right: 8px;
}

.service-section-subheading {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--rr-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-highlight-text-left {
    color: var(--text-dark);
    text-align: left;
}

.service-why-grid {
    margin-bottom: 50px;
}

.why-choose-card-span2 {
    grid-column: span 2;
}

/* Responsive overrides for new classes */
@media (max-width: 768px) {
    .about-two-col-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-services-title,
    .home-why-title,
    .about-promise-title,
    .about-col-title {
        font-size: 1.5rem;
    }

    .about-hero-title,
    .reviews-hero-title,
    .blog-index-hero-title {
        font-size: 2rem !important;
    }

    .reviews-score-divider {
        display: none;
    }

    .reviews-score-bar {
        flex-direction: column;
        gap: 16px;
    }

    .why-choose-card-span2 {
        grid-column: span 1;
    }

    .contact-page-section,
    .about-hero-section,
    .about-who-section,
    .about-how-section,
    .about-promise-section,
    .reviews-board-section,
    .blog-index-listing-section {
        padding: 40px 0;
    }

    .blog-index-hero-section,
    .reviews-hero-section {
        padding: 60px 0 40px;
    }
}