/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --secondary-color: #1e293b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

.btn-hero:hover,
.btn-hero:focus {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
    width: 100%;
}

.header-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.header-top-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-top-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo a::after {
    display: none !important;
}

.logo-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.logo-text {
    white-space: nowrap;
    font-size: 0.875rem;
}

/* Navigation */
.nav {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-phone-container {
    display: none;
}

.nav-menu.active {
    max-height: 100vh;
    overflow-y: auto;
}

.nav-wrapper {
    display: none;
}

.nav-phone-container {
    display: none;
}

.nav-phone-container .phone-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0625rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    display: block;
    transition: color 0.3s ease;
}

.nav-phone-container .phone-link:hover,
.nav-phone-container .phone-link:focus {
    color: var(--primary-color);
}

.nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

/* Dropdown indicator - only for nav items, not logo */
.nav-item.dropdown .nav-link::after {
    content: '▼';
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link::after,
.nav-item.dropdown:focus-within .nav-link::after {
    transform: rotate(180deg);
}

/* Ensure logo never gets dropdown styles */
.logo a::after,
.logo .nav-link::after {
    display: none !important;
    content: none !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--primary-color);
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    padding: 2rem;
    margin-top: 0.5rem;
}

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

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
}

.dropdown-column {
    min-width: 200px;
}

.dropdown-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    margin-bottom: 0.75rem;
}

.dropdown-list li:last-child {
    margin-bottom: 0;
}

.dropdown-list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.dropdown-list a:hover,
.dropdown-list a:focus {
    color: var(--primary-color);
    padding-left: 0.5rem;
}


.header-top-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    display: block;
    transition: color 0.3s ease;
    position: relative;
}

.header-top-link:hover,
.header-top-link:focus {
    color: var(--primary-color);
    background-color: transparent;
}

.header-contact {
    display: none; /* No longer needed in new layout */
}

.phone-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover,
.phone-link:focus {
    color: var(--primary-color);
    background-color: transparent;
}

.nav-phone .nav-link {
    color: var(--text-color);
    font-size: 1.0625rem; /* 2px larger than base nav-link (0.9375rem) */
}

.nav-phone .nav-link:hover,
.nav-phone .nav-link:focus {
    color: var(--primary-color);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--bg-light);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                      url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-content {
    color: var(--white);
    padding: 3rem 0;
    max-width: 600px;
}

