/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Touch optimization for mobile devices */
html {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    touch-action: manipulation;
    scroll-behavior: smooth;
}

a, button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
}

:root {
    --primary-color: #d4af37;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --accent-gold: #d4af37;
    --secondary-gold: #c9a961;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    will-change: background;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.logo img {
    max-height: 120px;
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: -10px 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 24px;
}

.logo-fallback i {
    color: var(--primary-color);
}

.logo span {
    font-weight: bold;
    letter-spacing: 2px;
}

.logo p {
    font-size: 10px;
    color: var(--gray-text);
    letter-spacing: 3px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.booking-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.booking-btn {
    will-change: transform;
}

.booking-btn:hover {
    background: var(--accent-gold);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Disable hover effects on touch devices for better performance */
@media (hover: none) and (pointer: coarse) {
    .booking-btn:hover {
        transform: none;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('images/hero-bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 150px 20px 40px;
    overflow: hidden;
}

/* Enable background-attachment fixed only on larger screens */
@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    margin-bottom: 30px;
    margin-top: -80px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
}

.hero-brand {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    background: rgba(128, 128, 128, 0.3);
    padding: 12px 30px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 25px;
    margin-top: 0px;
    line-height: 1.2;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    will-change: transform;
}

.cta-btn:hover {
    background: var(--accent-gold);
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Optimize for touch devices */
@media (hover: none) and (pointer: coarse) {
    .cta-btn:hover {
        transform: none;
    }
    
    .cta-btn:active {
        transform: scale(0.95);
    }
}

/* Cancellation Notice */
.cancellation-notice {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 2;
}

.cancellation-notice i {
    color: var(--primary-color);
    font-size: 18px;
}

.cancellation-notice span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Booking Form */
.booking-form {
    background: transparent;
    position: relative;
    z-index: 100;
    padding: 30px;
    display: flex;
    gap: 20px;
    max-width: 1200px;
    width: 90%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease 0.3s backwards;
    pointer-events: auto;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gray-text);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-text);
    padding: 12px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
    cursor: pointer;
    pointer-events: auto;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    font-size: 16px;
}

.form-group input[type="date"]::-webkit-datetime-edit {
    color: var(--light-text);
}

.form-group input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--light-text);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}

.search-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 12px 40px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s;
    align-self: flex-end;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.search-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Booking Form Bottom */
.booking-form-bottom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 25px 30px;
    max-width: 1400px;
    width: 90%;
    z-index: 100;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-end;
    pointer-events: auto;
}

.booking-form-bottom .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-form-bottom .form-group label {
    color: var(--gray-text);
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-form-bottom .form-group input,
.booking-form-bottom .form-group select {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-text);
    padding: 14px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
    cursor: pointer;
    pointer-events: auto;
}

.booking-form-bottom .form-group input:focus,
.booking-form-bottom .form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.95);
}

.booking-form-bottom .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.book-now-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 13px;
    transition: all 0.3s;
    pointer-events: auto;
    position: relative;
    z-index: 101;
    flex-shrink: 0;
}

.book-now-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Rooms Section */
.rooms-section {
    padding: 60px 0 100px;
    background: var(--darker-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 20px;
}

.section-logo {
    max-height: 60px;
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 15px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.room-card {
    background: var(--dark-bg);
    overflow: hidden;
    transition: transform 0.3s;
    will-change: transform;
    transform: translateZ(0);
}

.room-card:hover {
    transform: translate3d(0, -10px, 0);
}

/* Optimize for touch devices */
@media (hover: none) and (pointer: coarse) {
    .room-card:hover {
        transform: none;
    }
    
    .room-card:active {
        transform: scale(0.98);
    }
}

.room-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    will-change: transform;
    transform: translateZ(0);
}

.room-card:hover .room-image img {
    transform: scale3d(1.1, 1.1, 1);
}

/* Disable image scaling on touch devices for better performance */
@media (hover: none) and (pointer: coarse) {
    .room-card:hover .room-image img {
        transform: none;
    }
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    overflow-y: auto;
}

.room-overlay::-webkit-scrollbar {
    width: 8px;
}

.room-overlay::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
}

.room-overlay::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.room-overlay::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

