* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.fog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.3) 70%);
    pointer-events: none;
    z-index: 1;
    animation: fog 20s ease-in-out infinite alternate;
}

@keyframes fog {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #8b0000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Nosifer', cursive;
    color: #ff6b6b;
    font-size: 1.8rem;
    text-shadow: 0 0 20px #ff6b6b;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b6b;
    text-shadow: 0 0 10px #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: 'Butcherman', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(255, 107, 107, 0.8)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #8b0000, #ff6b6b);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.hero-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff6b6b;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.play-button {
    font-size: 3rem;
    color: #ff6b6b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.2);
    text-shadow: 0 0 20px #ff6b6b;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-title {
    font-family: 'Butcherman', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

/* Features Section */
.features {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Rooms Preview */
.rooms-preview {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.room-image {
    height: 200px;
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
    position: relative;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" fill="%23666">🏥</text></svg>');
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
}

.room-image-2 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" fill="%23666">🏴‍☠️</text></svg>');
}

.room-image-3 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" fill="%23666">⏰</text></svg>');
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-link {
    background: #ff6b6b;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.room-link:hover {
    background: #ff5252;
    transform: scale(1.1);
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.difficulty {
    color: #ffd93d;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.stars {
    color: #ffd93d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.author {
    color: #ff6b6b;
    font-weight: bold;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 6rem 2rem 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-video {
        margin-top: 2rem;
    }

    .video-placeholder {
        width: 300px;
        height: 200px;
    }

    .features-grid,
    .rooms-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page Specific Styles */
.page-title {
    font-family: 'Butcherman', cursive;
    font-size: 3rem;
    text-align: center;
    margin: 6rem 0 1rem;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

/* Rooms Page Styles */
.rooms-main {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
}

.rooms-container {
    margin-bottom: 4rem;
}

.room-detail {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.room-detail:hover {
    border-color: #ff6b6b;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.room-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.room-image-large {
    height: 300px;
    border-radius: 15px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.hospital-bg {
    background: linear-gradient(135deg, #2a4a2a, #1a3a1a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="%23ff6b6b">🏥</text></svg>');
    background-blend-mode: overlay;
}

.pirate-bg {
    background: linear-gradient(135deg, #4a3a2a, #3a2a1a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="%23ffd93d">🏴‍☠️</text></svg>');
    background-blend-mode: overlay;
}

.time-bg {
    background: linear-gradient(135deg, #2a3a4a, #1a2a3a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="%236bcf7f">⏰</text></svg>');
    background-blend-mode: overlay;
}

.detective-bg {
    background: linear-gradient(135deg, #4a4a2a, #3a3a1a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="%23ff9500">🔍</text></svg>');
    background-blend-mode: overlay;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-badge.family-friendly {
    background: #6bcf7f;
}

.room-badge.new {
    background: #ffd93d;
    color: #000;
}

.room-badge.business {
    background: #4a90e2;
}

.room-meta h2 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.room-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.stat-label {
    display: block;
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.1rem;
}

.room-description {
    padding: 0 2rem 2rem;
}

.room-description h3 {
    color: #ff6b6b;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.room-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 107, 107, 0.1);
    border-top: 1px solid rgba(255, 107, 107, 0.3);
}

.book-button {
    background: linear-gradient(45deg, #8b0000, #ff6b6b);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd93d;
}

/* Comparison Table */
.comparison-section {
    margin-top: 4rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.comparison-table th {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    font-weight: bold;
}

/* Booking Page Styles */
.booking-main {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.booking-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.form-section-title {
    color: #ff6b6b;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #e0e0e0;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 2px;
    accent-color: #ff6b6b;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 107, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #8b0000, #ff6b6b);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

/* Booking Summary */
.booking-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-card,
.payment-info,
.contact-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.summary-card h3,
.payment-info h4,
.contact-info h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.summary-item.total {
    border-top: 2px solid rgba(255, 107, 107, 0.3);
    margin-top: 1rem;
    padding-top: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 107, 107, 0.3);
    margin: 1rem 0;
}

/* Booking Info Grid */
.booking-info {
    margin-top: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.info-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* About Page Styles */
.about-main {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
}

.story-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.story-content h2 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-photo {
    height: 300px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.photo-placeholder {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    margin: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Team Section */
.team-section {
    margin: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #ff6b6b;
    transform: translateY(-5px);
}

.member-photo {
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.alex-photo {
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="30" fill="%236bcf7f">👨‍💻</text></svg>');
}

.maya-photo {
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="30" fill="%23ff6b6b">👩‍🎨</text></svg>');
}

.daan-photo {
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="30" fill="%23ffd93d">👨‍🔬</text></svg>');
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    text-align: center;
}

.member-info h3 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.role {
    color: #ffd93d;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Achievements Section */
.achievements-section {
    margin: 5rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    color: #ffd93d;
    margin-bottom: 1rem;
}

/* Mission Section */
.mission-section {
    margin: 5rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission-text h3 {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.mission-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.future-vision {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.future-vision h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.future-vision ul {
    list-style: none;
    padding: 0;
}

.future-vision li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.cta-section h2 {
    color: #ff6b6b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

/* Contact Page Styles */
.contact-main {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    margin-bottom: 2rem;
}

.contact-card h2 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #ffd93d;
    display: block;
    margin-bottom: 0.5rem;
}

.directions h3 {
    color: #ff6b6b;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.day {
    color: #e0e0e0;
}

.hours {
    color: #ffd93d;
    font-weight: bold;
}

.special-hours {
    margin-top: 1.5rem;
}

.special-hours h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.contact-form-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.contact-form-card h2 {
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.terms-link {
    color: #ff6b6b;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.map-overlay {
    text-align: center;
    color: #e0e0e0;
}

.map-overlay h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.map-button {
    display: inline-block;
    background: linear-gradient(45deg, #8b0000, #ff6b6b);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.map-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.faq-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Social Section */
.social-section {
    margin: 4rem 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.social-icon {
    font-size: 1.5rem;
}

.social-text {
    font-weight: bold;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
        margin: 5rem 0 1rem;
    }

    .room-header {
        grid-template-columns: 1fr;
    }

    .room-stats {
        grid-template-columns: 1fr 1fr;
    }

    .room-actions {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .values-grid,
    .achievements-grid,
    .team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
