:root {
    --teal: hsl(176, 76%, 41%);
    --coral: hsl(16, 100%, 61%);
    --sage: hsl(134, 17%, 83%);
    --charcoal: hsl(0, 0%, 20%);
    --white: hsl(0, 0%, 100%);
    --light-gray: hsl(210, 17%, 98%);
    --gray: hsl(210, 9%, 45%);
    --border: hsl(210, 14%, 92%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: none;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--teal);
    text-decoration: none;
}

.logo-icon {
    height: 45px;
    width: auto;
    margin-right: 12px;
}

.logo-text {
    color: var(--teal);
    font-weight: 700;
    font-size: 22px;
}

.logo i {
    margin-right: 8px;
    color: var(--coral);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--sage);
    color: var(--teal);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--charcoal);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--sage) 0%, rgba(217, 228, 221, 0.3) 100%);
    padding: 100px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.hero__content {
    flex: 1;
    padding-right: 40px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.hero__lead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.hero__cta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.hero__media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
}

.hero__media img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn--solid {
    background: var(--teal);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn--solid:hover {
    background: hsl(176, 76%, 35%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px hsla(176, 76%, 41%, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn--ghost:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px hsla(176, 76%, 41%, 0.3);
}

/* DC Page Hero with Background Image */
.hero-dc {
    background: none;
    padding: 150px 0 100px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.85) 0%, rgba(20, 83, 45, 0.75) 50%, rgba(64, 103, 36, 0.85) 100%);
}

.hero-dc .container {
    position: relative;
    z-index: 2;
}

.hero-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    grid-template-columns: none;
}

.hero-dc .hero-text h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 3.8rem;
    margin-bottom: 30px;
}

.hero-dc .hero-text .subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.35rem;
    margin-bottom: 40px;
}

.hero-dc .cta-buttons {
    justify-content: center;
    margin-bottom: 40px;
}

.hero-dc .trust-badges {
    justify-content: center;
}

.hero-dc .badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-dc .badge i {
    color: var(--sage);
}

/* Hero Title Wrapper for Location Pages */
.hero-title-wrapper {
    margin-bottom: 20px;
}

.location-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), hsl(16, 100%, 55%));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.hero-title-wrapper h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .location-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 12px;
    }
    
    .hero-title-wrapper h1 {
        font-size: 2.4rem;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background: hsl(176, 76%, 35%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px hsla(176, 76%, 41%, 0.3);
}

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

.btn-secondary:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px hsla(176, 76%, 41%, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--teal);
}

.btn-white:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-full {
    width: 100%;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    color: var(--teal);
}

.hero-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--sage), var(--light-gray));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 18px;
}

.hero-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--teal);
}

.placeholder-subtitle {
    font-size: 14px;
    margin-top: 10px;
}

/* Section Styling */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    position: relative;
}

/* Location pages - Shared Kitchen Space Locations headers */
.areas-section .section-header h2 {
    color: #1BB1A5;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--teal);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--charcoal);
}

/* Value Props */
#value-props {
    background: var(--white);
}

.value-props {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.value-prop {
    padding: 40px;
    border-radius: 20px;
    background: var(--white);
    border: 3px solid var(--sage);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-prop-hosts {
    border-color: var(--coral);
    background: linear-gradient(135deg, var(--white), hsl(16, 100%, 98%));
}

.value-prop-chefs {
    border-color: var(--teal);
    background: linear-gradient(135deg, var(--white), hsl(176, 76%, 98%));
}

.value-prop h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.value-prop-hosts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--coral);
    border-radius: 2px;
}

.value-prop-chefs h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
}

.value-prop ul {
    list-style: none;
    margin-bottom: 25px;
}

.value-prop li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.value-prop li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

/* DMV Trust Section */
.dmv-trust {
    background: var(--sage);
    text-align: center;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.partner-logo {
    background: var(--white);
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--coral);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.testimonial-author {
    font-weight: 600;
    color: var(--teal);
}

/* Features Grid */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--coral);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--charcoal);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--teal), hsl(176, 76%, 35%));
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-banner h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .btn {
    margin: 0 10px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    color: var(--teal);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-heading {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: var(--gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero {
        padding: 80px 20px 60px;
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }
    
    .hero__content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__lead {
        max-width: none;
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__media img {
        max-width: 100%;
        height: 250px;
    }
    
    .hero-dc {
        padding: 120px 0 80px;
        min-height: 60vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content-centered {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-dc .hero-text h1 {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }
    
    .hero-dc .hero-text .subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-dc .badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .value-props {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .cta-banner .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container, .container-wide {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .partner-logos {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-icon {
        height: 36px;
    }

    .logo-text {
        font-size: 18px;
    }
}

/* Trust Section Styles */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    background: white;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 1.5rem;
    color: white;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.trust-item p {
    line-height: 1.7;
    color: #64748b;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .trust-item {
        padding: 30px 20px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon i {
        font-size: 1.5rem;
    }
}

/* Contact Buttons Styles */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.contact-card p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

/* Areas Section Styles */
.areas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f1f5f9 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.area-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--teal);
}

.area-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.area-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--teal), var(--sage));
    border-radius: 2px;
}

.area-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.area-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.area-card li {
    color: var(--charcoal);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.area-card li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e2e8f0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--coral);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Regulations Section Styles */
.regulations-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.regulations-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.reg-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.reg-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.reg-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reg-list li {
    color: var(--charcoal);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid #e2e8f0;
}

.reg-list li:last-child {
    border-bottom: none;
}

.reg-list li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.reg-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reg-feature {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reg-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.reg-feature h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.reg-feature p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .areas-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .regulations-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .area-card,
    .service-card {
        padding: 20px;
    }
}

/* Footer Contact Styles */
.footer-contact {
    margin-top: 15px;
}

.footer-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-contact i {
    font-size: 0.9rem;
    color: var(--secondary-color);
    width: 16px;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .contact-info {
        gap: 30px;
        margin: 30px 0 40px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        min-width: 200px;
    }
    
    .contact-item i {
        margin-bottom: 10px;
    }
}

/* Animation classes for intersection observer */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
