/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================== COLOR PALETTE ================== */
/* Primary: Black (#000000), Green (#28a745), White (#ffffff) */
/* Secondary: Orange (#ff6b35) - MINIMAL USE */

/* Header */
header {
    background: #000000; /* Black */
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #28a745; /* Green accent */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.highlight {
    color: #28a745; /* Green */
}

.tagline {
    font-size: 0.8rem;
    opacity: 0.9;
    color: #cccccc;
}

/* Logo Link Styling */
.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo a:hover h1 .highlight {
    color: #218838; /* Slightly darker green on hover */
}

.logo a:hover {
    opacity: 0.9;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #28a745; /* Green */
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    color: #000000; /* Black */
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #28a745; /* Green */
}

.emergency-btn a {
    background: #28a745; /* Green */
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
}

.emergency-btn a:hover {
    background: #218838; /* Darker Green */
    color: white;
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn.emergency {
    background: #28a745; /* Green */
    color: white;
    font-size: 1.1rem;
}

.btn.emergency:hover {
    background: #218838; /* Darker Green */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn.secondary {
    background: white;
    color: #000000; /* Black */
    border: 2px solid #28a745; /* Green border */
}

.btn.secondary:hover {
    background: #f8f9fa;
    color: #000000;
    border-color: #218838;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: white;
}

.feature i {
    font-size: 1.5rem;
    color: #28a745; /* Green */
}

/* Sections */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000; /* Black */
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #28a745; /* Green */
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #28a745; /* Green border on hover */
}

.service-icon {
    font-size: 2.5rem;
    color: #28a745; /* Green */
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000; /* Black */
}

.service-card p {
    color: #666;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.area-card {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    border-left: 4px solid #28a745; /* Green */
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.area-card:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    border-left-color: #218838; /* Darker Green */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.area-card h3 {
    color: #000000; /* Black */
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.area-card p {
    color: #666;
}

/* ================== UPDATED CONTACT SECTION ================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-left h3,
.contact-right h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000000; /* Black */
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-left h3::after,
.contact-right h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #28a745; /* Green */
}

