/*
Theme Name: DTSOL llc - Appliance Repair & HVAC
Description: Professional WordPress theme for appliance repair and HVAC services in Chicago and suburbs. Features responsive design, SEO optimization, and Airtable integration.
Version: 1.0
Author: DTSOL llc - Appliance Repair & HVAC
Text Domain: dtsol
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f6fa;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Top Bar */
.top-bar {
    background-color: #f8f9fa;
    padding: 0.75rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    gap: 2rem;
}

.top-bar-item {
    margin-left: 1.5rem;
}

.top-bar-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--secondary-color);
}

.top-bar-item a:hover i {
    transform: scale(1.1) rotate(-5deg);
}

a.request-service-btn {
    background: linear-gradient(45deg, var(--secondary-color), #3498db);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

a.request-service-btn i {
    color: var(--white);
}

a.request-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #3498db, var(--secondary-color));
    color: var(--white) !important;
}

/* Promo Banner */
.promo-banner {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 1rem;
    position: relative;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.promo-content i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.promo-content span {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.promo-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    border-radius: 50%;
    opacity: 0.7;
}

/* Header and Navigation */
header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap !important; /* keep header content on a single row on desktop */
}

/* Keep the menu grouped on the right of the header */
.nav-links {
    margin-left: auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    flex: 0 0 250px; /* reserve space to avoid layout shift when logo loads */
    min-width: 200px; /* keep enough room for typical logo width */
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    max-height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-links, .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.25rem; /* consistent spacing between menu items */
    flex-wrap: nowrap !important; /* prevent items from breaking to a new line */
    white-space: nowrap !important;
}

/* WP menu: remove bullets/indents from all nested lists reliably */
nav .nav-links,
nav .nav-links ul,
nav .nav-links li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

/* Global reset inside header nav to prevent intermittent markers */
header nav ul,
header nav li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: 0;
    padding: 0;
}

/* Ensure submenu ULs have no default left indent */
nav .nav-links > li > ul.sub-menu {
    padding-left: 0 !important;
    display: none !important; /* default hidden */
    position: absolute !important;
    left: 0 !important;
    top: 100% !important;
}

/* HARD RESET for WordPress submenu markers (bullets/circles) */
nav .nav-links .sub-menu,
nav .nav-links .sub-menu ul,
nav .nav-links .sub-menu li,
.nav-links .sub-menu,
.nav-links .sub-menu li,
ul.sub-menu,
ul.sub-menu li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Explicitly remove marker bullets in all browsers */
nav .nav-links .sub-menu li::marker,
.nav-links .sub-menu li::marker,
ul.sub-menu li::marker {
    content: '' !important;
}

.nav-links li, .menu li {
    margin-left: 0; /* spacing handled by gap on parent flex container */
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
    white-space: nowrap; /* keep single item text on one line */
}

.nav-links a, .menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover, .menu a:hover {
    color: var(--secondary-color);
}

/* Basic WordPress menu positioning */
.nav-links .menu-item-has-children, .menu .menu-item-has-children {
    position: relative;
}

