:root {
    --primary-color: #2563eb; /* Royal Blue */
    --primary-dark: #1e40af;
    --secondary-color: #10b981; /* Emerald Green */
    --secondary-dark: #059669;
    --text-color: #334155; /* Slate 700 */
    --text-light: #64748b; /* Slate 500 */
    --bg-light: #f8fafc; /* Slate 50 */
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius: 12px;
    --font-main: 'Poppins', sans-serif;
}

/* --- RESET & BASE --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-light);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-white { color: var(--white); }
.fw-600 { font-weight: 600; }
.d-block { display: block; }
.w-100 { width: 100%; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.gap-10 { gap: 10px; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    gap: 8px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* --- HEADER & NAV --- */
.menu-toggle {
    display: none;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo i {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    position: relative;
}

nav ul li a:not(.btn-cta-nav):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:not(.btn-cta-nav):hover:after,
nav ul li a.active:not(.btn-cta-nav):after {
    width: 100%;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

.btn-cta-nav {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.3);
    color: var(--white);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    color: var(--white);
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05) 0%, transparent 20%),
                      radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 20%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero h1 span {
    background: linear-gradient(to right, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 48px;
    opacity: 0.95;
    font-weight: 300;
}

.hero div {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- SERVICES & CARDS --- */
.section-title {
    text-align: center;
    margin: 80px 0 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    background: #eff6ff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(5deg);
}

.card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: #1e293b;
}

.card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* --- SEO LOCAL SECTION --- */
.seo-content {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
}

.seo-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.seo-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.seo-text p {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.zone-list {
    margin: 32px 0;
    display: grid;
    gap: 16px;
}

.zone-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    transition: transform 0.2s;
}

.zone-list li:hover {
    transform: translateX(10px);
    background: #f1f5f9;
}

.zone-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    background: #ecfdf5;
    padding: 8px;
    border-radius: 50%;
}

.seo-map-container iframe {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--white);
}

/* --- CONTACT BANNER --- */
.contact-banner {
    background: linear-gradient(to right, #1e293b, #334155);
    color: var(--white);
    text-align: center;
    padding: 100px 24px;
    position: relative;
}

.contact-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* New: High-Impact Solid Button Style for Contact Banner */
.contact-banner .btn {
    margin-top: 30px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.contact-banner .btn:hover {
    background-color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.4);
    color: var(--primary-dark);
}


/* --- FOOTER --- */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}

/* --- MODAL --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    padding: 48px;
    border-radius: 20px;
    width: 100%;
    max-width: 550px;
    position: relative;
    box-shadow: var(--shadow-2xl);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 90vh; /* Ensure modal fits on screen */
    overflow-y: auto; /* Enable scrolling if content is too long */
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #ef4444;
}

.modal h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.modal-subtitle {
    margin-bottom: 32px;
    color: var(--text-light);
    font-size: 1rem;
}

/* --- FORMS --- */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea, .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background-color: #f8fafc;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background-color: var(--white);
}



/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    
    /* Mobile/Tablet Menu Styles */
    nav { 
        padding: 16px; 
        position: relative; /* Ensure container is positioned */
    }
    
    .menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 2000;
        padding: 10px; /* Increase clickable area */
        background: rgba(255,255,255,0.8); /* Optional background */
        border-radius: 5px;
        position: absolute;
        right: 20px;
        top: 20px;
        border: 1px solid #e2e8f0;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px; /* Standard width */
        height: 3px; /* Standard thickness */
        margin: 5px auto; /* Spacing */
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: #1e293b; /* Dark slate */
        border-radius: 2px;
    }

    /* Hamburger Animation */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    nav ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: -100%;
        top: 80px; /* Adjust based on header height */
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px); /* Full height minus header */
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
        border-top: 1px solid #eee;
        z-index: 1999;
        overflow-y: auto;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a:not(.btn-cta-nav):after {
        display: none;
    }
}

@media (max-width: 768px) {
    .seo-grid, .page-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .grid-3 { grid-template-columns: 1fr; }
    
    .hero { padding: 80px 20px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    .hero div { flex-direction: column; }
    .hero .btn { width: 100%; }
    
    .modal-content { padding: 30px; }
}
