:root {
    /* Yellow Theme */
    --primary-yellow: #FFC107;
    --primary-yellow-darker: #E0A800;
    --background-white: #FFFFFF;
    --footer-black: #111827;
    --text-dark: #111827;
    --text-light: #6B7280;
    --text-on-dark: #F9FAFB;
    --light-bg: #F9FAFB;
    --border-color: #E5E7EB;
    --font-family: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); background-color: var(--background-white); color: var(--text-dark); }
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

.btn { padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none; display: inline-block; border: 2px solid transparent; transition: background-color 0.3s, color 0.3s, border-color 0.3s; cursor: pointer; }
.btn-primary { background-color: var(--primary-yellow); color: var(--text-dark); }
.btn-primary:hover { background-color: var(--primary-yellow-darker); }
.btn-secondary { background-color: var(--text-dark); color: var(--background-white); }
.btn-secondary:hover { background-color: #374151; }
.btn-outline { background-color: transparent; border-color: var(--text-dark); color: var(--text-dark); }
.btn-outline:hover { background-color: var(--text-dark); color: var(--background-white); }

/* --- Header & Navigation --- */
.main-header { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    padding: 1rem 0; 
}
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.nav-logo { 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--text-dark); 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
}
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 2rem; 
}
.nav-link a { 
    color: var(--text-dark); 
    text-decoration: none; 
    font-weight: 600; 
    transition: color 0.3s; 
    position: relative; 
    padding-bottom: 5px; 
}
.nav-link a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background-color: var(--text-dark); 
    transition: width 0.3s ease; 
}
.nav-link a:hover::after, .nav-link a.active::after { 
    width: 100%; 
}
.hamburger-menu { 
    display: none; 
    cursor: pointer; 
    font-size: 1.5rem; 
}

/* --- Hero Section --- */
.hero { 
    background-color: var(--primary-yellow); 
    padding-top: 10rem; 
    padding-bottom: 8rem; 
    color: var(--text-dark); 
    position: relative;
    overflow: hidden;
}
.hero-content { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto; 
    position: relative;
    z-index: 1;
}
.hero-content h1 { font-size: 3.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; max-width: 650px; margin: 0 auto 2rem auto; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; }
.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 2; }
.wave-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 100px; }
.wave-divider .shape-fill { fill: var(--background-white); }

.booking-widget-container { position: relative; margin-top: -5rem; z-index: 50; }
.booking-widget { background: var(--background-white); border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 1.5rem; }
.widget-tabs { display: flex; border-bottom: 1px solid var(--border-color); margin-bottom: 1.5rem; overflow-x: auto; scrollbar-width: none; }
.widget-tabs::-webkit-scrollbar { display: none; }
.tab-btn { padding: 1rem; border: none; background: none; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--text-light); border-bottom: 3px solid transparent; transition: all 0.3s; white-space: nowrap; }
.tab-btn i { margin-right: 0.5rem; }
.tab-btn.active { color: var(--primary-yellow); border-bottom-color: var(--primary-yellow); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.booking-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; align-items: flex-end; }
.form-group { width: 100%; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1rem; }
.booking-form .btn { width: 100%; }

.ticket-type-selector { display: flex; gap: 1rem; margin-bottom: 1.5rem; justify-content: center; }
.ticket-type-selector label { padding: 8px 16px; border: 1px solid var(--border-color); border-radius: 20px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; }
.ticket-type-selector input[type="radio"] { display: none; }
.ticket-type-selector input[type="radio"]:checked + label { background-color: var(--primary-yellow); border-color: var(--primary-yellow); color: var(--text-dark); font-weight: 600; }

.home-services { background-color: var(--background-white); }
.home-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--background-white); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.07); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-content { padding: 1.5rem; }
.service-card-content h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.service-card-content p { color: var(--text-light); margin-bottom: 1rem; }
.service-card-footer { padding: 0 1.5rem 1.5rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.service-card-footer .price { font-weight: 600; color: var(--text-dark); }
.service-card-footer .btn { padding: 8px 20px; }
.view-all-btn-container { text-align: center; margin-top: 3rem; }

.how-it-works { background-color: var(--light-bg); }
.how-it-works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; }
.step-icon { width: 80px; height: 80px; border-radius: 50%; background-color: #FFFBEB; color: var(--primary-yellow-darker); display: inline-flex; justify-content: center; align-items: center; font-size: 2rem; margin-bottom: 1.5rem; }
.step h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-light); }