/* Add arrow indicator for menu items with children */
.nav-links .menu-item-has-children > a::after, .menu .menu-item-has-children > a::after {
    content: '▾';
    font-family: inherit;
    font-weight: 600;
    font-size: 0.8em;
    line-height: 1;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-links .menu-item-has-children:hover > a::after, .menu .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Standard WordPress menu sub-menu - simple and clean */
.nav-links .sub-menu, .menu .sub-menu,
.nav-links ul.sub-menu, .menu ul.sub-menu,
.nav-links .menu-item-has-children .sub-menu, .menu .menu-item-has-children .sub-menu,
.nav-links .menu-item-has-children ul,
.nav-links .menu-item-has-children ul ul,
.nav-links ul ul,
ul.nav-links .sub-menu,
ul.nav-links ul,
ul.nav-links ul ul,
.dropdown-content,
.dropdown-menu,
/* WordPress default classes */
.menu-item-has-children .sub-menu,
.menu-item-has-children ul,
.sub-menu,
ul.sub-menu,
.children,
ul.children {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: var(--white) !important;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0 0 !important;
    list-style: none !important;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Desktop hover bridge: keep submenu open while cursor moves from parent link */
.nav-links > li.menu-item-has-children > .sub-menu::before,
.menu > li.menu-item-has-children > .sub-menu::before {
    content: '';
    position: absolute;
    top: -16px; /* larger overlap to prevent hover gap */
    left: 0;
    right: 0;
    height: 18px;
    background: transparent;
}

@media screen and (min-width: 769px) {
    /* Desktop: open submenu on hover */
    nav .nav-links > li.menu-item-has-children:hover > .sub-menu,
    nav .menu > li.menu-item-has-children:hover > .sub-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0);
    }
    /* Remove top margin on desktop to eliminate hover gap */
    nav .nav-links > li.menu-item-has-children > .sub-menu,
    nav .menu > li.menu-item-has-children > .sub-menu {
        margin-top: 0 !important;
    }
    /* Enforce visual box and remove bullets on desktop */
    header nav ul.nav-links > li.menu-item-has-children { position: relative; }
    header nav ul.nav-links > li.menu-item-has-children > ul.sub-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        list-style: none !important;
        list-style-type: none !important;
        margin: 0 !important;
        padding: 8px 0 !important;
        background: #fff !important;
        min-width: 240px !important;
        border-radius: 8px !important;
        box-shadow: 0 8px 16px rgba(0,0,0,0.12) !important;
        z-index: 1000 !important;
    }
    header nav ul.nav-links > li.menu-item-has-children > ul.sub-menu > li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    header nav ul.nav-links > li.menu-item-has-children > ul.sub-menu > li > a {
        display: block;
        padding: 10px 16px;
        color: #333;
        white-space: nowrap;
    }
    header nav ul.nav-links > li.menu-item-has-children > ul.sub-menu > li > a:hover {
        background: var(--secondary-color);
        color: #fff;
    }
}

/* Nested sub-menus (third level) */
.nav-links .sub-menu .menu-item-has-children {
    position: relative;
}

.nav-links .sub-menu .menu-item-has-children > a::after {
    content: '▸';
    font-family: inherit;
    font-weight: 600;
    font-size: 0.8em;
    margin-left: auto;
    float: right;
}

.nav-links .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-left: 0.5rem;
    z-index: 1001;
}

/* Prevent layout shift - ensure menu items don't push content */
.nav-links .sub-menu,
.nav-links ul.sub-menu {
    margin-top: 0.5rem;
}

@media screen and (min-width: 769px) {
    /* Ensure submenu doesn't overflow viewport */
    .nav-links .menu-item-has-children {
        overflow: visible;
    }
    
    /* Right-aligned submenu if close to right edge */
    .nav-links li:last-child .sub-menu,
    .nav-links li:nth-last-child(2) .sub-menu {
        left: auto;
        right: 0;
    }
}

/* Legacy dropdown classes - moved to end if needed for other parts of site */


.nav-links .sub-menu li,
.nav-links ul.sub-menu li {
    margin-left: 0 !important;
    margin-bottom: 0;
    position: relative;
    width: 100%;
}

.nav-links .sub-menu a,
.nav-links ul.sub-menu a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-transform: none;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 0;
}

.nav-links .sub-menu a:hover,
.nav-links ul.sub-menu a:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* First and last item styling */
.nav-links .sub-menu li:first-child a,
.nav-links ul.sub-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.nav-links .sub-menu li:last-child a,
.nav-links ul.sub-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

/* Single item in submenu */
.nav-links .sub-menu li:only-child a,
.nav-links ul.sub-menu li:only-child a {
    border-radius: 8px;
}

.dropdown-content li {
    margin-left: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-transform: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Legacy dropdown styles - disabled to prevent conflicts */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    /* Disabled to prevent menu conflicts */
}

.dropdown-content:hover {
    /* Disabled to prevent menu conflicts */
}

.dropdown-submenu:hover .dropdown-menu {
    /* Disabled to prevent menu conflicts */
}

.dropdown-menu:hover {
    /* Disabled to prevent menu conflicts */
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 750px;
    min-height: 1334px;
}

@media screen and (min-width: 768px) {
    .hero-background img {
        min-width: 1024px;
        min-height: 768px;
    }
}

