/* Mobile-First Responsive CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile-First Header Styles */
.header {
    background-color: #1B3B6F;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* First Line: Business Info */
.header-top {
    background-color: #1B3B6F;
    padding: 15px 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Second Line: Navigation */
.header-bottom {
    background-color: #1B3B6F;
    padding: 10px 0 15px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background-color: #1B3B6F;
    border: 3px solid #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    color: #FF8C00;
    font-weight: bold;
    font-size: 16px;
}

.logo-text-container {
    flex: 1;
    min-width: 0;
}

/* Logo Link */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
    text-decoration: none;
    color: inherit;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
}

.header-cta {
    margin-top: 5px;
}

/* Business Badges */
.business-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-24-7 {
    background-color: rgba(255, 140, 0, 0.2);
    color: #FF8C00;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(255, 140, 0, 0.3);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge-24-7:hover {
    background-color: rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-1px);
    text-decoration: none;
    color: #FF8C00;
}

.call-now-btn {
    background-color: #FF8C00;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-now-btn:hover {
    background-color: #e67e00;
    transform: scale(1.05);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Styles - Mobile First */
.nav {
    width: 100%;
}

.nav-list {
    display: none;
    list-style: none;
    flex-direction: column;
    background-color: #1B3B6F;
    margin: 0;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.nav.active .nav-list {
    display: flex;
}

.nav-list li {
    margin: 8px 0;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    display: block;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list a:hover {
    color: #FF8C00;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    background-color: rgba(27, 59, 111, 0.95);
    margin-top: 10px;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.dropdown-content a:hover {
    color: #FF8C00;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.tagline {
    text-align: center;
    padding: 10px 0;
    background-color: rgba(255, 215, 0, 0.1);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 15px;
}

.tagline p {
    color: #FF8C00;
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, #1B3B6F 0%, #0F2540 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #FF8C00;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.badge-text {
    font-weight: 500;
    font-size: 12px;
}

.trust-signals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 100%;
}

.trust-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 215, 0, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.trust-tile:hover::before {
    left: 100%;
}

.trust-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.5);
}

.trust-label {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #FF8C00;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.hero-cta {
    margin-top: 25px;
}

.cta-primary {
    display: inline-block;
    background-color: #FF8C00;
    color: #1B3B6F;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
}

.cta-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border-color: #FF8C00;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #1B3B6F;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    color: #1B3B6F;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-content h4 {
    color: #1B3B6F;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: bold;
}

.about-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Grid */
.services-grid, .specialties-grid, .areas-grid, .blogs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.service-card, .specialty-card, .area-card, .blog-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before, .specialty-card::before, .area-card::before, .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1B3B6F, #FF8C00);
}