/* Testimonial Scroller Section */
.testimonials { background-color: var(--white-color); }
.testimonial-container { position: relative; }
.testimonials-grid { display: flex; gap: 2rem; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 1rem; scrollbar-width: none; }
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonial-card { background-color: var(--light-bg); padding: 2rem; border-radius: 12px; min-width: 350px; flex-shrink: 0; }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-header img { width: 50px; height: 50px; border-radius: 50%; }
.testimonial-author h4 { font-size: 1.1rem; }
.testimonial-rating { color: var(--primary-yellow); }
.testimonial-card > p { color: var(--text-light); font-style: italic; }
.scroll-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: var(--background-white); color: var(--text-dark); border: 1px solid var(--border-color); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; z-index: 10; font-size: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.scroll-btn:hover { background-color: var(--light-bg); }
.scroll-btn.left { left: -20px; }
.scroll-btn.right { right: -20px; }

/* New Why Choose Us Section */
.why-us-extra { background-color: var(--light-bg); }
.why-us-extra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.why-us-extra-item i { font-size: 2.5rem; color: var(--primary-yellow); margin-bottom: 1rem; }
.why-us-extra-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.why-us-extra-item p { color: var(--text-light); }

.cta-section { background-color: var(--primary-yellow); color: var(--text-dark); text-align: center; padding: 4rem 0; }
.cta-section h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.cta-section p { max-width: 600px; margin: 0 auto 2rem auto; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; }

/* --- Footer --- */
.main-footer { 
    background-color: var(--primary-yellow-darker); 
    color: var(--text-dark); 
    padding: 4rem 0 2rem 0; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 3rem; 
    margin-bottom: 3rem; 
}
.footer-col h4 { 
    font-size: 1.2rem; 
    margin-bottom: 1rem; 
    font-weight: 600; 
    color: var(--text-dark); 
}
.footer-col p, .footer-col a { 
    color: var(--text-dark); 
    text-decoration: none; 
    line-height: 1.8; 
}
.footer-col a:hover { 
    color: var(--background-white); 
}
.footer-col ul { 
    list-style: none; 
}
.footer-col li { 
    margin-bottom: 0.5rem; 
}
.footer-col .working-hours span { 
    display: block; 
}
.social-links { 
    display: flex; 
    gap: 1rem; 
    margin-top: 1rem; 
}
.social-links a { 
    font-size: 1.2rem; 
}
.footer-bottom { 
    border-top: 1px solid var(--text-dark); 
    padding-top: 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    color: var(--text-dark); 
}
.footer-links a { 
    margin-left: 1.5rem; 
    text-decoration: none; 
    color: var(--text-dark); 
    transition: color 0.3s; 
}
.footer-links a:hover { 
    color: var(--background-white); 
}

.floating-help-btn { position: fixed; bottom: 2rem; right: 2rem; background-color: var(--primary-yellow); color: var(--text-dark); width: 60px; height: 60px; border-radius: 50%; border: none; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: pointer; z-index: 1000; }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    /* Make header part of the document flow on mobile */
    .main-header {
        position: static;
        background-color: var(--background-white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    /* Adjust hero padding since header is no longer overlaying it */
    .hero {
        padding-top: 5rem;
    }

    .navbar {
        flex-wrap: wrap; /* Allow items to wrap */
    }

    .nav-logo {
        order: 1; /* Keep logo first */
    }

    .hamburger-menu {
        display: block;
        order: 2; /* Move hamburger to second position */
    }

    .nav-links {
        display: none;
        flex-basis: 100%; /* Take full width to appear on a new line */
        order: 3; /* Move nav links to the last position */
        flex-direction: column;
        align-items: center;
        list-style: none;
        padding: 1rem 0 0 0; /* Add some padding on top */
        gap: 0; /* Reset gap for vertical layout */
    }

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

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    .home-services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { min-width: auto; }
    .testimonial-card { min-width: 300px; }
    .why-us-extra-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .home-services-grid { grid-template-columns: 1fr; }
    .scroll-btn.left { left: 5px; }
    .scroll-btn.right { right: 5px; }
    .why-us-extra-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .footer-links { text-align: center; }
    .footer-links a { margin: 0 0.5rem; }
}
