/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #5A5A5A;
    color: white;
    border-color: #5A5A5A;
}

.btn-primary:hover {
    background-color: #404040;
    border-color: #404040;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #2E8B57;
    border-color: #2E8B57;
}

.btn-outline:hover {
    background-color: #2E8B57;
    color: white;
    transform: translateY(-2px);
}

.btn-emergency {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.btn-emergency:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
}

.btn-text {
    background-color: transparent;
    color: #2E8B57;
    border: none;
    padding: 8px 16px;
    text-decoration: underline;
}

.btn-text:hover {
    color: #1a5f3a;
}

.btn-floating {
    background-color: #2E8B57;
    color: white;
    border-color: #2E8B57;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
    animation: pulse 2s infinite;
}

.btn-floating:hover {
    background-color: #1a5f3a;
    border-color: #1a5f3a;
    transform: scale(1.05);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(46, 139, 87, 0.6); }
    100% { box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3); }
}

/* Header */
.header {
    background-color: #2E8B57;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background-color: #5A5A5A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.company-name {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.tagline {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #e0e0e0;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 6px;
    padding: 1rem 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #2E8B57;
}

.view-more {
    background-color: #2E8B57 !important;
    color: white !important;
    margin: 10px 20px;
    border-radius: 4px;
    text-align: center;
}

.cta-section {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
    margin-bottom: 2rem;
}

.hero-main {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    color: #2E8B57;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #5A5A5A;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge.blue { background-color: #007bff; }
.trust-badge.orange { background-color: #fd7e14; }
.trust-badge.green { background-color: #28a745; }
.trust-badge.red { background-color: #dc3545; }

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.badge-text {
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    color: #2E8B57;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-types-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trust-badge-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.8rem 0.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trust-badge-small:hover {
    transform: translateY(-3px);
}

.trust-badge-small.blue { background-color: #007bff; }
.trust-badge-small.orange { background-color: #fd7e14; }
.trust-badge-small.green { background-color: #28a745; }
.trust-badge-small.red { background-color: #dc3545; }

.badge-icon-small {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.badge-text-small {
    font-size: 0.7rem;
    line-height: 1.2;
}

/* Services Grid */
.services-grid, .sub-services-grid, .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card, .sub-service-card, .area-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .sub-service-card:hover, .area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3, .sub-service-card h3, .area-card h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p, .sub-service-card p, .area-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-actions, .blog-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.view-more-section {
    text-align: center;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #f8f9fa;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card.blue { border-top: 4px solid #007bff; }
.reason-card.red { border-top: 4px solid #dc3545; }
.reason-card.orange { border-top: 4px solid #fd7e14; }
.reason-card.green { border-top: 4px solid #28a745; }

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.reason-card h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* Blogs */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Coverage Areas */
.coverage-areas {
    background-color: #f8f9fa;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.coverage-info h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

.coverage-info p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Emergency Service */
.emergency-service {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
}

.emergency-service h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.emergency-service p {
    color: #f8f9fa;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #2E8B57;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a9f6b;
    color: #e0e0e0;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Service Types Page */
.all-services {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-section-page {
    background: linear-gradient(135deg, #2E8B57 0%, #1a5f3a 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-section-page h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section-page p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Details Page */
.service-details {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-main h2 {
    color: #2E8B57;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-main h3 {
    color: #5A5A5A;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.service-main p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-main ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.service-main ul li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-sidebar .service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.service-sidebar .service-card h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

.service-sidebar .service-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-sidebar .service-card ul li {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-section {
        flex-direction: column;
        width: 100%;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid, .sub-services-grid, .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-floating {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badges {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0;
    }
    
    .service-card, .sub-service-card, .area-card {
        padding: 1.5rem;
    }
}

/* Blog Page Styles */
.blog-content {
    padding: 60px 0;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-body {
    line-height: 1.8;
    margin-bottom: 3rem;
}

.blog-body h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.blog-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-body li {
    margin-bottom: 0.5rem;
}

.blog-cta {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.blog-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.blog-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.related-blogs {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.related-blogs h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.related-blogs ul {
    list-style: none;
    padding: 0;
}

.related-blogs li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e9ecef;
}

.related-blogs li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-blogs a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-blogs a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
}