@media screen and (min-width: 1200px) {
    .hero-background img {
        min-width: 1920px;
        min-height: 1080px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0.5rem;
}

.cta-button:hover {
    background-color: #2980b9;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.services .subtitle {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(26, 188, 156, 0.3);
}

.service-card .icon-wrapper i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.service-card h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--secondary-color);
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Service Area + Adaptive Map */
.service-area {
    padding: 5rem 1rem;
    background-color: var(--white);
}

.service-area h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-area .subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-area-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-area-columns a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.service-area-columns a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* New Testimonials Styles */
.testimonials-v2 {
    background-color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}
.testimonials-v2 h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}
.review-grid {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: 0 1rem;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}
.author-details .author-name {
    font-weight: bold;
    color: #2c3e50;
}
.author-details .author-stats {
    font-size: 0.875rem;
    color: #555;
}
.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.review-rating .stars {
    color: #f39c12;
}
.review-rating .review-date {
    font-size: 0.875rem;
    color: #777;
}
.review-body {
    flex-grow: 1;
}
.review-body h4 {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.review-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1rem;
}
.review-services {
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}
.review-services strong {
    color: #34495e;
}

/* Stats Section */
.stats {
    background: #3498db !important;
    padding: 4rem 1rem;
    color: #fff;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    text-align: center;
}
.stat-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    display: block;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.stat-item p,
.stat-item .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    opacity: 0.95;
}

