/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.top-bar {
    background: #4a90e2;
    padding: 8px 0;
}

.top-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.top-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.top-nav a:hover {
    opacity: 0.8;
}

.main-header {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.logo i {
    color: #f39c12;
    font-size: 28px;
}

.contact-btn {
    background: #4a90e2;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #357abd;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('images/spa-wellness-center.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-form h3 {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-form p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.submit-btn {
    background: #f39c12;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #e67e22;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: white;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave" x="0" y="0" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10" stroke="%23e0e0e0" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23wave)"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.amenities-section .container {
    position: relative;
    z-index: 1;
}

.amenities-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.amenities-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.amenity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenity-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.amenity-content {
    padding: 25px;
    background: #27ae60;
    color: white;
    text-align: center;
}

.amenity-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
    background: white;
}

.journey-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.journey-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journey-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.journey-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.journey-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #27ae60;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab:hover {
    background: #229954;
    transform: translateY(-2px);
}

.tab.active {
    background: #f39c12;
}

.tab i {
    font-size: 1.2rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    color: #333;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.feature-header:hover {
    background: #f8f9fa;
}

.feature-header i:first-child {
    color: #4a90e2;
    font-size: 1.5rem;
}

.feature-header h3 {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-header i:last-child {
    color: #666;
    transition: transform 0.3s ease;
}

.feature-item.active .feature-header i:last-child {
    transform: rotate(180deg);
}

.feature-content {
    padding: 0 25px 25px;
    display: none;
}

.feature-item.active .feature-content {
    display: block;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Elite Rewards Section */
.elite-rewards-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.elite-rewards-section h2 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 20px;
    font-weight: 700;
}

.elite-rewards-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rewards-btn {
    background: #27ae60;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 40px;
}

.rewards-btn:hover {
    background: #229954;
}

.rewards-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rewards-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.testimonial {
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-author .name {
    font-weight: 600;
    color: #2c3e50;
}

.testimonial-author .location {
    color: #666;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #4a90e2;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: #f39c12;
    text-align: center;
}

.disclaimer-section h2 {
    color: #d63031;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.disclaimer-section p {
    color: #2c3e50;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #f39c12;
    font-size: 28px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #4a90e2;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #95a5a6;
    font-style: italic;
}

/* Popup Styles */
.cookie-popup,
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cookie-content,
.age-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.age-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cookie-btn,
.age-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cookie-btn,
.age-btn.confirm {
    background: #27ae60;
    color: white;
}

.cookie-btn:hover,
.age-btn.confirm:hover {
    background: #229954;
}

.cookie-btn.decline,
.age-btn.deny {
    background: #e74c3c;
    color: white;
}

.cookie-btn.decline:hover,
.age-btn.deny:hover {
    background: #c0392b;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Page Header Styles */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Hero Section */
.about-hero {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Mission & Values Section */
.mission-values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Leadership Team Section */
.leadership-team {
    padding: 100px 0;
    background: white;
}

.leadership-team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.position {
    color: #4a90e2;
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Awards & Recognition Section */
.awards-recognition {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.awards-recognition h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.awards-intro {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.award-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.award-item p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: #4a90e2;
    color: white;
}

.cta-btn.primary:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.cta-btn.secondary:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #27ae60;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.2rem;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.submit-btn {
    background: #4a90e2;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #357abd;
}

.map-section {
    padding: 100px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 20px;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Policy Pages Styles */
.policy-content {
    padding: 80px 0;
    background: white;
}

.policy-intro {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border-left: 5px solid #4a90e2;
}

.policy-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-sections {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #27ae60;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.policy-section h3 {
    font-size: 1.3rem;
    color: #4a90e2;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.policy-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #e0e0e0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: #2c3e50;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #4a90e2;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-table td {
    font-size: 0.9rem;
    color: #666;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Epic Escapes Page Styles */
.room-types {
    padding: 100px 0;
    background: white;
}

.room-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.view-room-btn {
    background: white;
    color: #2c3e50;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-room-btn:hover {
    background: #4a90e2;
    color: white;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.room-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.feature i {
    color: #4a90e2;
    width: 16px;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.period {
    color: #666;
    font-size: 0.9rem;
}

.book-room-btn {
    display: inline-block;
    width: 100%;
    background: #4a90e2;
    text-decoration: none;
    color: white;
    text-align: center;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-room-btn:hover {
    background: #357abd;
}

.hotel-amenities {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hotel-amenities h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.amenity-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.amenity-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.amenity-item p {
    color: #666;
    line-height: 1.6;
}

.special-offers {
    padding: 100px 0;
    background: white;
}

.special-offers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.offer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-image {
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    padding: 30px;
}

.offer-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-details {
    margin-bottom: 25px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 10px;
}

.detail i {
    color: #27ae60;
    width: 16px;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.book-offer-btn {
    display: inline-block;
    width: 100%;
    background: #27ae60;
    text-decoration: none;
    color: white;
    text-align: center;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-offer-btn:hover {
    background: #229954;
}

.booking-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    /* Header */
    .top-nav {
        gap: 20px;
    }

    .top-nav a {
        font-size: 14px;
    }

    .logo {
        font-size: 24px;
    }

    .logo i {
        font-size: 28px;
    }

    .contact-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: none;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .amenities-grid.hotel-amenities {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    .top-nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .main-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #2c3e50;
        cursor: pointer;
        padding: 10px;
        transition: color 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        color: #4a90e2;
    }

    .mobile-menu-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-menu-toggle.active i {
        transform: rotate(90deg);
    }

    /* Mobile Navigation */
    .top-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #4a90e2;
        padding: 20px;
        z-index: 1000;
        display: none;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .top-nav.active {
        display: flex;
    }

    .top-nav a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transition: color 0.3s ease;
    }

    .top-nav a:hover {
        color: #f39c12;
    }

    .top-nav a:last-child {
        border-bottom: none;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-form {
        padding: 30px 25px;
    }

    /* Sections */
    .experience-section,
    .amenities-section,
    .journey-section,
    .why-choose-section,
    .elite-rewards-section,
    .testimonials-section,
    .about-hero,
    .mission-values,
    .leadership-team,
    .awards-recognition,
    .contact-cta,
    .room-types,
    .hotel-amenities,
    .special-offers,
    .booking-cta,
    .contact-info,
    .contact-form-section,
    .map-section,
    .faq-section,
    .policy-content {
        padding: 60px 0;
    }

    .experience-section h2,
    .amenities-section h2,
    .journey-section h2,
    .why-choose-section h2,
    .elite-rewards-section h2,
    .testimonials-section h2,
    .about-text h2,
    .mission-values h2,
    .leadership-team h2,
    .awards-recognition h2,
    .contact-cta h2,
    .room-types h2,
    .hotel-amenities h2,
    .special-offers h2,
    .booking-cta h2,
    .map-section h2,
    .faq-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    /* Grids */
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tab {
        padding: 12px 25px;
        font-size: 14px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .amenities-grid.hotel-amenities {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Page Header */
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    /* Forms */
    .contact-form-container {
        padding: 30px 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    /* Popups */
    .cookie-content,
    .age-content {
        padding: 30px 25px;
        margin: 20px;
    }

    .age-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-btn,
    .age-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .top-nav {
        gap: 10px;
    }

    .top-nav a {
        font-size: 12px;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 8px;
    }

    /* Mobile Navigation */
    .top-nav {
        padding: 15px;
        gap: 10px;
    }

    .top-nav a {
        font-size: 14px;
        padding: 8px 0;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-form {
        padding: 25px 20px;
    }

    .hero-form h3 {
        font-size: 1.3rem;
    }

    .booking-form input,
    .booking-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Sections */
    .experience-section,
    .amenities-section,
    .journey-section,
    .why-choose-section,
    .elite-rewards-section,
    .testimonials-section,
    .about-hero,
    .mission-values,
    .leadership-team,
    .awards-recognition,
    .contact-cta,
    .room-types,
    .hotel-amenities,
    .special-offers,
    .booking-cta,
    .contact-info,
    .contact-form-section,
    .map-section,
    .faq-section,
    .policy-content {
        padding: 40px 0;
    }

    .experience-section h2,
    .amenities-section h2,
    .journey-section h2,
    .why-choose-section h2,
    .elite-rewards-section h2,
    .testimonials-section h2,
    .about-text h2,
    .mission-values h2,
    .leadership-team h2,
    .awards-recognition h2,
    .contact-cta h2,
    .room-types h2,
    .hotel-amenities h2,
    .special-offers h2,
    .booking-cta h2,
    .map-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* Cards and Items */
    .amenity-card,
    .room-card,
    .offer-card,
    .value-card,
    .team-member,
    .award-item,
    .contact-card {
        margin-bottom: 20px;
    }

    .amenity-content,
    .room-content,
    .offer-content {
        padding: 20px;
    }

    .value-card,
    .team-member {
        padding: 25px 20px;
    }

    .award-item {
        padding: 20px 15px;
    }

    .contact-card {
        padding: 25px 15px;
    }

    /* Grids */
    .amenities-grid,
    .rooms-grid,
    .offers-grid,
    .values-grid,
    .team-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .amenities-grid.hotel-amenities {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Journey Tabs */
    .journey-tabs {
        gap: 10px;
    }

    .tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .tab i {
        font-size: 1rem;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* Forms */
    .contact-form-container {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    /* Buttons */
    .cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .rewards-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Popups */
    .cookie-content,
    .age-content {
        padding: 25px 20px;
        margin: 15px;
    }

    .age-content h3 {
        font-size: 1.3rem;
    }

    .age-content p {
        font-size: 1rem;
    }

    .cookie-btn,
    .age-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Policy Pages */
    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .policy-section h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .policy-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policy-section li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Cookie Table */
    .cookie-table {
        overflow-x: auto;
    }

    .cookie-table table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }

    /* Map */
    .map-container iframe {
        height: 300px;
    }

    /* Testimonials */
    .testimonial p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 5px;
    }

    /* Features Accordion */
    .feature-header {
        padding: 20px;
    }

    .feature-header h3 {
        font-size: 1.2rem;
    }

    .feature-content {
        padding: 0 20px 20px;
    }

    /* Room Features */
    .room-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature {
        font-size: 0.85rem;
    }

    /* Room Price */
    .price {
        font-size: 1.5rem;
    }

    .period {
        font-size: 0.8rem;
    }

    /* Amenity Icons */
    .amenity-icon,
    .value-icon,
    .contact-icon,
    .award-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .amenity-icon {
        margin-bottom: 20px;
    }

    .value-icon {
        margin-bottom: 20px;
    }

    .contact-icon {
        margin-bottom: 15px;
    }

    .award-icon {
        margin-bottom: 15px;
    }

    /* Member Image */
    .member-image {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    /* Member Info */
    .member-info h3 {
        font-size: 1.2rem;
    }

    .position {
        font-size: 0.9rem;
    }

    .bio {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-form {
        padding: 20px 15px;
    }

    .contact-form-container {
        padding: 20px 15px;
    }

    .cookie-content,
    .age-content {
        padding: 20px 15px;
        margin: 10px;
    }

    .policy-section {
        padding: 15px;
    }

    .amenity-content,
    .room-content,
    .offer-content {
        padding: 15px;
    }

    .value-card,
    .team-member {
        padding: 20px 15px;
    }

    .contact-card {
        padding: 20px 10px;
    }

    .award-item {
        padding: 15px 10px;
    }
}

/* Additional Styles for Beyond the Games and Gaming Floor Pages */

/* Entertainment Hero Section */
.entertainment-hero {
    padding: 100px 0;
    background: white;
}

.entertainment-content {
    max-width: 900px;
    margin: 0 auto;
}

.entertainment-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.entertainment-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Entertainment Categories */
.entertainment-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.entertainment-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.category-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.category-card p {
    color: #666;
    line-height: 1.6;
}

/* Dining Experience */
.dining-experience {
    padding: 100px 0;
    background: white;
}

.dining-experience h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.dining-content {
    max-width: 900px;
    margin: 0 auto;
}

.dining-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.dining-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.dining-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dining-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.dining-features .feature:hover {
    background: #e9ecef;
}

.dining-features .feature i {
    color: #4a90e2;
    font-size: 1.5rem;
    margin-top: 5px;
}

.dining-features .feature h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.dining-features .feature p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Wellness & Spa */
.wellness-spa {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.wellness-spa h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.wellness-content {
    max-width: 900px;
    margin: 0 auto;
}

.wellness-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.wellness-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wellness-services .service {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wellness-services .service:hover {
    transform: translateY(-5px);
}

.wellness-services .service i {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 20px;
}

.wellness-services .service h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.wellness-services .service p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gaming Hero Section */
.gaming-hero {
    padding: 100px 0;
    background: white;
}

.gaming-content {
    max-width: 900px;
    margin: 0 auto;
}

.gaming-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.gaming-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Gaming Categories */
.gaming-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.gaming-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

/* Table Games Detail */
.table-games-detail {
    padding: 100px 0;
    background: white;
}

.table-games-detail h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.table-games-content {
    max-width: 900px;
    margin: 0 auto;
}

.table-games-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.table-games-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.games-list .game {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.games-list .game:hover {
    background: #e9ecef;
}

.games-list .game i {
    color: #4a90e2;
    font-size: 1.5rem;
    margin-top: 5px;
}

.games-list .game h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.games-list .game p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Slot Machines */
.slot-machines {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.slot-machines h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.slots-content {
    max-width: 900px;
    margin: 0 auto;
}

.slots-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.slots-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.slots-features .feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slots-features .feature:hover {
    transform: translateY(-5px);
}

.slots-features .feature i {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 20px;
}

.slots-features .feature h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.slots-features .feature p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 100px 0;
    background: white;
}

.responsible-gaming h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
}

.responsible-content p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.responsible-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.responsible-features .feature {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.responsible-features .feature:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.responsible-features .feature i {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 20px;
}

.responsible-features .feature h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.responsible-features .feature p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .entertainment-hero,
    .entertainment-categories,
    .dining-experience,
    .wellness-spa,
    .cta-section,
    .gaming-hero,
    .gaming-categories,
    .table-games-detail,
    .slot-machines,
    .responsible-gaming {
        padding: 60px 0;
    }

    .entertainment-text h2,
    .entertainment-categories h2,
    .dining-experience h2,
    .wellness-spa h2,
    .cta-section h2,
    .gaming-text h2,
    .gaming-categories h2,
    .table-games-detail h2,
    .slot-machines h2,
    .responsible-gaming h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-card {
        padding: 30px;
    }

    .dining-features {
        gap: 20px;
    }

    .dining-features .feature {
        padding: 20px;
    }

    .wellness-services {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wellness-services .service {
        padding: 25px;
    }

    .games-list {
        gap: 20px;
    }

    .games-list .game {
        padding: 20px;
    }

    .slots-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slots-features .feature {
        padding: 25px;
    }

    .responsible-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .responsible-features .feature {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .entertainment-hero,
    .entertainment-categories,
    .dining-experience,
    .wellness-spa,
    .cta-section,
    .gaming-hero,
    .gaming-categories,
    .table-games-detail,
    .slot-machines,
    .responsible-gaming {
        padding: 40px 0;
    }

    .entertainment-text h2,
    .entertainment-categories h2,
    .dining-experience h2,
    .wellness-spa h2,
    .cta-section h2,
    .gaming-text h2,
    .gaming-categories h2,
    .table-games-detail h2,
    .slot-machines h2,
    .responsible-gaming h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .category-card {
        padding: 25px 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .category-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .dining-features .feature {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .dining-features .feature i {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .wellness-services .service {
        padding: 20px;
    }

    .wellness-services .service i {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .wellness-services .service h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .games-list .game {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .games-list .game i {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .slots-features .feature {
        padding: 20px;
    }

    .slots-features .feature i {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .slots-features .feature h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .responsible-features .feature {
        padding: 20px;
    }

    .responsible-features .feature i {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .responsible-features .feature h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
}

/* Thank You Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #4a90e2;
    text-decoration: none;
}

.modal-body {
    padding: 20px 40px 40px;
    text-align: center;
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 4rem;
    color: #4caf50;
    animation: bounceIn 0.6s ease-out;
}

.modal-body h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-body p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        width: 95%;
        max-width: 400px;
    }

    .modal-body {
        padding: 20px 30px 30px;
    }

    .modal-body h3 {
        font-size: 1.5rem;
    }

    .modal-body p {
        font-size: 1rem;
    }

    .success-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 25% auto;
        width: 90%;
    }

    .modal-body {
        padding: 15px 20px 25px;
    }

    .modal-body h3 {
        font-size: 1.3rem;
    }

    .modal-body p {
        font-size: 0.95rem;
    }
}
