/* 1. Global Reset & Body */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Segoe UI', system-ui, sans-serif; 
    background-color: var(--bg-light); 
    color: #1e293b; 
    line-height: 1.6; 
    scroll-behavior: smooth; 
}

/* 2. Header & Nav - Updated for Centering */
.site-header { 
    position: sticky;
    top: 0;           /* CRITICAL: Tells it to stick to the very top */
    z-index: 9999;    /* CRITICAL: Keeps it on top of all other layers */
    background: var(--secondary); 
    color: var(--text-light); 
    padding: 1.2rem 0; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); 
    width: 100%;      /* Ensures it spans the full width while sticky */
}

.nav-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    padding: 0 20px; 
}

.logo { 
    margin-right: auto; 
}

.nav-links { 
    display: flex; 
    gap: 25px; 
    list-style: none; 
    align-items: center; 
    margin: 0 auto; 
}

.nav-links a { 
    color: #cbd5e1; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.95rem; 
}

.nav-links a:hover { 
    color: var(--text-light); 
}

/* 3. Hero Section */
.hero-section { background: white; padding: 80px 20px; border-bottom: 1px solid #e2e8f0; }
.hero-container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 50px; text-align: left; }
.hero-content { flex: 1; }
.hero-image { flex: 1; }
.hero-section h1 { font-size: 3.2rem; color: var(--secondary); margin-bottom: 10px; line-height: 1.1; }
.hero-subtitle { font-size: 1.3rem; color: #64748b; margin-bottom: 30px; }
.hero-image img { width: 100%; height: auto; border-radius: 20px; box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff; }

.hero-actions { 
    display: flex; 
    gap: 15px; 
    align-items: stretch; 
}

.btn-outline { 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px; 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: bold; 
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; align-items: center; }
    .hero-section h1 { font-size: 2.4rem; }
}

/* 4. About Section - Updated with Features Grid */
.about-section { padding: 100px 20px; background-color: #ffffff; text-align: center; border-bottom: 1px solid #e2e8f0; }
.about-container { max-width: 900px; margin: 0 auto; }
.about-content h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 30px; letter-spacing: -1px; }
.about-text { font-size: 1.2rem; line-height: 1.8; color: #475569; margin-bottom: 40px; }

.location-tag { font-size: 0.95rem; color: #1e293b; background: #f1f5f9; display: inline-block; padding: 8px 16px; border-radius: 50px; }

/* 5. Services - Grid & List Toggle */

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; color: #1a202c; }

/* --- CARD LAYOUT STYLES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover { transform: translateY(-5px); }

.service-icon-wrapper { font-size: 2rem; margin-bottom: 15px; color: #0052cc; }

.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }

.service-cta { 
    display: inline-block; 
    margin-top: 15px; 
    color: #0052cc; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.9rem;
}

/* --- LIST LAYOUT STYLES (Your Screenshot Style) --- */
.services-list-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Two columns on desktop */
    gap: 20px 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #fcfcfc; /* Subtle tint to separate items */
    border-radius: 8px;
}

.service-bullet {
    color: #0052cc;
    font-weight: bold;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-content strong {
    display: block;
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 4px;
}

.service-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.4;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .services-list-columns { grid-template-columns: 1fr; }
}

/* 6. Buttons - Added Max-Width for CTA Fix */
.btn-call, .btn-large { 
    background: var(--primary); 
    color: var(--text-light); 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: bold; 
    transition: opacity 0.2s; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%; 
}
.btn-call { padding: 8px 20px; width: auto; } 
.btn-large { 
    padding: 18px 40px; 
    border-radius: 8px; 
    font-weight: 800; 
    font-size: 1.2rem; 
    border: 2px solid transparent; 
    max-width: 400px; 
    margin: 0 auto;   
}
.btn-call:hover, .btn-large:hover { opacity: 0.9; }

/* 7. Map & CTA - Added Centering Logic */
.map-responsive { position: relative; width: 100%; height: 450px; overflow: hidden; border-radius: 12px; }
.map-responsive iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.cta-bottom { 
    background: var(--bg-light); 
    padding: 80px 20px; 
    text-align: center; 
    border-top: 1px solid #e2e8f0; 
    display: flex;
    flex-direction: column;
    align-items: center; 
}
.cta-container h2 { font-size: 2.2rem; color: var(--secondary); margin-bottom: 10px; }
.cta-container p { font-size: 1.1rem; color: #64748b; margin-bottom: 30px; }

/* 8. Footer */
.site-footer { 
    background-color: var(--secondary); 
    color: var(--bg-light); 
    padding: 50px 20px 20px; 
    margin-top: 60px; 
    text-align: center; 
}
.footer-container { max-width: 800px; margin: 0 auto; padding-bottom: 30px; border-bottom: 1px solid #334155; }
.footer-branding h4 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-light); }
.footer-contact-links { margin-top: 15px; display: flex; justify-content: center; gap: 30px; font-weight: 500; }
.footer-contact-links a { color: #cbd5e1; text-decoration: none; }
.footer-management { margin-top: 30px; font-size: 0.85rem; color: #94a3b8; }
.footer-bottom { padding-top: 20px; font-size: 0.8rem; color: #64748b; }

/* 9. Local SEO Area Tags */
.footer-areas { margin-top: 25px; padding: 10px; }
.area-list { list-style: none; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.area-list li { font-size: 0.85rem; color: #94a3b8; }
.area-list li::after { content: "•"; margin-left: 12px; color: #334155; }
.area-list li:last-child::after { content: ""; }

.menu-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 2rem; cursor: pointer; }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 70px; left: 0; width: 100%; 
        background: var(--secondary); 
        padding: 20px; 
        margin: 0;
    }
    .nav-links.active { display: flex; }
}

/* 10. Gallery & Features */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    border: 1px solid #e2e8f0;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.05);
}

.stat-item h2 {
    color: var(--primary);
}