/* Stats Background Color Options */
.stats.stats-bg-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}
.stats.stats-bg-blue {
    background: #3498db;
}
.stats.stats-bg-green {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}
.stats.stats-bg-purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}
.stats.stats-bg-red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* New Benefits Section */
.benefits-new {
    background-color: #ffffff;
    padding: 5rem 1rem;
}
.benefits-container-new {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}
.benefit-item-new {
    padding: 2.5rem 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.benefit-item-new i {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.benefit-item-new h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}
.benefit-item-new p {
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

.submit-button {
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 1rem 1rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #44586c;
}

.footer-section h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-logo {
    max-height: 100px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-nap {
    font-style: normal;
    margin-top: 1.5rem;
}

.footer-nap strong {
    color: #fff;
    font-size: 1.1rem;
}

.footer-phone {
    display: block;
    margin-top: 0.5rem;
    color: #ccc;
    text-decoration: none;
}

.footer-phone:hover {
    color: #fff;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

.footer-review-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-review-link:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #44586c;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #2980b9;
}

.scroll-to-top.visible {
    display: flex;
}

/* Form Message Styles */
.form-message {
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 16px;
}

.form-message.success {
    background-color: #e6ffed;
    border: 1px solid #a0e9a0;
    color: #005500;
}

.form-message.error {
    background-color: #ffe6e6;
    border: 1px solid #e9a0a0;
    color: #550000;
}

.form-note {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Hide mobile menu toggle on desktop */
@media screen and (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* Disable theme mobile menu to allow plugin to render its own */
    body.plugin-mobile-menu .mobile-menu-toggle { display: none !important; }
    body.plugin-mobile-menu header nav .nav-links { display: none !important; }
    
    /* Mobile Logo Styles */
    .logo {
        flex: 0 0 auto; /* don't occupy remaining width */
        text-align: left;
    }
    
    .logo img {
        max-height: 60px;
        width: auto;
        max-width: 200px;
    }
    
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 5%;
        flex-wrap: wrap;     /* allow next row */
        align-content: flex-start;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;            /* overlay on top of content */
        top: 0;
        left: 0;
        right: 0;
        height: 100dvh;            /* full viewport height incl. iOS */
        width: auto;
        flex: none;
        background-color: #ffffff;  /* solid white overlay */
        box-shadow: none;
        padding: 1rem 1.25rem;      /* comfortable internal spacing */
        z-index: 2000;              /* above hero and header */
        overflow-y: auto;           /* scroll inside overlay when needed */
        align-items: flex-start;    /* left align items */
    }

    .mobile-menu-toggle { order: 2; }
    .nav-links { order: 3; }
    
    .nav-links.active {
        display: flex;
        border-top: none;
    }

    /* Ensure natural page scrolling; no inner scroll traps */
    .nav-links > li { position: relative; width: 100%; }
    
    .nav-links li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    /* Improve readability on mobile menu */
    .nav-links a {
        display: block;
        padding: 0.9rem 0.75rem;  /* balanced padding for overlay */
        line-height: 1.45;
        font-size: 1rem;
        letter-spacing: 0.1px;
        text-transform: none;
        white-space: nowrap;      /* keep single line */
        overflow: hidden;         /* hide overflowed text */
        text-overflow: ellipsis;  /* add ellipsis if still too long */
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        width: 100%;
    }
    
    /* Mobile menu styles - show submenus vertically */
    .nav-links .sub-menu,
    .nav-links ul.sub-menu {
        display: none !important;
        position: static !important;
        background: transparent !important; /* keep full overlay white */
        opacity: 0 !important;
        visibility: hidden !important;
        margin: 0.25rem 0 0 0 !important; /* minimal indent */
        padding: 0 !important;
        border-radius: 4px !important;
        min-width: auto !important;
        box-shadow: none !important;
        transform: none !important;
    }
    
    /* Mobile: open submenu when parent has is-open */
    .nav-links .menu-item-has-children.is-open > .sub-menu,
    .nav-links .menu-item-has-children.is-open ul.sub-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-links .sub-menu a,
    .nav-links ul.sub-menu a {
        padding: 0.75rem 0.75rem;  /* consistent with parent spacing */
        font-size: 1rem;
        line-height: 1.45;
        white-space: nowrap;      /* keep single line */
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    
    /* Mobile dropdown content - consolidated styles */
    .dropdown-content {
        position: static;
        opacity: 0 !important;
        transform: none;
        visibility: hidden !important;
        box-shadow: none;
        background-color: #f8f9fa;
        padding: 0.5rem 0 0 1rem;
        display: none !important;
        flex-direction: column;
        width: 100%;
        border-radius: 4px;
        margin-top: 0.25rem;
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Mobile submenu styles - VERTICAL direction */
    .dropdown-submenu .dropdown-menu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        opacity: 1;
        transform: none;
        visibility: visible;
        box-shadow: none;
        background-color: #e9ecef;
        padding: 0.5rem 0 0 1.5rem;
        display: none;
        flex-direction: column;
        width: 100%;
        border-radius: 4px;
        margin-top: 0.25rem;
        margin-left: 0;
    }
    
    .dropdown-submenu:hover .dropdown-menu,
    .dropdown-submenu.active .dropdown-menu {
        display: flex;
    }
    
    /* Standard WordPress sub-menu mobile links */
    .nav-links .sub-menu a {
        padding: 0.75rem 1rem;
        border-radius: 4px;
        margin: 0.125rem 0;
        transition: background-color 0.2s ease;
        color: #333;
    }
    
    .nav-links .sub-menu a:hover {
        background-color: var(--secondary-color);
        color: white;
    }
    
    .dropdown-content a,
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        border-radius: 4px;
        margin: 0.125rem 0;
        transition: background-color 0.2s ease;
        color: #333;
    }
    
    .dropdown-content a:hover,
    .dropdown-menu a:hover {
        background-color: var(--secondary-color);
        color: white;
    }
    
    /* Mobile submenu arrow fix */
    .dropdown-submenu > a .fas.fa-chevron-right {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu.active > a .fas.fa-chevron-right {
        transform: rotate(270deg);
    }

/* Accessibility and focus styles inspired by Twenty Twenty-Five */
header nav .nav-links a:focus,
header nav .nav-links a:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Reduce outline offset inside submenu container */
header nav .nav-links .sub-menu a:focus,
header nav .nav-links .sub-menu a:focus-visible {
    outline-offset: 0;
}

/* Small breathing space between submenu items to keep outline visible */
header nav .nav-links .sub-menu li:not(:last-child) {
    margin-bottom: 3px;
}

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Extra small screens - logo adjustments */
    .logo img {
        max-height: 50px;
        max-width: 150px;
    }
    
    nav {
        padding: 0.25rem 3%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-text:nth-child(2) {
    animation-delay: 0.2s;
}

/* Sub-menu styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: -7px;
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    z-index: 100;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    list-style: none;
}

.dropdown-submenu .dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-submenu .dropdown-menu a:hover {
    background-color: var(--secondary-color);
    color: white;
}

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

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content::before {
    content: "";
    position: absolute;
    bottom: 100%;
}

/* Footer Service Areas Styles */
.footer-service-areas {
    margin-top: 1rem;
}

.footer-service-areas h4 {
    color: #fff !important;
    margin-bottom: 0.75rem !important;
    font-size: 1rem !important;
    font-weight: bold;
}

.footer-service-areas .service-area-group {
    margin-bottom: 0.5rem;
}

.footer-service-areas .service-area-group strong {
    color: #f39c12 !important;
    font-weight: bold;
}

.footer-service-areas .service-area-group a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-service-areas .service-area-group a:hover {
    color: #f39c12 !important;
    text-decoration: underline;
}

.service-area-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    font-size: 0.85rem;
}

/* Hero Section Styles - REMOVED DUPLICATE */

/* Service Cards Styles */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card a {
    text-decoration: none;
    color: inherit;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Styles */
.testimonials-v2 {
    background-color: #f8f9fa;
    padding: 4rem 1rem;
}

.testimonials-v2 h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.author-details .author-name {
    font-weight: bold;
    color: #2c3e50;
}

.review-rating {
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-color);
}

.review-body h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.review-body p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-services {
    color: #666;
    font-size: 0.9rem;
    margin-top: auto;
}

.review-services strong {
    color: var(--primary-color);
}

/* Benefits Styles */
.benefits-new {
    padding: 4rem 1rem;
    background: white;
}

.benefits-container-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item-new {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item-new:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item-new h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item-new p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Styles */
.form-disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* Service Area Styles */
#locations ul {
    list-style: disc inside;
    line-height: 1.7;
    color: #34495e;
    padding-left: 0;
}

#locations ul li {
    margin-bottom: 0.25rem;
}

#locations ul li a {
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
}

#locations ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

#locations h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.service-area-columns div {
    margin-bottom: 0.5rem;
}

.service-area-columns strong {
    color: #f39c12;
}

.service-area-columns a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-area-columns a:hover {
    color: #fff;
}

.footer-map-container {
    margin-bottom: 1.5rem;
}

.footer-map-container a {
    display: block;
    text-decoration: none;
}

.footer-map-container iframe {
    border-radius: 8px;
}

/* Page Builder Block Styles */

/* Testimonials v2 Styles (from main page) */
.testimonials-v2 {
    background-color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}

.testimonials-v2 h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.review-grid {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.author-details .author-name {
    font-weight: bold;
    color: #2c3e50;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-rating .stars {
    color: #f39c12;
}

.review-body {
    flex-grow: 1;
}

.review-body h4 {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.review-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1rem;
}

.review-services {
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.review-services strong {
    color: #34495e;
}

/* Benefits New Styles (from main page) */
.benefits-new {
    background-color: #ffffff;
    padding: 5rem 1rem;
}

.benefits-container-new {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.benefit-item-new {
    padding: 2.5rem 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-item-new i {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-item-new h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item-new p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Locations Block */
.locations {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.location-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.location-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.location-item p {
    color: #666;
    font-size: 0.9rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Testimonials Block */
.testimonials {
    padding: 4rem 0;
    background-color: white;
}

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

.testimonial-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
    margin-top: 0.5rem;
}

/* Benefits Block */
.benefits {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .locations-grid,
    .testimonials-slider,
    .stats-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

/* Breadcrumbs Styles */
.breadcrumbs-container {
    background-color: #f8f9fa;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs {
    margin: 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #6c757d;
    margin: 0 0.5rem;
    font-size: 0.9rem;
}

/* Breadcrumbs responsive */
@media (max-width: 768px) {
    .breadcrumbs-container {
        padding: 0.5rem 0;
    }
    
    .breadcrumb-list {
        padding: 0 0.75rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.85rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.25rem;
    }
}

/* Related Services Styles */
.related-services {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-top: 3rem;
}

.related-services h3 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.related-service-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.related-service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.related-service-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
}

/* Related Services responsive */
@media (max-width: 768px) {
    .related-services {
        padding: 2rem 0;
    }
    
    .related-services h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .related-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .related-service-item {
        padding: 1rem;
    }
    
    .service-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .related-service-item h4 {
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 600;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
    transition: transform 0.3s ease;
    user-select: none;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #34495e;
    line-height: 1.8;
    font-size: 1rem;
}

/* FAQ responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
}