:root {
    /* 2026 Logo color palette - Blue, Lime Green, Charcoal */
    --cream: #F8FAFB;
    --warm-white: #FFFFFF;
    --blue: #40a5d1;
    --blue-dark: #3391BA;
    --blue-light: #5DB8DB;
    --lime: #9fd537;
    --lime-dark: #8BC02E;
    --lime-light: #B3E05C;
    --charcoal: #3a3f42;
    --charcoal-light: #4F5558;
    --navy: #2A3F4D;
    --navy-light: #3D5A6B;
    --shadow: rgba(58, 63, 66, 0.08);
    
    /* Legacy variable mappings for easier transition */
    --coral: var(--blue);
    --coral-dark: var(--blue-dark);
    --coral-light: var(--blue-light);
    --teal: var(--lime);
    --teal-dark: var(--lime-dark);
    --teal-light: var(--lime-light);
    --gold: var(--blue);
    --gold-dark: var(--blue-dark);
    --sage: var(--lime);
    --peach: var(--lime-light);
    --terracotta: var(--blue-light);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    color: var(--navy);
    font-weight: 400;
}

/* Decorative Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(64, 165, 209, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(159, 213, 55, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
header {
    background: var(--warm-white);
    border-bottom: 1px solid rgba(58, 63, 66, 0.08);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo img {
    height: 120px;
    width: auto;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.header-cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 165, 209, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 165, 209, 0.4);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 3rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.15;

    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    max-width: 500px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--warm-white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
    margin-top: 6rem;
    border: 1px solid rgba(58, 63, 66, 0.08);
}

.location-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--terracotta);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--navy);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.25);
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(58, 63, 66, 0.15);
    border: 8px solid var(--lime);
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    padding: 2rem;
}

.floating-card {
    position: absolute;
    background: var(--warm-white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(58, 63, 66, 0.12);
    animation: float 4s ease-in-out infinite;
}

.floating-card.reviews {
    bottom: -20px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
}

.floating-card.experience {
    top: 20px;
    right: -20px;
    text-align: center;
}

.experience-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--warm-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    background: rgba(64, 165, 209, 0.15);
    color: var(--blue-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(58, 63, 66, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--lime);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Areas Section */
.areas {
    padding: 6rem 2rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(64, 165, 209, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(159, 213, 55, 0.15) 0%, transparent 40%);
}

.areas .section-header {
    position: relative;
}

.areas .section-label {
    background: rgba(64, 165, 209, 0.25);
    color: white;
}

.areas h2 {
    color: white;
}

.areas .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.areas-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.area-tag {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: var(--lime);
    color: var(--charcoal);
    border-color: var(--lime);
}

.area-tag.featured {
    background: var(--lime);
    color: var(--charcoal);
    border-color: var(--lime);
    font-weight: 600;
}

/* Why Choose Us */
.why-us {
    padding: 6rem 2rem;
    background: var(--cream);
}

.why-us-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: rgba(159, 213, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 16px;
    height: 16px;
    fill: var(--lime-dark);
}

.benefit-item h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--warm-white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.contact p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    background: var(--cream);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 220px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-method h4 {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo a {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-info {
    text-align: right;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info a {
    color: var(--lime-light);
    text-decoration: none;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    nav {
        display: none;
    }
    
    .location-badge {
        margin-top: 6rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-image-container {
        width: 100%;
    }
    
    .floating-card.reviews {
        left: 10px;
    }
    
    .floating-card.experience {
        right: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-visual {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-image-container {
        border-width: 6px;
    }
    
    .hero-slider {
        aspect-ratio: 1/1;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .contact-methods {
        flex-direction: column;
    }
}