.emergency-cta {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.primary-contact {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.btn.emergency-large {
    background: #28a745; /* Green */
    color: white;
    font-size: 1.2rem;
    padding: 1.25rem 2rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.btn.emergency-large:hover {
    background: #218838; /* Darker Green */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.contact-note {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.alternative-contact h4 {
    color: #000000; /* Black */
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.alternative-contact .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.contact-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item i {
    font-size: 1.25rem;
    color: #28a745; /* Green */
    margin-top: 0.25rem;
    min-width: 24px;
}

.detail-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #000000; /* Black */
}

.detail-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Service Links */
.service-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    text-decoration: none;
    color: #000000; /* Black */
    transition: all 0.3s;
}

.service-link:hover {
    background: #f8f9fa;
    border-color: #28a745; /* Green */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-link i {
    color: #28a745; /* Green */
    font-size: 1.1rem;
    min-width: 20px;
}

.service-link span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Quick Info */
.quick-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.quick-info h4 {
    color: #000000; /* Black */
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.quick-info ul {
    list-style: none;
}

.quick-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 0.95rem;
}

.quick-info i {
    color: #28a745; /* Green */
    font-size: 0.9rem;
    margin-top: 0.2rem;
    min-width: 16px;
}

/* Footer */
footer {
    background: #000000; /* Black */
    color: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid #28a745; /* Green accent */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #28a745; /* Green */
}

.company-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #cccccc;
}

.company-footer p {
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.emergency-number a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745; /* Green */
    text-decoration: none;
}

.whatsapp-link a,
.email-link a {
    color: #28a745; /* Green */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.whatsapp-link a:hover,
.email-link a:hover {
    color: white;
    text-decoration: underline;
}

.whatsapp-link i {
    color: #25D366;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-bottom a {
    color: #28a745; /* Green */
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Service Page Template */
.service-header {
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.service-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #000000; /* Black */
    margin-bottom: 1rem;
}

.service-content {
    padding: 4rem 0;
}

.service-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-benefits {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.service-benefits h3 {
    color: #000000; /* Black */
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-benefits h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #28a745; /* Green */
}

.service-benefits ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    margin-bottom: 0.75rem;
    color: #333;
}

/* Area Page Template */
.area-header {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid #28a745; /* Green accent */
}

.area-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.area-coverage {
    padding: 3rem 0;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coverage-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #28a745; /* Green */
}

.coverage-item h3 {
    color: #000000; /* Black */
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.coverage-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #28a745; /* Green */
}

/* ================== AREA PAGE SPECIFIC STYLES ================== */
.area-header .response-time {
    background: rgba(40, 167, 69, 0.1); /* Green with opacity */
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #28a745; /* Green */
    font-weight: 600;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.area-header .response-time i {
    font-size: 1.5rem;
    color: #28a745; /* Green */
}

.contact-local {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    border-left: 4px solid #28a745; /* Green */
}

.contact-local h3 {
    color: #000000; /* Black */
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-box {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.contact-box p {
    margin-bottom: 0.5rem;
    color: #333;
}

.safety-info {
    background: #e8f5e9; /* Light green */
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #28a745; /* Green */
}

.safety-info h3 {
    color: #1b5e20; /* Dark green */
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.safety-info ol {
    margin-left: 1.5rem;
}

.safety-info li {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Meta content */
.meta-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.meta-content h2,
.meta-content h3,
.meta-content h4 {
    color: #000000; /* Black */
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.meta-content h4 {
    margin-top: 1.5rem;
}

.meta-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.meta-content ul,
.meta-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-content li {
    margin-bottom: 0.5rem;
    color: #333;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.keyword {
    background: #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #495057;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
    color: #000000; /* Black */
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #28a745; /* Green */
    text-decoration: underline;
}

.breadcrumb span {
    color: #28a745; /* Green */
    font-weight: 600;
}

/* ================== CONTACT PAGE STYLES ================== */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: #28a745; /* Green */
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-method h3 {
    color: #000000; /* Black */
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-method h3 i {
    color: #28a745; /* Green */
}

.phone-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.phone-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #28a745; /* Green */
}

.phone-item h4 {
    color: #000000; /* Black */
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745; /* Green */
    margin-bottom: 0.5rem;
}

.phone-number a {
    color: #28a745; /* Green */
    text-decoration: none;
}

.phone-number a:hover {
    color: #218838; /* Darker Green */
    text-decoration: underline;
}

.emergency-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
}

.emergency-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-box ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.emergency-box li {
    margin-bottom: 0.5rem;
    color: #333;
}

/* ================== ORANGE ACCENTS - MINIMAL USE ================== */
.orange-alert {
    color: #ff6b35; /* Orange */
    font-weight: 600;
}

.orange-highlight {
    background-color: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35; /* Orange */
    padding: 0.5rem 1rem;
    margin: 1rem 0;
}

.warning-text {
    color: #ff6b35; /* Orange */
    font-weight: 600;
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 992px) {
    .contact-container,
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1,
    .service-header h1,
    .area-header h1 {
        font-size: 2rem;
    }
    
    .area-header .response-time {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .phone-numbers,
    .service-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-header h1,
    .area-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .coverage-list {
        grid-template-columns: 1fr;
    }
    
    .service-details {
        gap: 2rem;
    }
    
    .emergency-cta {
        padding: 1.5rem;
    }
    
    .cta-buttons .btn,
    .alternative-contact .btn {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact-method {
        padding: 1.25rem;
    }
    
    .service-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-header,
    .area-header {
        padding: 2rem 0;
    }
    
    .service-header h1,
    .area-header h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-left h3,
    .contact-right h3 {
        font-size: 1.5rem;
    }
    
    .emergency-btn a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
    
    .service-links {
        grid-template-columns: 1fr;
    }
    
    .phone-numbers {
        grid-template-columns: 1fr;
    }
}

/* ================== PRINT STYLES ================== */
@media print {
    header, footer, .hero-buttons, .contact-cta {
        display: none;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        padding: 1rem 0;
    }
    
    .hero-content h1 {
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
    
    .service-card, .area-card, .coverage-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}