.hero-quote {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    list-style: none;
    margin-bottom: 2rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.checkmark {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Quote Widget */
.quote-widget {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
}

.quote-widget-bar {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-widget-content {
    background-color: var(--white);
    padding: 1.5rem;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    border-radius: 0 4px 4px 0;
    max-width: 250px;
    position: relative;
}

.quote-widget-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 0.25rem;
}

.quote-widget-close:hover,
.quote-widget-close:focus {
    color: var(--text-color);
}

.quote-widget-content p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Introduction Section */
.introduction-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.intro-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-experience {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.experience-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    flex-shrink: 0;
}

.experience-divider {
    width: 4px;
    height: 60px;
    background-color: var(--primary-color);
    flex-shrink: 0;
}

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

.experience-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.intro-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-content {
    width: 100%;
}

.intro-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.intro-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Service page content blocks */
.service-content-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-content-block:last-child {
    border-bottom: none;
}

.service-content-block .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.service-content-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.service-content-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-content-block h3:first-child {
    margin-top: 0;
}

.service-content-block p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.service-content-block p:last-child {
    margin-bottom: 0;
}

.service-content-block ul {
    margin: 1rem 0 1.5rem 1.25rem;
    padding: 0;
    list-style: disc;
}

.service-content-block ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.service-link:hover,
.service-link:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Trust Icons */
.trust-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.trust-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.trust-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-icon img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.trust-icon:hover img {
    filter: grayscale(0%);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-divider {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 1.5rem;
}

.services-tagline {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-description a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-description a:hover,
.service-description a:focus {
    color: #1e40af;
    text-decoration: underline;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
    flex-shrink: 0;
}

.service-btn:hover,
.service-btn:focus {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.service-btn-icon {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

/* Service Areas Section */
.service-areas-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    background-color: #1e40af;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.service-areas-map {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.service-areas-content {
    color: var(--white);
}

.service-areas-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-areas-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.service-areas-link {
    display: inline-block;
    color: var(--white);
    text-decoration: underline;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.service-areas-link:hover,
.service-areas-link:focus {
    opacity: 0.8;
}

.service-areas-cities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.cities-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
}

.city-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 0.875rem;
    flex-shrink: 0;
    position: relative;
}

.city-icon::before {
    content: '📍';
    font-size: 0.875rem;
    line-height: 1;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.reviews-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-text {
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
}

.review-author {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.review-rating {
    color: #fbbf24;
    font-size: 1.125rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo {
    margin-bottom: 1rem;
}

.footer-logo .logo a {
    color: var(--white);
}

.footer-logo .logo-icon {
    color: #fbbf24;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 600;
}

.footer-section h5 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-section p:last-child {
    margin-bottom: 0;
}

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

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

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--white);
    text-decoration: underline;
}

.footer-address,
.footer-phone {
    margin-bottom: 1.5rem;
}

.footer-address:last-child,
.footer-phone:last-child {
    margin-bottom: 0;
}

.footer-hours {
    margin-bottom: 0;
}

.footer-hours p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
    display: inline;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: var(--white);
    text-decoration: underline;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: start;
    }
    
    .intro-left {
        grid-column: 1;
    }
    
    .intro-content {
        grid-column: 2;
    }
    
    .trust-icons {
        grid-column: 1 / -1;
        gap: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-header h2 {
        font-size: 2.25rem;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .map-container {
        height: 500px;
    }
    
    .service-areas-cities {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2.5rem;
        align-items: start;
    }
    
    .footer-logo {
        grid-column: 1;
    }
    
    .footer-links {
        grid-column: 2;
    }
    
    .footer-contact {
        grid-column: 3;
    }
    
    .footer-hours {
        grid-column: 4;
    }
    
    .footer-logo .logo-text {
        font-size: 1rem;
        color: var(--white);
    }
    
    .footer-logo .logo-icon {
        font-size: 1.75rem;
    }
    
    .footer-tagline {
        font-size: 0.9375rem;
    }
    
    .footer-section h4 {
        font-size: 1.25rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .intro-left {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-content {
        align-self: start;
    }
    
    .intro-content h2 {
        font-size: 2.25rem;
    }
    
    .trust-icons {
        gap: 3rem;
        padding: 2.5rem 0;
    }
    
    .trust-icon img {
        max-width: 180px;
        max-height: 100px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-tagline {
        font-size: 1.25rem;
    }
    
    .service-image {
        height: 280px;
    }
    
    .service-title {
        font-size: 1.625rem;
    }
    
    .service-areas-content h2 {
        font-size: 2.5rem;
    }
    
    .service-areas-description {
        font-size: 1.25rem;
    }
    
    .map-container {
        height: 550px;
    }
    
    .city-item {
        font-size: 1.0625rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header-content {
        padding: 0.875rem 0;
        gap: 0.625rem;
    }
    
    .header-top {
        gap: 1rem;
        align-items: center;
    }
    
    .header-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
    
    .header-top-center {
        gap: 1.25rem;
    }
    
    .header-top-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9375rem;
    }
    
    .header-top-right .btn-primary {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo a {
        font-size: 1.125rem;
    }
    
    .logo-text {
        font-size: 0.9375rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .nav {
        width: 100%;
        position: relative;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-wrapper {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 1rem;
    }
    
    .nav-menu {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        max-height: none;
        overflow: visible;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        flex-wrap: wrap;
        flex: 1;
    }
    
    .nav-phone-container {
        display: flex !important;
        flex-shrink: 0;
        justify-content: flex-end;
        align-items: center;
    }
    
    .nav-phone-container .phone-link {
        font-size: 1.0625rem;
    }
    
    .nav-item {
        width: auto;
        border-bottom: none;
        position: relative;
        flex-shrink: 0;
    }
    
    .nav-item.dropdown {
        position: relative;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9375rem;
        white-space: nowrap;
        display: block;
    }
    
    .nav-phone .nav-link {
        font-size: 1.0625rem; /* 2px larger */
    }
    
    .nav-item.dropdown .nav-link::after {
        font-size: 0.75rem;
        margin-left: 0.5rem;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background-color: transparent;
    }
    
    /* Dropdown Menu Desktop Styles */
    .dropdown-menu {
        min-width: 800px;
        max-width: 1200px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown:focus-within .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    /* Plumbing Services - 4 columns */
    .nav-item.dropdown:first-child .dropdown-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    /* Water Heaters & Leaks - Single column */
    .nav-item.dropdown:nth-child(2) .dropdown-content,
    .nav-item.dropdown:nth-child(3) .dropdown-content {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 400px;
    }
    
    .nav-item.dropdown:nth-child(2) .dropdown-menu,
    .nav-item.dropdown:nth-child(3) .dropdown-menu {
        min-width: 300px;
        max-width: 400px;
    }
    
    /* Water Heaters dropdown without heading */
    .nav-item.dropdown:nth-child(2) .dropdown-column {
        padding-top: 0;
    }
    
    .nav-item.dropdown:nth-child(2) .dropdown-list {
        padding-left: 0;
    }
    
    .dropdown-column {
        min-width: 0;
    }
    
    .dropdown-heading {
        font-size: 1.0625rem;
        margin-bottom: 1.25rem;
    }
    
    .dropdown-list a {
        font-size: 0.9375rem;
    }
    
    .header-top-nav {
        gap: 1.5rem;
        flex-wrap: nowrap;
    }
    
    .header-top-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .header-top-right .btn-primary {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .nav-phone-container .phone-link {
        font-size: 1.0625rem;
    }
    
    .quote-widget {
        display: flex;
    }
}

/* Large Desktop Styles */
@media (min-width: 1280px) {
    .header-content {
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .header-top-center {
        gap: 1.5rem;
    }
    
    .header-top-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 1.75rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .nav-item.dropdown .nav-link::after {
        font-size: 0.8125rem;
        margin-left: 0.5rem;
    }
    
    .nav-phone-container .phone-link {
        font-size: 1.125rem; /* 2px larger */
    }
    
    .header-top-right .btn-primary {
        padding: 0.6875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

/* Extra Large Desktop */
@media (min-width: 1440px) {
    .logo-text {
        font-size: 1.125rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .header-top-link {
        padding: 0.5rem 1.125rem;
        font-size: 1.0625rem;
    }
    
    .nav-link {
        padding: 0.5rem 1.125rem;
        font-size: 1.0625rem;
    }
    
    .nav-phone-container .phone-link {
        font-size: 1.1875rem; /* 2px larger */
    }
    
    .nav-item.dropdown .nav-link::after {
        font-size: 0.875rem;
        margin-left: 0.5rem;
    }
    
    .header-top-center {
        gap: 2rem;
    }
    
    .header-top-right .btn-primary {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Navigation */
@media (max-width: 1023px) {
    .nav-toggle {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        display: none;
        border-top: 1px solid var(--border-color);
        margin-top: 0.5rem;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1rem;
    }
    
    .dropdown-column {
        margin-bottom: 1.5rem;
    }
    
    .dropdown-column:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-heading {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }
    
    .dropdown-list {
        padding-left: 1rem;
    }
    
    .dropdown-list a {
        padding: 0.5rem 0;
    }
    
    .nav-item.dropdown .nav-link {
        cursor: pointer;
    }
    
    .header-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .header-top-left,
    .header-top-center,
    .header-top-right {
        width: 100%;
        justify-content: center;
    }
    
    .header-top-center {
        gap: 1rem;
    }
    
    .header-top-link {
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .header-top-right .btn-primary {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    
    .nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: none !important;
    }
    
    .nav-wrapper.active {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .nav-menu {
        position: static;
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.active {
        position: static;
    }
    
    .nav-phone-container {
        display: block !important;
        text-align: center;
        padding: 0.75rem 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-phone-container .phone-link {
        font-size: 1rem; /* 2px larger than mobile nav (0.875rem) */
    }
    
    .quote-widget {
        display: none; /* Hide on mobile for better UX */
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .quote-widget,
    .nav,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        page-break-inside: avoid;
    }
}