.service-card:hover, .specialty-card:hover, .area-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card h3, .specialty-card h3, .area-card h3, .blog-card h3 {
    color: #1B3B6F;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.service-card p, .specialty-card p, .area-card p, .blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card a, .specialty-card a, .area-card a, .blog-card a {
    color: #1B3B6F;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.service-card a:hover, .specialty-card a:hover, .area-card a:hover, .blog-card a:hover {
    color: #FF8C00;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1B3B6F, #FF8C00);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #1B3B6F;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Coverage Section */
.coverage-section {
    background-color: #f8f9fa;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.coverage-info h3 {
    color: #1B3B6F;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.coverage-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.coverage-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 0.95rem;
}

.coverage-info li:before {
    content: "✓";
    color: #1B3B6F;
    font-weight: bold;
    margin-right: 10px;
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.emergency-content {
    position: relative;
    z-index: 1;
}

.emergency-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.cta-emergency {
    display: inline-block;
    background-color: #FF8C00;
    color: #dc3545;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
}

.cta-emergency:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border-color: #FF8C00;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-section h3, .footer-section h4 {
    color: #FF8C00;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #FF8C00;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-info a:not(.footer-phone-btn) {
    color: #FF8C00;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer Phone Button */
.footer-phone-btn {
    display: inline-block;
    background-color: #FF8C00;
    color: white !important;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-phone-btn:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Footer View All Buttons */
.footer-view-all-btn {
    display: inline-block;
    background-color: #FF8C00;
    color: #1B3B6F;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-view-all-btn:hover {
    background-color: #e67e00;
    transform: translateY(-1px);
    color: #1B3B6F;
}

/* Buttons */
.btn-secondary {
    display: inline-block;
    background-color: #FF8C00;
    color: #1B3B6F;
    padding: 15px 30px;
    border: 2px solid #FF8C00;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background-color: #e67e00;
    color: #1B3B6F;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    border-color: #e67e00;
}

.view-all {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
    display: block;
    visibility: visible;
    background-color: rgba(255, 140, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .business-info {
        justify-content: space-between;
        align-items: center;
    }
    
    .business-badges {
        gap: 15px;
    }
    
    .badge-24-7 {
        font-size: 13px;
        padding: 8px 15px;
    }
    
    .call-now-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .header-bottom {
        padding: 15px 0;
    }
    
    .nav {
        width: auto;
    }
    
    .nav-list {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;
        background: none;
        margin: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .nav-list li {
        margin: 0;
    }
    
    .nav-list a {
        padding: 0;
        border-bottom: none;
        font-size: 14px;
    }
    
    .dropdown-content {
        position: absolute;
        background-color: #1B3B6F;
        min-width: 250px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 1001;
        border-radius: 5px;
        top: 100%;
        left: 0;
        margin-top: 5px;
        padding: 10px 0;
        display: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        color: white;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(255, 140, 0, 0.2);
        color: #FF8C00;
    }
    
    .dropdown-content .view-all-btn {
        background-color: #FF8C00;
        color: #1B3B6F;
        font-weight: bold;
        text-align: center;
        margin: 10px 16px 0 16px;
        border-radius: 5px;
        padding: 10px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dropdown-content .view-all-btn:hover {
        background-color: #e67e00;
        transform: translateY(-1px);
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .company-name {
        font-size: 22px;
    }
    
    .header-cta .call-now {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 800px;
    }
    
    .trust-badges {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .badge {
        padding: 10px 15px;
    }
    
    .badge-text {
        font-size: 14px;
    }
    
    .trust-signals {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .services-grid, .specialties-grid, .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .coverage-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .emergency-features {
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .header-top {
        padding: 20px 0 15px 0;
    }
    
    .header-bottom {
        padding: 15px 0 20px 0;
    }
    
    .business-info {
        gap: 20px;
    }
    
    .logo {
        gap: 15px;
    }
    
    .company-name {
        font-size: 24px;
    }
    
    .business-badges {
        gap: 20px;
    }
    
    .badge-24-7 {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .call-now-btn {
        font-size: 15px;
        padding: 12px 20px;
    }
    
    .nav-list {
        gap: 30px;
    }
    
    .nav-list a {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-signals {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid, .specialties-grid, .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .header-top {
        padding: 25px 0 20px 0;
    }
    
    .header-bottom {
        padding: 20px 0 25px 0;
    }
    
    .business-badges {
        gap: 25px;
    }
    
    .badge-24-7 {
        font-size: 15px;
        padding: 12px 20px;
    }
    
    .call-now-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .services-grid, .specialties-grid, .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

/* Individual Page Styles */
.main-content {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.page-header h1 {
    color: #1B3B6F;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-text h2 {
    color: #1B3B6F;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: bold;
}

.content-text h3 {
    color: #1B3B6F;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-weight: bold;
}

.content-text h4 {
    color: #1B3B6F;
    font-size: 1.3rem;
    margin: 25px 0 12px 0;
    font-weight: bold;
}

.content-text h5 {
    color: #1B3B6F;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    font-weight: bold;
}

.content-text h6 {
    color: #1B3B6F;
    font-size: 1.1rem;
    margin: 15px 0 8px 0;
    font-weight: bold;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.faq-section h2 {
    color: #1B3B6F;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.faq-items {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1B3B6F;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #1B3B6F 0%, #0F2540 100%);
    color: white;
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Mobile Header Adjustments */
@media (max-width: 767px) {
    .business-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .business-badges {
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .badge-24-7 {
        font-size: 11px;
        padding: 5px 10px;
        flex-shrink: 1;
    }
    
    .call-now-btn {
        font-size: 12px;
        padding: 6px 12px;
        flex-shrink: 0;
    }
    
    .header-bottom {
        padding: 8px 0 12px 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FF8C00;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .badge, .trust-tile, .emergency-feature {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .mobile-menu-toggle, .cta-primary, .cta-emergency {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none !important;
        color: #000 !important;
        padding: 20px 0 !important;
    }
    
    .section-header h2 {
        color: #000 !important;
    }
}

/* Dropdown Menu Fixes */
.dropdown:hover .dropdown-content {
    display: block !important;
}

.dropdown.active .dropdown-content {
    display: block !important;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1B3B6F;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 5px;
    display: none;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 140, 0, 0.2);
    color: #FF8C00;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content .view-all-btn {
    background-color: #FF8C00;
    color: #1B3B6F;
    font-weight: bold;
    text-align: center;
    margin: 10px 16px 0 16px;
    border-radius: 5px;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-content .view-all-btn:hover {
    background-color: #e67e00;
    transform: translateY(-1px);
}

/* Floating Call-to-Action Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #FF8C00, #e67e00);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    background: linear-gradient(135deg, #e67e00, #cc6f00);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.6);
    color: white;
    text-decoration: none;
}

.floating-cta .phone-icon {
    font-size: 18px;
    animation: ring 1s ease-in-out infinite;
}

/* Pulse animation for attention */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
    }
}

/* Ring animation for phone icon */
@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(10deg);
    }
    20% {
        transform: rotate(-10deg);
    }
}

/* Mobile responsiveness for floating CTA */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .floating-cta .phone-icon {
        font-size: 16px;
    }
}