@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* General Body Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fdfdfe;
    color: #333;
}

:root {
    --primary-color: #f94239;
    --light-gray: #f4f4f4;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #111;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5em;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1em;
    color: #555;
    align-items: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    stroke: #888;
}

.app-store-button {
    display: inline-block;
}

.app-store-button img {
    width: 160px;
    height: auto;
    transition: transform 0.2s ease;
}

.app-store-button:hover img {
    transform: scale(1.05);
}

.stats {
    margin-top: 25px;
    font-weight: 500;
    font-size: 1.1em;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 60px auto;
}

section {
    margin-bottom: 80px;
}

h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

/* Booking Options Section */
.booking-options-section {
    padding: 80px 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.option {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 3px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
}

.option:hover {
    transform: translateY(-5px);
}

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

.option.featured::before {
    content: 'Recommended';
    position: absolute;
    top: 15px;
    right: -15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 5px;
    transform: rotate(15deg);
}

.option h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 0;
    font-weight: 700;
}

.option-description {
    color: #666;
    margin-bottom: 30px;
}

.option .steps .step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.option .steps .step:last-child {
    margin-bottom: 0;
}

.option .steps .step .step-number {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.option .steps .step p {
    margin: 0;
}

.option-price {
    margin-top: auto;
    padding-top: 30px;
    text-align: center;
}

.option-price .price {
    font-size: 2.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 20px;
}

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

.step-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.step-card .step-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 auto 20px auto;
    display: block;
}

.step-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: #666;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #d6322b;
    transform: translateY(-3px);
}


/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
}

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

.review-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-text {
    padding: 15px;
    text-align: center;
}

.review-text blockquote {
    margin: 0 0 10px 0;
    font-style: normal;
    color: #555;
}

.review-text footer {
    font-weight: 600;
    color: #333;
}


/* Footer */
footer {
    padding: 60px 20px;
    background: #f9f9f9;
    color: #555;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin: 0 0 10px 0;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
}

.copyright {
    text-align: center;
    color: #888;
    margin: 0;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 10px;
    display: block;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
}

.legal-container h1, .legal-container h2 {
    text-align: left;
}

.legal-container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.legal-container h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-container ul {
    padding-left: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.post-meta {
    color: #888;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    .option.featured {
        transform: scale(1);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5em;
    }
    .tagline {
        font-size: 1.2em;
    }
    h2 {
        font-size: 2em;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    .hero-content h1 {
        font-size: 2.5em;
        letter-spacing: -1px;
    }
    .tagline {
        font-size: 1.1em;
    }
    main {
        margin: 40px auto;
    }
    h2 {
        font-size: 1.8em;
    }
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    .option.featured::before {
        right: 10px;
        font-size: 0.8em;
        transform: rotate(0deg);
        top: -15px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
