/* =====================================================
   AR2 - Assurance Restoration - Professional Theme
   Closer to original Divi styling with modern polish
   ===================================================== */

/* CSS Variables */
:root {
    --primary: #2ea3f2;
    --primary-dark: #1a8cd8;
    --primary-light: #5bb8f5;
    --secondary: #333333;
    --accent: #ff6b35;
    --red: #c4122f;
    --red-dark: #a30f27;
    --red-light: #e8243f;

    --text-dark: #222222;
    --text-body: #555555;
    --text-muted: #888888;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-bg: #f5f7fa;
    --dark-bg: #1a1a2e;
    --border-color: #e8e8e8;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);

    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* Sticky 24/7 Emergency Banner */
.emergency-banner {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    align-items: stretch;
    text-decoration: none;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

.emergency-banner .banner-icon {
    background: #c4122f;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px 0 0 50px;
    box-shadow: -4px 4px 20px rgba(0,0,0,0.4);
}

.emergency-banner .banner-icon img {
    width: 80px;
    height: auto;
    display: block;
}

.emergency-banner .banner-content {
    background: var(--dark-bg);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
    border-radius: 0;
}

.emergency-banner:hover .banner-content {
    width: 220px;
    opacity: 1;
    padding: 20px 30px 20px 25px;
    box-shadow: -4px 4px 20px rgba(0,0,0,0.4);
}

.emergency-banner .banner-content span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.emergency-banner .banner-content strong {
    color: #c4122f;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    display: block;
    text-align: center;
}

@media (max-width: 768px) {
    .emergency-banner .banner-icon {
        padding: 15px 12px;
    }

    .emergency-banner .banner-icon img {
        width: 60px;
    }

    .emergency-banner .banner-content span {
        font-size: 14px;
    }

    .emergency-banner .banner-content strong {
        font-size: 18px;
        padding: 8px 16px;
    }

    .emergency-banner:hover .banner-content {
        width: 180px;
        padding: 15px 20px 15px 15px;
        box-shadow: -4px 4px 20px rgba(0,0,0,0.4);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

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

/* =====================================================
   Mobile Header (matches original Divi site)
   ===================================================== */
.mobile-header {
    display: none;
}

@media (max-width: 980px) {
    .mobile-header {
        display: block;
    }

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

.mobile-header-top {
    background: #1a1a2e;
    padding: 25px 20px;
    text-align: center;
}

.mobile-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.mobile-logo img {
    width: 200px;
    height: auto;
}

.mobile-tagline {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

.mobile-call-btn svg {
    stroke: #ffffff;
    width: 16px;
    height: 16px;
}

.mobile-call-btn-placeholder {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
}

.mobile-phone svg {
    flex-shrink: 0;
}

/* Hero Location Cards (Mobile Only) */
.hero-locations-mobile {
    display: none;
}

@media (max-width: 980px) {
    .hero-content {
        text-align: center;
    }

    .hero-content .google-reviews-badge {
        justify-content: center;
    }

    .hero-actions {
        display: none !important;
    }

    .hero-locations-mobile {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
        width: 100%;
    }

    .hero-location-card {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        background: rgba(255,255,255,0.95);
        padding: 20px;
        border-radius: 8px;
    }

    .hero-loc-icon {
        color: var(--primary);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .hero-loc-info {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .hero-loc-name {
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.3;
    }

    .hero-loc-address {
        font-size: 14px;
        color: var(--text-body);
        line-height: 1.4;
    }

    .hero-loc-phone {
        font-size: 14px;
        color: var(--text-body);
        margin-top: 5px;
    }

    .hero-loc-phone a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }
}

.mobile-menu-bar {
    background: #c4122f;
    padding: 3px 20px;
    text-align: center;
}

/* Mobile Locations in Header */
.mobile-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    text-align: center;
}

.mobile-loc-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.mobile-loc-address {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.mobile-loc-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.mobile-loc-phone svg {
    flex-shrink: 0;
}

.mobile-loc-phone:hover {
    color: var(--primary-light);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav {
    display: none;
    background: #222;
}

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

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #333;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--primary);
    color: #fff;
}

/* Mobile Dropdown Menu */
.mobile-nav .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .dropdown-arrow {
    font-size: 12px;
    transition: var(--transition);
}

.mobile-nav .has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav .dropdown-menu {
    display: none;
    background: #1a1a1a;
    padding-left: 0;
}

.mobile-nav .has-dropdown.open .dropdown-menu {
    display: block;
}

.mobile-nav .dropdown-menu li {
    border-bottom: 1px solid #2a2a2a;
}

.mobile-nav .dropdown-menu a {
    padding: 12px 20px 12px 35px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
}

.mobile-nav .dropdown-menu a:hover {
    background: var(--primary);
}

/* =====================================================
   Desktop Header
   ===================================================== */
.desktop-header {
    display: block;
}

/* =====================================================
   Top Bar
   ===================================================== */
.top-bar {
    background: var(--secondary);
    padding: 10px 0;
    font-size: 13px;
}

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

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.top-location .location-name {
    font-weight: 600;
    color: #ffffff;
}

.top-location .location-divider {
    color: rgba(255,255,255,0.7);
}

.top-location .location-address {
    color: #ffffff;
}

.top-location .location-phone {
    color: var(--primary);
    font-weight: 600;
}

.top-location .location-phone:hover {
    color: var(--primary-light);
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
}

.top-item svg {
    opacity: 0.7;
}

.top-bar-right {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* =====================================================
   Header Main (Desktop)
   ===================================================== */
.header-main {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

.logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(46, 163, 242, 0.08);
}

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

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

.dropdown-arrow {
    font-size: 10px;
    transition: var(--transition);
}

.nav-menu .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 10px 0;
}

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

.nav-menu .dropdown-menu li {
    display: block;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    color: var(--text-body);
}

.nav-menu .dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--primary);
    padding-left: 25px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 163, 242, 0.4);
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-text small {
    font-size: 11px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-text strong {
    font-size: 16px;
    font-weight: 700;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(46, 163, 242, 0.6) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 120px;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Features */
.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    transform: translateY(50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    color: var(--white);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 14px;
    color: var(--text-muted);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-lg {
    padding: 16px 35px;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 163, 242, 0.4);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* =====================================================
   Section Header
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header.light .section-subtitle {
    color: var(--primary-light);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   Services Section
   ===================================================== */
.services-section {
    padding: 140px 0 100px;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-image {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-emoji {
    font-size: 80px;
    transition: var(--transition);
}

.fire-bg {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
}

.mold-bg {
    background: linear-gradient(135deg, #f0fff4 0%, #dcffe8 100%);
}

.storm-bg {
    background: linear-gradient(135deg, #f0f4ff 0%, #dce8ff 100%);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 163, 242, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-image img,
.service-card:hover .service-emoji {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* =====================================================
   About Section
   ===================================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: auto;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.about-content .section-subtitle {
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--text-dark);
}

.about-features svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* =====================================================
   BBB Accreditation Section
   ===================================================== */
.bbb-section {
    padding: 60px 0;
    background: var(--off-white);
    text-align: center;
}

.bbb-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.bbb-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.bbb-badge-link {
    display: inline-block;
    margin-bottom: 20px;
}

.bbb-badge-link img {
    max-width: 200px;
    height: auto;
}

.bbb-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
}

.bbb-content p a {
    color: var(--primary);
    text-decoration: underline;
}

.bbb-content p a:hover {
    color: var(--primary-dark);
}

/* =====================================================
   Process Section
   ===================================================== */
.process-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.process-step {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 15px;
}

.process-step:hover .step-number {
    opacity: 1;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

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

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--off-white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating span {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
}


.footer-main {
    padding: 70px 0 50px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bbb {
    display: inline-block;
    margin-top: 20px;
}

.footer-bbb img {
    max-width: 150px;
    height: auto;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.footer-contact a {
    color: var(--primary);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* =====================================================
   Page Header (for inner pages)
   ===================================================== */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d4a 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
}

/* Google Reviews Badge */
.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.google-reviews-badge .google-g {
    flex-shrink: 0;
}

.google-reviews-badge .review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.google-reviews-badge .review-rating {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.google-reviews-badge .review-count {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 576px) {
    .google-reviews-badge {
        padding: 8px 14px;
        gap: 6px;
    }

    .google-reviews-badge .google-g {
        width: 16px;
        height: 16px;
    }

    .google-reviews-badge .review-stars svg {
        width: 12px;
        height: 12px;
    }

    .google-reviews-badge .review-rating {
        font-size: 14px;
    }

    .google-reviews-badge .review-count {
        font-size: 12px;
    }
}

/* =====================================================
   Service Detail (for services page)
   ===================================================== */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: var(--off-white);
}

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

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

/* Service Image (simple image display) */
.service-img {
    text-align: center;
    padding: 20px;
}

.service-img img {
    max-width: 100%;
    width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-icon-large {
    font-size: 120px;
    text-align: center;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.check-list {
    margin: 25px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-weight: 500;
    color: var(--text-dark);
}

.check-list .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

/* =====================================================
   Contact Form
   ===================================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    padding: 30px;
    background: var(--off-white);
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    gap: 15px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: rgba(46, 163, 242, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-body);
    line-height: 1.7;
    font-size: 15px;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-features {
        position: relative;
        transform: none;
        padding: 30px 10px;
        background: var(--white);
    }

    .hero-features .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .services-section {
        padding-top: 80px;
    }

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

@media (max-width: 1200px) {
    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }

    .top-location .location-address {
        display: none;
    }

    .top-location .location-divider:nth-of-type(1) {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .header-phone {
        padding: 8px 12px;
    }

    .phone-text small {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        display: none !important;
    }

    .about-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -50px auto 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-text strong {
        font-size: 16px;
    }

    .feature-text span {
        font-size: 13px;
    }

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

    .service-image {
        height: 160px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 0 -10px;
        width: calc(100% + 20px);
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
        gap: 12px;
        border-radius: 8px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-text strong {
        font-size: 14px;
    }

    .feature-text span {
        font-size: 12px;
    }

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

    .service-card .service-content {
        padding: 15px;
    }

    .service-card .service-content h3 {
        font-size: 14px;
    }

    .service-card .service-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .service-link {
        font-size: 11px;
    }

    .service-image {
        height: 180px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .logo-text {
        display: none;
    }

    .btn {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
    }
}

/* =====================================================
   Extra Mobile Optimizations
   ===================================================== */
@media (max-width: 480px) {
    .mobile-header-top {
        padding: 20px 15px;
    }

    .mobile-logo img {
        width: 240px;
    }

    .mobile-tagline {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .mobile-phone {
        font-size: 28px;
    }

    .mobile-nav a {
        padding: 18px 20px;
        font-size: 15px;
    }

    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero .container {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .about-content h2,
    .service-detail-content h2 {
        font-size: 26px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .btn {
        padding: 16px 24px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 18px 28px;
        font-size: 15px;
    }

    .feature-box {
        padding: 22px 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-text strong {
        font-size: 13px;
    }

    .service-content {
        padding: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .process-step {
        padding: 30px 20px;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }

    .mobile-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-menu a {
        min-height: 48px;
    }

    .service-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .footer-links a {
        display: inline-block;
        min-height: 44px;
        line-height: 44px;
    }

    .social-link {
        min-width: 44px;
        min-height: 44px;
    }

    .footer-social a {
        min-width: 48px;
        min-height: 48px;
    }
}

/* =====================================================
   Individual Service Page Styles
   ===================================================== */

/* Service Detail Page - Main Section */
.service-detail-page {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-page .service-detail-grid {
    gap: 80px;
}

.service-detail-page .service-img {
    padding: 0;
}

.service-detail-page .service-img img {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-detail-page .service-detail-content .section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.service-detail-page .service-detail-content h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.service-detail-page .service-detail-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Service Features Section */
.service-features {
    padding: 100px 0;
    background: var(--off-white);
}

.service-features .section-header {
    margin-bottom: 60px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-feature-item .feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature-item .feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.service-feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-feature-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Service Categories Section */
.service-categories {
    padding: 100px 0;
    background: var(--white);
}

.service-categories .section-header {
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    padding: 40px 30px;
    background: var(--off-white);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary);
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.category-card .category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card .category-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
}

.category-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.category-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Service Process Section */
.service-process {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.service-process .section-header h2 {
    color: var(--white);
}

.service-process .section-header p {
    color: rgba(255,255,255,0.85);
}

.service-process .section-header {
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.process-step-item {
    text-align: center;
    padding: 30px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.process-step-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.process-step-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--white);
}

.process-step-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--off-white);
}

.why-choose .section-header {
    margin-bottom: 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 35px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.why-choose-item .icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), #e67e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-item .icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.why-choose-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-choose-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Related Services Section */
.related-services {
    padding: 100px 0;
    background: var(--white);
}

.related-services .section-header {
    margin-bottom: 60px;
}

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

.related-service-card {
    background: var(--off-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.related-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-service-card .card-content {
    padding: 30px;
}

.related-service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.related-service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.related-service-card .btn {
    width: 100%;
    text-align: center;
}

/* =====================================================
   Service Page Responsive Design
   ===================================================== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-detail-page {
        padding: 80px 0;
    }

    .service-features,
    .service-categories,
    .service-process,
    .why-choose,
    .related-services {
        padding: 80px 0;
    }

    .service-features-grid,
    .why-choose-grid,
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-detail-page {
        padding: 60px 0;
    }

    .service-detail-page .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-page .service-img {
        text-align: center;
    }

    .service-detail-page .service-img img {
        max-width: 100%;
    }

    .service-detail-page .service-detail-content h2 {
        font-size: 28px;
    }

    .service-features,
    .service-categories,
    .service-process,
    .why-choose,
    .related-services {
        padding: 60px 0;
    }

    .service-features-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

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

    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detail-page {
        padding: 50px 0;
    }

    .service-detail-page .service-detail-content h2 {
        font-size: 24px;
    }

    .service-features,
    .service-categories,
    .service-process,
    .why-choose,
    .related-services {
        padding: 50px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-feature-item,
    .why-choose-item {
        flex-direction: column;
        text-align: center;
    }

    .category-card {
        padding: 30px 20px;
    }
}

/* =====================================================
   Red Accent Styles
   ===================================================== */

/* Red Button Variant */
.btn-red {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 18, 47, 0.4);
}

.btn-outline-red {
    background: transparent;
    border-color: var(--red);
    color: var(--red);
}

.btn-outline-red:hover {
    background: var(--red);
    color: var(--white);
}

/* Red accent underline on section subtitles */
.section-subtitle {
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.about-content .section-subtitle::after,
.service-detail-content .section-subtitle::after {
    left: 0;
    transform: none;
}

/* Red left border on feature items */
.feature-item {
    border-left: 4px solid var(--red);
    padding-left: 25px;
}

.why-choose-item {
    border-left: 4px solid var(--red);
}

/* Red accent on process step numbers */
.process-section .step-number {
    background: var(--red);
    color: var(--white);
}

/* ============================================
   Enhanced Process Section Styling
   ============================================ */
.process-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2a3a 100%);
    position: relative;
    overflow: hidden;
}

.process-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(196, 18, 47, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.process-enhanced .section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.process-enhanced .section-subtitle {
    color: var(--red-light);
    font-weight: 700;
    letter-spacing: 3px;
}

/* Timeline connector */
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 85px;
    left: calc(12.5% + 15px);
    right: calc(12.5% + 15px);
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--primary), var(--red));
    z-index: 1;
    opacity: 0.6;
}

/* Enhanced step cards */
.process-enhanced .process-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 50px 30px 40px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-enhanced .process-step::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, transparent 0%, rgba(196, 18, 47, 0.3) 50%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-enhanced .process-step:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 30px rgba(196, 18, 47, 0.15);
}

.process-enhanced .process-step:hover::before {
    opacity: 1;
}

/* Step icon wrapper */
.step-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(196, 18, 47, 0.4);
    transition: all 0.4s ease;
}

.process-enhanced .process-step:hover .step-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(196, 18, 47, 0.5);
}

.step-icon-wrap .step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--white);
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    margin: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.step-icon {
    color: var(--white);
    stroke: var(--white);
}

/* Enhanced step content */
.process-enhanced .step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.process-enhanced .process-step:hover .step-content h4 {
    color: var(--red-light);
}

.process-enhanced .step-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* Responsive adjustments for enhanced process */
@media (max-width: 992px) {
    .process-timeline::before {
        display: none;
    }

    .process-enhanced {
        padding: 80px 0;
    }

    .process-enhanced .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .step-icon-wrap {
        width: 75px;
        height: 75px;
    }

    .step-icon {
        width: 24px;
        height: 24px;
    }

    .step-icon-wrap .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .process-enhanced .process-step {
        padding: 40px 25px 30px;
    }
}

/* Red top border on CTA section */
.cta-section {
    border-top: 5px solid var(--red);
}

/* Red accent on testimonial cards */
.testimonial-card {
    border-top: 4px solid var(--red);
}

/* Red hover on service cards */
.service-card:hover {
    border-bottom: 4px solid var(--red);
}

/* Red accent on category cards hover */
.category-card:hover {
    border-color: var(--red);
}

/* Red icon accent for why-choose section */
.why-choose-section .why-choose-item svg {
    color: var(--red);
    stroke: var(--red);
}

/* Red accent on footer section headers */
.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--red);
    margin-top: 10px;
}

/* Red hover on nav links */
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
    background: rgba(196, 18, 47, 0.08);
}

/* Red accent on mobile menu active state */
.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--red);
}

/* Red border on contact info cards */
.contact-info-card {
    border-left: 4px solid var(--red);
}

/* Red accent on about badge */
.about-badge {
    background: var(--red);
}

/* Red accent on check marks in lists */
.check-list .check {
    background: var(--red);
}

/* Red accent on page header */
.page-header {
    border-bottom: 4px solid var(--red);
}

/* Red accent line on hero subtitle */
.hero-subtitle {
    border-left: 3px solid var(--red);
    padding-left: 15px;
    background: rgba(196, 18, 47, 0.15);
}

/* Feature box red accent on hover */
.feature-box:hover {
    border-top: 4px solid var(--red);
}

/* Red accent on service link hover */
.service-link:hover {
    color: var(--red);
}

/* Footer social red hover */
.footer-social a:hover {
    background: var(--red);
}

/* Red gradient option for icons */
.icon-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
}

/* =====================================================
   Service Areas Section
   ===================================================== */
.service-areas-section {
    padding: 100px 0;
    background: var(--off-white);
}

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

.service-areas-content {
    max-width: 900px;
    margin: 0 auto;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.area-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.area-tag-primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    padding: 12px 24px;
    font-size: 15px;
}

.area-tag-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 18, 47, 0.3);
}

.area-tag-primary svg {
    stroke: var(--white);
}

.areas-message {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 40px;
    background: var(--white);
    border-radius: 16px;
    border-left: 5px solid var(--red);
    box-shadow: var(--shadow-md);
}

.areas-message-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    color: var(--white);
}

.areas-message-icon svg {
    stroke: var(--white);
}

.areas-message-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.areas-message-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.areas-message-text strong {
    color: var(--red);
}

@media (max-width: 768px) {
    .service-areas-section {
        padding: 70px 0;
    }

    .areas-grid {
        gap: 10px;
    }

    .area-tag {
        padding: 8px 16px;
        font-size: 13px;
    }

    .area-tag-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .areas-message {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .areas-message-text h4 {
        font-size: 18px;
    }

    .areas-message-text p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .area-tag {
        padding: 8px 14px;
        font-size: 12px;
    }

    .area-tag-primary {
        padding: 10px 18px;
        font-size: 13px;
    }

    .areas-message-icon {
        width: 60px;
        height: 60px;
    }

    .areas-message-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* =====================================================
   Blog Styles
   ===================================================== */

/* Blog Listing Grid */
.blog-listing {
    padding: 80px 0;
    background: var(--off-white);
}

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

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-content p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.blog-card:hover .blog-card-link {
    color: var(--primary-dark);
    gap: 10px;
}

/* Blog Article */
.blog-article-section {
    padding: 60px 0 80px;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-hero {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.blog-article h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.blog-article h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.blog-article p {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}

.blog-article a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.blog-article a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Blog Breadcrumb */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 14px;
}

.blog-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-breadcrumb a:hover {
    color: var(--white);
}

.blog-breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* Blog Meta */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.blog-date svg,
.blog-author svg {
    opacity: 0.7;
}

/* Blog Responsive */
@media (max-width: 980px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-article h2 {
        font-size: 24px;
    }

    .blog-article p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-listing {
        padding: 50px 0;
    }

    .blog-article-section {
        padding: 40px 0 60px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-article h2 {
        font-size: 22px;
        margin-top: 30px;
    }
}
