:root {
    --orange: #f0a202;
    --cream: #fbfefb;
    --olive: #585123;
    --brandy: #772f1a;
    --rose: #b9314f;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--olive);
}
header {
    background: var(--olive);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
}

.tagline {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
}
.align-right {
    margin-left: auto;
}

.nav-item {
    color: var(--cream);
    cursor: pointer;
    font-size: 14px;
}

.nav-item:hover {
    color: var(--orange);
}

.nav-btn {
    background: var(--rose);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}
.hero-section {
    background: var(--olive);
    padding: 80px 40px;
}

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

h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 20px;
}
h1 .accent {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 50px;
}
.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--cream);
    opacity: 0.8;
}
.problem-section {
    padding: 80px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 36px;
    color: var(--olive);
    margin-bottom: 50px;
}

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

.problem-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
}

.problem-emoji {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 18px;
    color: var(--olive);
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.locations-intro {
    text-align: center;
    margin-bottom: 60px;
}

.locations-intro h2 {
    font-size: 36px;
    color: var(--olive);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
}

.item {
    background: white;
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
}

.item-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.img-banner {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.img-banner.exclusive {
    background: var(--rose);
}

.content-card {
    padding: 30px;
}

.location-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.location-header h3 {
    font-size: 22px;
    color: var(--olive);
}

.location-tag {
    background: var(--cream);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

.location-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--cream);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--olive);
}

.cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.price {
    font-size: 26px;
    font-weight: 700;
    color: var(--olive);
}

.price-note {
    font-size: 12px;
    color: #999;
}

.btn-primary {
    background: var(--rose);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--brandy);
}
.testimonials {
    background: white;
    padding: 80px 40px;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    color: var(--olive);
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 8px;
    }

.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--olive);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--olive);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 12px;
    color: #999;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--olive);
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.waitlist-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 10px;
    justify-content: center;
}

.email-input,
.city-input {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    flex: 1;
}

.btn-primary.large {
    padding: 12px 30px;
}

.form-note {
    font-size: 12px;
    opacity: 0.7;
}
.chatbox-bg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--rose);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    z-index: 999;
}

.chatbox-bg:hover {
    background: var(--brandy);
}

.chatbox-img {
    margin: auto;
    width: 50%;
    filter: brightness(0) invert(1);
}
/* ========== FOOTER ========== */
footer {
    background: var(--olive);
    color: var(--cream);
    text-align: center;
    padding: 40px;
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    .hero-stats,
    .problem-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .nav-item {
        display: none;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
}

