:root {
    --primary-color: #0044cc; /* Deep Blue */
    --primary-dark: #003399;
    --secondary-color: #00cc66; /* Bright Green */
    --secondary-dark: #00994d;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #666666;
    --bg-light: #ffffff;
    --bg-off-white: #f8f9fa;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--text-dark);
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list .btn-clean {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
}

.nav-list .btn-clean:hover {
    background-color: var(--primary-color);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #0e1c36 0%, #1a3c75 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 .highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 204, 102, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: #f0f7ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.05rem;
    margin-right: 40px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--bg-off-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-weight: 600;
    color: var(--text-dark);
}

/* Locations */
.locations {
    padding: 60px 0;
    background-color: var(--primary-dark);
    color: white;
    text-align: center;
}

.locations .section-header h2 {
    color: white;
}

.locations .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.location-item h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Contact */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-off-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    justify-content: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.contact-info > p {
    margin-bottom: 40px;
    color: var(--text-gray);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-method .icon {
    background: #f0f7ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

.contact-method strong {
    display: block;
    color: var(--text-dark);
}

.contact-method span {
    color: var(--text-gray);
}

.contact-cta {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary.large {
    font-size: 1.2rem;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #111;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-brand p {
    color: #666;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-copy {
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
    width: 100%;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-container, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
    }
    
    .nav-list.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Coverage Section (Neighborhoods) */
.coverage-section {
    margin-top: 60px;
    text-align: center;
}

.coverage-section h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.coverage-scroll-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.1);
}

.coverage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.coverage-column h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.city-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    list-style: none;
}

.city-list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    padding-left: 0;
}

.city-list li::before {
    content: none;
}

/* Scrollbar styling */
.coverage-scroll-box::-webkit-scrollbar {
    width: 8px;
}

.coverage-scroll-box::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.coverage-scroll-box::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

/* General Mobile Polish */
/* General Mobile Polish */
@media (max-width: 768px) {
    /* Prevent Horizontal Scroll Globally */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Layout Adjustments */
    .services, .about, .contact, .faq, .hero {
        padding: 50px 0; /* Reduced padding further */
    }

    .container {
        padding: 0 15px; /* Tighter container padding to give more room for content */
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .coverage-container {
        grid-template-columns: 1fr;
    }
    
    .coverage-scroll-box {
        padding: 15px;
        max-height: 400px; /* More vertical space */
    }
    
    /* Typography Adjustments */
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    /* Nav Menu Polish */
    .nav-list {
        padding-top: 40px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100vw; /* Ensure full viewport width */
        right: -100vw;
    }
    
    .nav-list a {
        font-size: 1.2rem;
        margin: 10px 0;
    }
    
    /* City List Mobile Grid - Fix for Overflow */
    /* 120px allows 2 columns on 320px screens (120*2 + 10 gap + 30 padding = 280 < 320) */
    .city-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
        gap: 8px; /* Tighter gap */
    }
    
    .city-list li {
        font-size: 0.85rem; /* Slightly smaller text */
        word-wrap: break-word; /* Prevent long words breaking layout */
    }
    
    /* Contact Wrapper Mobile */
    .contact-wrapper {
        padding: 20px; /* Minimal padding */
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .btn-primary.large {
        font-size: 1rem;
        padding: 15px 15px;
        white-space: normal; /* Allow text wrapping if needed */
    }
}

@media (max-width: 480px) {  
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .contact-method .icon {
        margin: 0 auto;
    }
    
    /* Force 2 columns even on smallest screens for cities */
    .city-list {
        grid-template-columns: 1fr 1fr;
    }
}

