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

body {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    gap: 1rem;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #0066cc;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 0.5rem;
}

.header-cta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.header-cta .cta-button {
    padding: 6px 12px;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta .cta-button.primary {
    background: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
}

.header-cta .cta-button.primary:hover {
    background: #ff5252;
    border-color: #ff5252;
    transform: translateY(-1px);
}

.header-cta .cta-button.secondary {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.header-cta .cta-button.secondary:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-1px);
}

.lang-link {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    color: #0066cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.cta-button.primary:hover {
    background: #ff5252;
    border-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    min-height: auto;
}

.hero-widget .klk-aff-widget {
    width: 100%;
    max-width: 100%;
    display: block;
    min-height: 300px;
}

/* Widget Section */
.widget-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.klook-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

/* About Activity Section */
.about-activity {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.content-image {
    text-align: center;
}

.content-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Important Info Section */
.important-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.map-info p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

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

.map-info li {
    margin-bottom: 0.5rem;
    color: #666;
}

.map-info strong {
    color: #333;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.review-rating {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: white;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #e0e0e0;
}

/* Klook Widget Styles */
.klook-widget-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.klook-widget-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.klk-aff-widget {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
}

.klk-aff-widget iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        flex: none;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .header-cta {
        display: none;
    }

    .language-switcher {
        margin-right: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-widget {
        padding: 1rem;
    }
    
    .hero-widget .klk-aff-widget {
        min-height: 250px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-left {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-nav {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src] {
    opacity: 1;
}

/* Focus styles for accessibility */
.cta-button:focus,
.nav-link:focus,
.lang-link:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Additional Page Styles */
.map-interactive {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container-large {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.map-legend {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.park-map {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.theme-areas {
    padding: 80px 0;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.area-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.area-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #333;
}

.area-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.area-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.navigation-tips {
    padding: 80px 0;
    background: #f8f9fa;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* Hotel Page Styles */
.hotel-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.overview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.overview-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.room-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.room-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.room-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.room-card ul {
    list-style: none;
    padding: 0;
}

.room-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.facilities {
    padding: 80px 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.facility-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.facility-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.facility-card ul {
    list-style: none;
    padding: 0;
}

.facility-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.dining {
    padding: 80px 0;
    background: #f8f9fa;
}

.dining-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.restaurant-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.restaurant-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.restaurant-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.restaurant-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.restaurant-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.location {
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.location-info p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

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

.location-info li {
    margin-bottom: 0.5rem;
    color: #666;
}

.location-info strong {
    color: #333;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.special-offers {
    padding: 80px 0;
    background: #f8f9fa;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.offer-card.featured {
    border: 2px solid #ff6b6b;
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.discount-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
}

.discount-percent {
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.offer-card li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.offer-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

/* Rides Page Styles */
.thrill-rides, .family-rides, .water-rides {
    padding: 80px 0;
}

.thrill-rides {
    background: #f8f9fa;
}

.rides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ride-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ride-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.ride-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.ride-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.ride-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.shows-entertainment {
    padding: 80px 0;
    background: #f8f9fa;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.show-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.show-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.show-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.show-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.show-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* Discount Page Styles */
.current-offers {
    padding: 80px 0;
    background: #f8f9fa;
}

.seasonal-offers {
    padding: 80px 0;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.seasonal-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.seasonal-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.seasonal-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.seasonal-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.seasonal-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.group-discounts {
    padding: 80px 0;
    background: #f8f9fa;
}

.group-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.group-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.group-info p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.group-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #333;
}

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

.group-info li {
    margin-bottom: 0.5rem;
    color: #666;
}

.group-info strong {
    color: #333;
}

.group-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.group-form h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.group-form p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.membership-benefits {
    padding: 80px 0;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.membership-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.membership-card.featured {
    border: 2px solid #ff6b6b;
}

.membership-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.membership-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.membership-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.membership-card li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.membership-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

/* Annual Pass Page Styles */
.pass-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.pass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pass-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    text-align: center;
}

.pass-card.featured {
    border: 2px solid #ff6b6b;
}

.pass-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pass-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.pass-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.pass-validity {
    color: #666;
    margin-bottom: 1.5rem;
}

.pass-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pass-features li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.pass-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.pass-restrictions {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.pass-restrictions p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.pass-restrictions ul {
    list-style: none;
    padding: 0;
}

.pass-restrictions li {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.pass-restrictions li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.exclusive-events {
    padding: 80px 0;
    background: #f8f9fa;
}

.events-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.events-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.events-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.events-text ul {
    list-style: none;
    padding: 0;
}

.events-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.events-text strong {
    color: #333;
}

.events-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.renewal {
    padding: 80px 0;
}

.renewal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.renewal-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.renewal-info p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.renewal-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #333;
}

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

.renewal-info li {
    margin-bottom: 0.5rem;
    color: #666;
}

.renewal-info strong {
    color: #333;
}

.renewal-info ol {
    padding-left: 1.5rem;
}

.renewal-info ol li {
    margin-bottom: 0.5rem;
    color: #666;
}

.renewal-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.renewal-form h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.renewal-form p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Shop Page Styles */
.shop-overview {
    padding: 80px 0;
}

.product-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.category-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.featured-products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.product-card p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.product-features {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.product-features p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.shopping-tips {
    padding: 80px 0;
    background: #f8f9fa;
}

.online-shop {
    padding: 80px 0;
}

.online-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.online-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.online-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.online-text ul {
    list-style: none;
    padding: 0;
}

.online-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.online-cta {
    text-align: center;
}

/* Trust Pages Styles */
.about-content, .contact-content, .terms-content {
    padding: 80px 0;
}

.content-wrapper, .contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2, .contact-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #333;
}

.content-wrapper p, .contact-wrapper p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.content-wrapper ul, .contact-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-wrapper li, .contact-wrapper li {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.faq-section {
    margin-top: 2rem;
}

.faq-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #333;
}

.faq-section p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .map-container-large {
        grid-template-columns: 1fr;
    }
    
    .overview-content,
    .events-content,
    .renewal-content,
    .online-content {
        grid-template-columns: 1fr;
    }
    
    .group-content {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