.room-card:hover .room-overlay {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Simplify overlay transition on mobile */
@media (hover: none) and (pointer: coarse) {
    .room-overlay {
        transition: opacity 0.2s ease;
    }
}

.room-details {
    margin-bottom: 20px;
}

.room-details h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    text-align: left;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.room-features li {
    color: var(--light-text);
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-features li i {
    color: var(--primary-color);
    font-size: 12px;
}

.book-btn {
    align-self: flex-end;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--dark-bg);
    padding: 14px 35px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    will-change: transform;
}

.book-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Disable hover transform on touch devices */
@media (hover: none) and (pointer: coarse) {
    .book-btn:hover {
        transform: none;
    }
    
    .book-btn:active {
        transform: scale(0.95);
    }
}

.boobackground: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--dark-bg);
    padding: 14px 35px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    float: right
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.room-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.room-price {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.room-price .original-price {
    font-size: 20px;
    color: var(--gray-text);
    text-decoration: line-through;
    margin-right: 10px;
    display: inline-block;
}

.room-price span {
    font-size: 14px;
    color: var(--gray-text);
}

.room-rating i {
    color: var(--primary-color);
    font-size: 14px;
}

.room-rating i.far {
    color: var(--gray-text);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    will-change: transform;
}

.view-more-btn:hover {
    background: var(--accent-gold);
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Disable hover transform on touch devices */
@media (hover: none) and (pointer: coarse) {
    .view-more-btn:hover {
        transform: none;
    }
}

/* All Rooms Page */
.all-rooms-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.rooms-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.rooms-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.rooms-cta p {
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: 16px;
}

.nav-menu a.active {
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Wrapper for Click-to-Play */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.video-play-overlay p {
    color: var(--light-text);
    font-size: 16px;
    margin: 0;
    letter-spacing: 1px;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.video-play-btn i {
    font-size: 30px;
    color: var(--dark-bg);
    margin-left: 5px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.play-button.hidden {
    display: none;
}

.play-button i {
    color: var(--dark-bg);
    font-size: 24px;
    margin-left: 5px;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}

.about-text {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gray-text);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.amenity-card {
    text-align: center;
    padding: 40px;
    background: var(--dark-bg);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    will-change: transform;
    transform: translateZ(0);
}

.amenity-card:hover {
    transform: translate3d(0, -10px, 0);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Optimize for touch devices */
@media (hover: none) and (pointer: coarse) {
    .amenity-card:hover {
        transform: none;
    }
    
    .amenity-card:active {
        transform: scale(0.98);
    }
}

.amenity-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.amenity-card .amenity-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    filter: sepia(100%) saturate(500%) hue-rotate(0deg) brightness(1.2);
}

.amenity-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.amenity-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-text);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray-text);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-text);
    padding: 15px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Contact Map */
.contact-map {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.contact-map h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--darker-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 140px;
    height: 140px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-size: 24px;
}

.footer-logo span {
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-logo p {
    font-size: 10px;
    color: var(--gray-text);
    letter-spacing: 3px;
}

.footer p {
    color: var(--gray-text);
    font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: #FFF;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Gallery Page Styles */
.gallery-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-header .container {
    max-width: 900px;
}

.gallery-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.title-decoration {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gallery-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.gallery-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.gallery-intro {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.gallery-intro p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-section .section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gallery-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.gallery-section .section-header p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
}

.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: opacity 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 20px;
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: color 0.3s;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

/* Gallery Mobile Responsive */
@media (max-width: 768px) {
    .gallery-header {
        padding: 120px 0 60px;
    }

    .gallery-main-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .gallery-subtitle {
        font-size: 1.1rem;
    }

    .gallery-intro p {
        font-size: 0.95rem;
    }

    .title-decoration {
        width: 40px;
    }

    .gallery-section .section-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 1rem;
        bottom: 15px;
        padding: 10px 20px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .gallery-header {
        padding: 100px 0 50px;
    }

    .gallery-main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .gallery-intro p {
        font-size: 0.9rem;
    }

    .title-decoration {
        width: 30px;
    }

    .gallery-title-section {
        gap: 15px;
    }

    .gallery-section .section-header h2 {
        font-size: 1.7rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

/* Reservation Page Styles */
.reservation-hero {
    min-height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/roomtop.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.reservation-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.reservation-subtitle {
    color: var(--gray-text);
    font-size: 16px;
    letter-spacing: 2px;
}

.reservation-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.reservation-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reservation-info > p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.reservation-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.reservation-form-wrapper {
    background: var(--dark-bg);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.reservation-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group-full {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-half {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reservation-form label {
    color: var(--gray-text);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-text);
    padding: 15px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
}

.reservation-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    font-size: 16px;
}

.reservation-form input[type="date"]::-webkit-datetime-edit {
    color: var(--light-text);
}

.reservation-form input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--light-text);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    border-color: var(--primary-color);
}

.reservation-form select option {
    background: var(--dark-bg);
    color: var(--light-text);
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
}

.submit-reservation-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 16px;
    transition: all 0.3s;
}

.submit-reservation-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .booking-form-right {
        right: 30px;
        width: 280px;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .booking-form-right .form-group label {
        font-size: 10px;
    }
    
    .book-now-btn {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        padding: 40px;
        transition: left 0.3s ease-out;
        gap: 20px;
        will-change: left;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .booking-btn {
        display: inline-block;
        margin-top: 20px;
        min-height: 44px; /* Minimum touch target size */
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-top: 40px;
    }
    
    .hero-brand {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .booking-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-form-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 90%;
        max-width: 400px;
        margin: 30px auto 0;
        padding: 25px 20px;
    }
    
    .booking-form-bottom {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        flex-direction: column;
        width: 90%;
        margin: 30px auto 0;
        padding: 25px 20px;
    }
    
    .book-now-btn {
        width: 100%;
        min-height: 48px;
        font-size: 14px;
    }
    
    .booking-form input,
    .booking-form select {
        min-height: 48px;
        font-size: 16px;
    }
    
    .booking-form-right .form-group input,
    .booking-form-right .form-group select {
        min-height: 48px;
        font-size: 16px;
        padding: 14px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .about-content h2 {
        font-size: 24px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .book-btn {
        min-height: 48px;
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .hero {
        min-height: 70vh;
        padding: 100px 20px 40px;
    }
    
    .about-video,
    .about-image {
        height: 300px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .room-card {
        margin-bottom: 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        min-height: 48px;
        font-size: 16px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Improve touch targets for buttons */
    button,
    .btn,
    .cta-btn,
    .view-btn,
    .book-btn {
        min-height: 44px;
        padding: 12px 30px;
    }
    
    /* Better spacing for mobile */
    .section {
        padding: 60px 0;
    }
    
    /* Optimize images for mobile */
    .room-image {
        height: 250px;
    }
    
    /* Improve text readability */
    body {
        font-size: 16px;
    }
    
    p {
        line-height: 1.7;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    animation: scaleIn 0.3s ease;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.video-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-close {
        top: -35px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
        margin-top: 30px;
    }
    
    .hero-brand {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 22px;
    }
    
    .booking-form-right {
        width: 95%;
        padding: 20px 15px;
    }
    
    .book-now-btn {
        padding: 14px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Services Page Styles */
.services-page-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 36px;
    color: var(--dark-bg);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
}

.service-card > p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--light-text);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 14px;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cta-section {
    background: var(--dark-bg);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.cta-section p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
}

/* Services Hero Page */
.page-hero {
    min-height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/SERVICEBAR.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.page-hero p {
    color: var(--gray-text);
    font-size: 16px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
}

/* FAQ Hero */
.faq-hero {
    min-height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/FAQS.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
}

.faq-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.faq-hero .hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.faq-hero p {
    color: var(--gray-text);
    font-size: 16px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 32px;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category h2 i {
    font-size: 24px;
}

.faq-item {
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--light-text);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--gray-text);
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-cta p {
    color: var(--gray-text);
    margin-bottom: 30px;
    font-size: 16px;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .faq-category h2 {
        font-size: 22px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-cta {
        padding: 40px 20px;
    }
    
    .faq-cta h3 {
        font-size: 24px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn-outline {
        justify-content: center;
    }
}
