/* CSS Variables */
:root {
    --primary: #c45c26;
    --primary-dark: #a34a1e;
    --primary-light: #e8a87c;
    --secondary: #2d3748;
    --accent: #38a169;
    --background: #fafafa;
    --surface: #ffffff;
    --text: #1a202c;
    --text-muted: #718096;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary: #e07a3d;
    --primary-dark: #c45c26;
    --primary-light: #f0a06a;
    --secondary: #e2e8f0;
    --accent: #48bb78;
    --background: #0f172a;
    --surface: #1e293b;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --border: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    box-shadow: var(--shadow);
    z-index: 100;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    background: var(--background);
    border-color: var(--primary);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, rgba(255, 245, 240, 0.92) 0%, var(--background) 100%);
    background-image: url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

[data-theme="dark"] .hero {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, var(--background) 100%);
    background-image: url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    opacity: 0.3;
    z-index: 0;
}

[data-theme="dark"] .hero::before {
    background: #0f172a;
    opacity: 0.7;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-cta {
    margin-bottom: 32px;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 0;
}

.service-areas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.service-areas span:first-child {
    color: var(--text-muted);
}

.service-areas .area {
    background: var(--surface);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
}

/* Included Section */
.included {
    padding: 80px 0;
    background: var(--surface);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    text-align: center;
}

.cards-grid {
    display: grid;
    gap: 24px;
}

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

.card {
    padding: 32px;
    background: var(--background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.card h3 {
    color: var(--secondary);
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .cards-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Why Matters */
.why-matters {
    padding: 80px 0;
    background: var(--background);
}

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

.why-list {
    list-style: none;
    margin: 24px 0;
}

.why-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.why-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.why-closing {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-top: 24px;
}

.visual-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.visual-placeholder span {
    font-weight: 600;
    margin-bottom: 8px;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: var(--surface);
}

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.booking-card h2 {
    text-align: center;
}

.booking-note {
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 0;
}

/* Trust Section */
.trust {
    padding: 60px 0;
    background: var(--secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.trust-item h3 {
    color: var(--text);
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #1a202c;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: var(--primary-light);
    margin-bottom: 16px;
}

.footer-info p {
    color: rgba(255,255,255,0.7);
}

.footer-contact h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 400px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.modal-content h2 {
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

    h2 {
        font-size: 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .included, .why-matters, .booking, .trust {
        padding: 60px 0;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .visual-placeholder {
        order: -1;
        height: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-card {
        padding: 32px 24px;
    }

    .service-areas {
        flex-direction: column;
        gap: 8px;
    }
}
