/* Reset and base styles */
:root {
    --text-color: #fff;
    --text-bright: #fff;
    --section-padding: clamp(1.5rem, 4vw, 3rem);
    --content-max-width: 800px;
    --section-spacing: clamp(2rem, 6vw, 4rem);
    --container-padding: clamp(1rem, 5vw, 2rem);
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --accent-color-hover: #c0392b;
    --background-color: #000;
    --header-font: 'Amatic SC', cursive;
    --body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--container-padding);
}

.site-title {
    color: var(--text-bright);
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-bright);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.cta-button {
    background-color: var(--accent-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--text-bright);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero section */
.hero {
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    padding-top: 80px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Turkey Animation */
.turkey-animation-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: 2rem 0;
}

.flying-turkey {
    position: absolute;
    width: 400px;
    height: auto;
    object-fit: contain;
}

.flying-turkey-right {
    animation: flyRight 10s linear infinite;
    top: 50%;
    transform: translateY(-50%);
}

.flying-turkey-left {
    animation: flyLeft 10s linear infinite;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes flyRight {
    from {
        left: -400px;
    }
    to {
        left: 100%;
    }
}

@keyframes flyLeft {
    from {
        right: -400px;
    }
    to {
        right: 100%;
    }
}

/* Book page specific turkey animation */
.book-page .turkey-animation-container {
    height: 300px;
    margin: 4rem 0;
    overflow: hidden;
}

.book-page .flying-turkey {
    width: 400px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.book-page .flying-turkey-right {
    animation: spinAndFly 10s linear infinite;
}

@keyframes spinAndFly {
    0% {
        left: -400px;
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        left: 100%;
        transform: translateY(-50%) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .book-page .turkey-animation-container {
        height: 240px;
    }
    .book-page .flying-turkey {
        width: 300px;
    }
    
    .flying-turkey-left {
        right: auto;
        left: -300px;
        animation: flyRightOnMobile 10s linear infinite;
    }
    
    @keyframes flyRightOnMobile {
        from {
            left: -300px;
        }
        to {
            left: 100%;
        }
    }
}

@media (max-width: 480px) {
    .book-page .turkey-animation-container {
        height: 200px;
    }
    .book-page .flying-turkey {
        width: 240px;
    }
    
    .flying-turkey-left {
        left: -240px;
    }
}

/* Welcome section */
.welcome-section {
    padding-top: 120px;
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-section h1 {
    font-family: var(--header-font);
    font-size: clamp(3rem, 10vw, 5rem);
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-section p {
    margin-bottom: 0;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.hero-cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 1rem 4rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    font-size: 2rem;
    font-family: var(--body-font);
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    background-color: var(--accent-color-hover);
}

/* Video section */
.video-section {
    padding: 2rem 0;
    background: #000;
}

.video-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    aspect-ratio: 16/9;
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Content layout */
.content-wrapper {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section styles */
section {
    margin-bottom: var(--section-spacing);
    padding: 0 var(--container-padding);
}

section img {
    width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h1, h2 {
    font-family: "Amatic SC", Sans-serif;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1;
}

h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

h2 {
    font-size: clamp(2rem, 8vw, 4.375rem);
    font-weight: 600;
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
}

/* Content paragraphs */
p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin-bottom: clamp(1rem, 4vw, 2rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-align-last: center;
}

/* Reviews section */
.reviews-section {
    padding: var(--section-padding) 0;
    background: #000;
    width: 100%;
    margin-top: 2rem;
}

.reviews-carousel {
    padding: 1rem var(--container-padding);
}

.swiper-slide {
    height: auto;
    width: clamp(280px, 85vw, 380px);
}

.review {
    background: #1a1a1a;
    border-radius: 24px;
    padding: clamp(1rem, 3vw, 1.25rem);
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.google-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.reviewer {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.stars {
    color: #fbbc05;
    font-size: 0.9rem;
    line-height: 1;
}

.review p {
    color: #fff;
    font-size: clamp(0.875rem, 3vw, 1rem);
    margin-top: 0.5rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    text-align-last: left;
}

/* Footer */
footer {
    background: #000;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.footer-content p {
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
    text-align-last: left;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(10px);
}

.newsletter-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #ffffff;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border-radius: 12px;
    position: relative;
    max-width: clamp(280px, 90vw, 400px);
    width: 90%;
    text-align: center;
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-popup {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.2s;
    padding: 0.25rem;
}

.close-popup:hover {
    color: #000;
}

.popup-content h3 {
    font-family: var(--header-font);
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
    color: #000;
}

.popup-content p {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    font-size: clamp(0.875rem, 3vw, 1rem);
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #fff;
    color: #000;
    font-size: 1rem;
    transition: all 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.newsletter-form button[type="submit"] {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    width: 100%;
    margin-top: 0.5rem;
}

.newsletter-form button[type="submit"]:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
}

.newsletter-form button[type="submit"]:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --section-padding: 2rem;
        --section-spacing: 4rem;
    }

    .content-wrapper {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        gap: 1rem;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
    text-align: center;
        padding: 0.5rem;
    }

    .cta-button {
        width: 100%;
        margin-top: 0.5rem;
    }

    h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 50px;
    }

    p {
        font-size: 1.25rem;
    }

    .swiper-slide {
        width: 75vw;
    }
    
    .review {
        padding: 1.25rem;
    }
    
    .review-header {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .reviewer {
        font-size: 1.2rem;
    }
    
    .review p {
        font-size: 1rem;
    }

    .turkey-animation-container {
        height: 240px;
    }

    .flying-turkey {
        width: 300px;
    }

    .flying-turkey-left {
        left: -300px;
    }

    .flying-turkey-right {
        right: -300px;
    }

    .hero {
        padding-top: 60px;
    }

    footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-content p {
        font-size: 1rem;
        text-align: center;
        text-align-last: center;
    }

    .social-links {
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .booking-info {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .turkey-animation-container {
        height: 200px;
    }

    .flying-turkey {
        width: 240px;
    }

    .site-title {
        font-size: 1.2rem;
    }

    p {
        font-size: 1.15rem;
    }

    .swiper-slide {
        width: 85vw;
    }
}

/* Tablet and desktop adjustments */
@media (min-width: 768px) {
.footer-content {
        flex-direction: row;
        text-align: left;
}

.social-links {
        margin-top: 0;
}

.social-links a {
        margin-left: 1.5rem;
        margin-right: 0;
    }
}

/* Team Building Hero */
.team-building-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 60px auto 0;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-image-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
        position: absolute;
    top: 0;
        left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.team-building-hero h1 {
    font-family: "Amatic SC", sans-serif;
    font-size: clamp(4rem, 15vw, 8rem);
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.team-building-intro {
    text-align: center;
    padding: 6rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-building-intro h2 {
    font-family: "Amatic SC", sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    color: #fff;
    margin-bottom: 2rem;
}

.team-building-intro p {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.testimonial-section {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: #fff;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.8;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.testimonial-content p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #fff;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.alamo-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.get-started-section {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.circular-image {
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    margin: -2rem auto 4rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    transform: scale(1.1);
    object-position: center 30%;
}

.get-started-section h2 {
    font-family: "Amatic SC", sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    color: #fff;
    margin-bottom: 2rem;
}

.get-started-section p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #fff;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.get-started-section a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    transition: opacity 0.2s;
}

.get-started-section a:hover {
    opacity: 0.8;
}

footer {
    padding: 2rem 1rem;
    text-align: center;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .team-building-hero {
        height: 40vh;
        min-height: 300px;
    }

    .testimonial-section {
        padding: 6rem 1rem;
    }

    .quote-mark {
        font-size: 6rem;
    }

    .get-started-section {
        padding: 6rem 1rem;
    }
}

@media (max-width: 480px) {
    .team-building-hero {
        height: 30vh;
        min-height: 250px;
    }

    .quote-mark {
        font-size: 4rem;
    }
}

/* Features Section */
.features {
    padding: 4rem 1rem;
    background: #111;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.feature-item h3 {
    font-family: "Amatic SC", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: #fff;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    text-align-last: center;
}

/* Booking Info Section */
.booking-info {
    padding: 4rem 1rem;
    background: #000;
    text-align: center;
}

.booking-info h2 {
    font-family: "Amatic SC", sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: var(--content-max-width);
    margin: 0 auto 3rem;
}

.info-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.info-item h3 {
    font-family: "Amatic SC", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.1rem;
    color: #ddd;
    margin: 0;
    text-align: center;
    text-align-last: center;
}

.important-note {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.important-note strong {
    color: var(--accent-color);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 1rem;
    background: #111;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
}

.testimonial-card .stars {
    color: #fbbc05;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: left;
    text-align-last: left;
}

.testimonial-card h3 {
    color: #ddd;
    font-size: 1rem;
    font-style: italic;
}

.testimonials-slider {
    padding: 1rem 3rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #ff0000;
}

@media (max-width: 768px) {
    .feature-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        padding: 1rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    padding: 120px 20px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero h1 {
    font-family: var(--header-font);
    font-size: clamp(4rem, 12vw, 6rem);
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-section {
    padding: 0 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

details[open] {
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

summary {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    list-style: none;
    color: #fff;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

summary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #fff;
}

.faq-content p {
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.faq-content a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 20px 40px;
    }

    .faq-section {
        padding: 0 15px 40px;
    }

    summary {
        padding: 1.25rem;
        font-size: 1.1rem;
    }

    .faq-content {
        padding: 0 1.25rem 1.25rem;
    }

    .faq-content p {
        font-size: 1rem;
    }
}

.faq-closing {
    text-align: center;
    padding: 6rem 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.8;
}

.faq-closing p {
    margin: 1rem 0;
    opacity: 0.9;
    text-align: center;
}

.faq-closing a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.faq-closing a:hover {
    color: #3dbdb4;
}

@media (max-width: 768px) {
    .faq-closing {
        padding: 4rem 15px;
        font-size: 1.3rem;
    }
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 120px 20px 2rem;
    color: #fff;
    text-align: center;
}

.contact-content h1 {
    font-family: var(--header-font);
    font-size: clamp(4rem, 12vw, 6rem);
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-message {
    max-width: 800px;
    margin: 0 auto;
}

.contact-message p {
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-message a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-message a:hover {
    color: #3dbdb4;
}

@media (max-width: 768px) {
    .contact-content h1 {
        font-size: clamp(3rem, 10vw, 4.5rem);
        margin-bottom: 1.5rem;
    }

    .contact-content {
        padding: 100px 20px 2rem;
    }

    .contact-message p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-content h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .contact-content {
        padding: 80px 20px 2rem;
    }

    .contact-message p {
        font-size: 1.1rem;
    }
}

/* Swiper link */
.swiper-link {
        display: block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.swiper-link:hover {
    opacity: 0.8;
}

/* Booking section */
.booking-section {
    max-width: var(--content-max-width);
    margin: 2rem auto;
    padding: 0 var(--container-padding);
}

.booking-section > div {
    width: 100% !important;
    max-width: 100% !important;
}

.booking-section iframe {
    width: 100% !important;
    max-width: 100% !important;
}

/* Booking FAQ Page Styles */
.booking-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem var(--container-padding);
}

.transition-notice {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 0 8px 8px 0;
}

.transition-notice p {
    margin: 0;
    text-align: left;
    text-align-last: left;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.group-options {
    margin-bottom: 4rem;
}

.group-options h2 {
    font-family: var(--header-font);
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 2rem;
}

.option-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.option-block h3 {
    font-family: var(--header-font);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.option-block h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.option-block p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: left;
    text-align-last: left;
}

.option-block p:last-child {
    margin-bottom: 0;
}

.option-block a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.option-block a:hover {
    opacity: 0.8;
}

.important-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.important-info h2 {
    font-family: var(--header-font);
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.5rem;
}

.important-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-info li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.important-info li:before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.important-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.important-info a:hover {
    opacity: 0.8;
}

.newsletter-prompt {
    text-align: center;
}

.newsletter-prompt p {
    font-size: 1.2rem;
    margin: 0;
}

.newsletter-trigger {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.newsletter-trigger:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .booking-content {
        padding: 1rem var(--container-padding);
    }

    .option-block {
        padding: 1.5rem;
    }

    .important-info {
        padding: 1.5rem;
    }
}

/* Newsletter Page Styles */
.newsletter-page {
    padding: 2rem var(--container-padding);
    min-height: 60vh;
}

.newsletter-page h1 {
    font-family: var(--header-font);
    font-size: clamp(3rem, 10vw, 5rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-signup-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-signup-form label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.newsletter-signup-form input,
.newsletter-signup-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-signup-form input:focus,
.newsletter-signup-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-signup-form textarea {
    resize: vertical;
    min-height: 100px;
}

.newsletter-signup-form .submit-button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-signup-form .submit-button:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
}

.newsletter-signup-form .submit-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .newsletter-page {
        padding: 1rem var(--container-padding);
    }

    .newsletter-card {
        padding: 1.5rem;
    }

    .newsletter-signup-form input,
    .newsletter-signup-form textarea {
        font-size: 16px; /* Prevents zoom on mobile */
    }
}

/* Voucher Section Styles */
.voucher-section {
    padding: 80px 20px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.voucher-section h1 {
    font-family: var(--header-font);
    font-size: clamp(4rem, 12vw, 6rem);
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.voucher-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
}

.voucher-content p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    text-align-last: center;
}

.voucher-content .booking-section {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .voucher-section {
        padding: 70px 20px 30px;
    }

    .voucher-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .voucher-section {
        padding: 60px 15px 20px;
    }

    .voucher-content p {
        font-size: 1.1rem;
    }
}

/* Spoilers Page Styles */
.spoilers-section {
    padding: 120px 20px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.spoilers-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.spoiler-warning {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.spoiler-warning p {
    margin: 0.5rem 0;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.requirements-block,
.experience-block {
    margin-bottom: 4rem;
    text-align: left;
}

.requirements-block h2,
.experience-block h2 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-align: left;
}

.requirements-block p,
.experience-block p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 1.5rem;
    text-align: left;
    text-align-last: left;
}

.spoiler-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.location-block {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.location-block p {
    font-size: 1.2rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .spoilers-section {
        padding: 100px 15px 40px;
    }

    .spoilers-content {
        padding: 1.5rem;
    }

    .spoiler-warning {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .requirements-block,
    .experience-block {
        margin-bottom: 3rem;
    }

    .spoiler-image {
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .spoilers-section {
        padding: 80px 15px 30px;
    }

    .spoiler-warning p {
        font-size: 1.1rem;
    }

    .requirements-block p,
    .experience-block p {
        font-size: 1rem;
    }
}

/* Gift Cards Page Styles */
.gift-cards-section {
    padding: 120px 20px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gift-cards-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.gift-intro,
.gift-info {
    margin-bottom: 4rem;
}

.gift-intro h2,
.gift-info h2 {
    font-family: var(--header-font);
    font-size: clamp(3rem, 10vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-intro p,
.gift-info p {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 2rem;
    text-align: center;
}

.gift-intro .cta-button {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    margin: 2rem auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .gift-cards-section {
        padding: 100px 15px 40px;
    }

    .gift-cards-content {
        padding: 2rem;
    }

    .gift-intro,
    .gift-info {
        margin-bottom: 3rem;
    }

    .gift-intro .cta-button {
        font-size: 1.3rem;
        padding: 0.8rem 1.6rem;
    }
}

@media (max-width: 480px) {
    .gift-cards-section {
        padding: 80px 15px 30px;
    }

    .gift-cards-content {
        padding: 1.5rem;
    }

    .gift-intro p,
    .gift-info p {
        font-size: 1.1rem;
    }

    .gift-intro .cta-button {
        font-size: 1.2rem;
        padding: 0.7rem 1.4rem;
    }
}

/* Required field indicator */
.required {
    color: #ff0000;
    margin-left: 2px;
}

/* Newsletter form validation */
.newsletter-form input:invalid,
.newsletter-signup-form input:invalid {
    border-color: #ff0000;
}

.newsletter-form input:focus:invalid,
.newsletter-signup-form input:focus:invalid {
    outline-color: #ff0000;
}

/* Newsletter confirmation message */
.subscription-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.subscription-message.success {
    display: block;
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.subscription-message.error {
    display: block;
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

#mce-responses {
    margin-top: 10px;
}

#mce-error-response, #mce-success-response {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

#mce-error-response {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

#mce-success-response {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}
