/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1E90FF, #FF7F32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.business-name {
    font-size: 20px;
    font-weight: bold;
    color: #1E90FF;
    line-height: 1.2;
}

.header-tagline {
    font-size: 12px;
    color: #666;
    font-weight: normal;
    margin-top: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav a:hover {
    color: #1E90FF;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    top: 100%;
    left: 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a.view-more {
    background: #f8f9fa;
    font-weight: bold;
    color: #1E90FF;
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 15px;
}

.cta-phone {
    background: #FF7F32;
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 13px;
    transition: background 0.3s;
    white-space: nowrap;
}

.cta-phone:hover {
    background: #e66b1f;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E90FF 0%, #0066cc 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e6f3ff;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e6f3ff;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.1rem;
}

.feature-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    background: #FF7F32;
    color: white;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 127, 50, 0.3);
}

.cta-button:hover {
    background: #e66b1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 50, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    background: #1E90FF;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #1E90FF;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: #FF7F32;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.service-link:hover {
    color: #e66b1f;
}

.view-all-button {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1E90FF;
    border: 2px solid #1E90FF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1E90FF;
    color: white;
}

/* Sub Services Section */
.sub-services {
    background: #f8f9fa;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.area-card h3 {
    color: #1E90FF;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.area-card p {
    color: #666;
    margin-bottom: 20px;
}

.area-link {
    color: #FF7F32;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.area-link:hover {
    color: #e66b1f;
}

/* Service Areas Section */
.service-areas {
    background: #f8f9fa;
}

/* Featured Areas Section for Individual Pages */
.featured-areas {
    background: #f8f9fa;
    padding: 80px 0;
}

.featured-areas h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.featured-areas .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.featured-areas .area-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.featured-areas .area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-areas .area-card h3 {
    color: #1E90FF;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.featured-areas .area-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.featured-areas .area-link {
    color: #FF7F32;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.featured-areas .area-link:hover {
    color: #e66b1f;
    text-decoration: underline;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature h3 {
    color: #1E90FF;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
}

/* Blog Section */
.blogs {
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card h3 {
    color: #1E90FF;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 20px;
}

.blog-link {
    color: #FF7F32;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #e66b1f;
}

/* Service Coverage */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.coverage-info h3 {
    color: #1E90FF;
    margin-bottom: 20px;
}

.coverage-info p {
    color: #666;
    margin-bottom: 20px;
}

.coverage-areas ul {
    list-style: none;
    margin-bottom: 30px;
}

.coverage-areas li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Emergency Service */
.emergency-service {
    background: #1E90FF;
    color: white;
    text-align: center;
}

.emergency-service h2 {
    color: white;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-cta {
    display: inline-block;
    background: #FF7F32;
    color: white;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 20px;
}

.emergency-cta:hover {
    background: #e66b1f;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #1E90FF;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #FF7F32;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1E90FF;
}

.footer-cta {
    margin-top: 20px;
}

.footer-cta-button {
    display: inline-block;
    background: #FF7F32;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid #FF7F32;
}

.footer-cta-button:hover {
    background: #e66b1f;
    border-color: #e66b1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 50, 0.3);
}

.view-all-link {
    font-weight: bold;
    color: #FF7F32 !important;
}

.view-all-link:hover {
    color: #e66b1f !important;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    .logo {
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature {
        min-width: 200px;
        justify-content: center;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .areas-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-signals {
        grid-template-columns: 1fr;
    }
    
    .hero-badges .badge {
        width: 100%;
        justify-content: center;
    }
}
