/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0F1C2E;
    --teal: #00B7A8;
    --light-gray: #F6F8FB;
    --white: #ffffff;
    --text-gray: #64748B;
    --border-color: #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);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

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

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

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

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

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

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.header-cta {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2942 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--white);
    padding: 2rem 0;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.checkmark {
    color: var(--teal);
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.2s ease;
}

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

.pricing-card.featured {
    border: 2px solid var(--teal);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.reserve-btn {
    width: 100%;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.step {
    padding: 2rem 1rem;
}

.step-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emoji-icon {
    font-size: 3rem;
}

.step-title {
    margin-bottom: 1rem;
    color: var(--navy);
}

.step-description {
    color: var(--text-gray);
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question:focus {
    outline: 2px solid var(--teal);
    outline-offset: -2px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--teal);
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Reservation Section */
.reservation {
    padding: 4rem 0;
    background-color: var(--white);
}

.reservation-content {
    max-width: 600px;
    margin: 0 auto;
}

.reservation-info {
    text-align: center;
    margin-bottom: 2rem;
}

.reservation-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-toggle {
    margin-bottom: 2rem;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.toggle-label input[type="checkbox"] {
    margin: 0;
}

/* Form Styles */
.reservation-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    margin-top: 0.1rem;
}

.submit-btn {
    margin-top: 1rem;
}

/* Google Form Container */
.google-form-container {
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.success-message a {
    color: var(--teal);
    text-decoration: none;
}

.success-message a:hover {
    text-decoration: underline;
}

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

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--teal);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
}

.footer-section a {
    color: var(--teal);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: var(--white);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-sticky-cta .btn {
    width: 100%;
}

/* Admin Test */
.admin-test {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .trust-items {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .mobile-sticky-cta {
        display: none;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header-cta {
        display: inline-block;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .reservation-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
        align-items: start;
        max-width: 1000px;
    }
    
    .reservation-info {
        text-align: left;
        margin-bottom: 0;
    }
    
    .reservation-card {
        position: sticky;
        top: 120px;
    }
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

/* Animation for smooth transitions */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
}