:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --dark: #0f172a;
    --light-bg: #f8fafc;
    --text-main: #334155;
    --accent: #38bdf8;
    --white: #ffffff;
    --success: #10b981;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --- Accessibility Contrast Fixes --- */
.badge {
    background: #dbeafe;
    color: #1e40af; /* Increased contrast for WCAG AA compliance */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.btn-decline {
    background: #374151 !important; /* Darker grey for readable white text */
    color: white !important;
}

/* --- Corrected About List Alignment --- */
.about-list {
    list-style: none !important;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-list li {
    display: flex;
    align-items: flex-start; /* Aligns icon with top of text line */
    justify-content: flex-start;
    gap: 12px;
    font-weight: 600;
    text-align: left;
}

.about-list i {
    color: var(--success);
    margin-top: 4px; /* Tiny adjustment to center icon with first line of text */
    flex-shrink: 0; 
    font-size: 1.1rem;
}

/* --- Semantic Heading Styles --- */
.why-local h3, .faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Rest of your existing styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow-x: hidden;
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-phone {
    color: var(--accent) !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta {
    background: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: white !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 10%;
    background: var(--dark);
    color: white;
    gap: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1.5rem 0;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.trust-bar {
    background: #f1f5f9;
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-weight: 600;
    color: #475569;
}

.logo-grid i {
    color: var(--primary);
    margin-right: 8px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.why-local {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid var(--accent);
}

.section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--dark);
}

.service-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card,
.price-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.service-card:hover,
.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 400;
}

.price-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    align-items: center;
}

.info-item i {
    background: #eff6ff;
    color: var(--primary);
    padding: 12px;
    border-radius: 10px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 1rem;
}

footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 5rem 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.8rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: var(--dark);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.4s;
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none !important;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        list-style: none;
    }

    .nav-links.open {
        display: flex;
        animation: fadeInDown 0.3s ease forwards;
    }

    .hamburger {
        display: block;
    }

    .hero,
    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Fixed Checkmark Center for Mobile */
    .about-list {
        align-items: flex-start;
        max-width: 320px;
        margin: 2rem auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .section {
        padding: 4rem 5%;
    } 
}