:root {
    --primary-sage: #8da08e;
    --primary-sage-dark: #6e7d6f;
    --primary-sage-light: #a8b8a9;
    --text-dark: #2c3e2d;
    --white: #ffffff;
    --off-white: #f9faf9;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-sage);
    color: var(--primary-sage);
}

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

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('./hero_background_1771001763421.png');
    /* Temporarily assume relative; I'll copy images in next step */
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: #556b56;
    margin-bottom: 2.5rem;
}

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

/* Advantage Section Adjustments */
.advantage-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.advantage-content {
    flex: 1;
    min-width: 300px;
}

.advantage-image {
    flex: 1;
    min-width: 300px;
}

/* Global responsiveness fix */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-ctas .btn {
        width: 100%;
    }
}

/* Section Common */
section {
    padding: 6rem 0;
}

.section-tag {
    color: var(--primary-sage);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: #556b56;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Relief Section */
.relief {
    background: var(--off-white);
}

.relief-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: "✓";
    color: var(--primary-sage);
    font-weight: bold;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: var(--primary-sage);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: #4CAF50;
    font-weight: bold;
}

.cross-icon {
    color: #f44336;
    font-weight: bold;
}

/* Local Advantage */
.advantage-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.advantage-content {
    flex: 1;
}

.advantage-image {
    flex: 1;
}

.advantage-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--primary-sage);
    transform: scale(1.05);
}

.price-card h3 {
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-sage);
}

.price-desc {
    color: #556b56;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Booking Section */
.booking {
    background: var(--off-white);
}

.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fcfdfc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .advantage-flex {
        flex-direction: column;
    }

    .price-card.featured {
        transform: scale(1);
    }
}