/**
 * Bristol Palace Hotel - Premium Stylesheet
 * Color Scheme: Dark Blue (#0a1628, #1a365d) and White with Gold (#c9a227) accents
 * Premium animations and professional design
 */

/* ==================== CSS Variables ==================== */
:root {

    /* Primary Luxury Dark Blue */
    --primary-color: #0f2a44;
    --primary-dark: #071523;
    --primary-light: #1f4a73;

    /* Premium Silver Accent (replaces gold) */
    --secondary-color: #c4c7cc;     /* luxury silver */
    --secondary-dark: #8a8f98;      /* metallic shadow */
    --secondary-light: #eceff3;     /* soft silver highlight */

    /* Base Colors */
    --white: #ffffff;
    --off-white: #f6f8fb;
    --light-gray: #e5e9ef;
    --medium-gray: #7a8594;
    --dark-gray: #2b3440;

    /* Typography Colors */
    --text-color: #1c2430;
    --text-muted: #6f7a89;

    /* Status Colors */
    --success-color: #2e9e5b;
    --danger-color: #dc3545;
    --warning-color: #f2b705;
    --info-color: #2f86c9;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows (luxury soft shadows) */
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 50px rgba(0,0,0,0.18);
    --shadow-xl: 0 24px 80px rgba(0,0,0,0.22);

    /* Border Radius (modern hotel UI) */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== Preloader ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.logo-animation {
    margin-bottom: 40px;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-animation .logo-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    font-weight: 700;
    display: block;
    letter-spacing: 3px;
}

.logo-animation .logo-text-accent {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
    letter-spacing: 3px;
}

.loading-bar {
    width: 250px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    animation: loading 2s ease-in-out forwards;
    border-radius: 4px;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ==================== Top Bar ==================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1001;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.top-bar .social-links {
    display: flex;
    gap: 15px;
}

.top-bar .social-links a {
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: var(--transition-normal);
}

.top-bar .social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.top-bar .login-link,
.top-bar .user-link {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar .login-link:hover,
.top-bar .user-link:hover {
    color: var(--secondary-color);
}

.top-bar .user-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar .logout-link {
    color: rgba(255,255,255,0.7);
}

.top-bar .logout-link:hover {
    color: var(--danger-color);
}

.top-bar .auth-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-bar .login-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    transition: var(--transition-fast);
}

.top-bar .login-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.top-bar .register-link {
    color: var(--primary-color);
    background: var(--secondary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 20px;
    transition: var(--transition-fast);
}

.top-bar .register-link:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.top-bar .auth-links {
    display: flex;
    gap: 15px;
}

.top-bar .register-link {
    color: var(--white);
    background: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.top-bar .register-link:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.top-bar .login-link {
    color: var(--white);
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.top-bar .login-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* ==================== Main Navigation ==================== */
.main-navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: var(--transition-normal);
}

.main-navbar.scrolled .navbar-wrapper {
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.navbar-brand .brand-accent {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: var(--transition-normal);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 10px 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    padding: 10px 0;
    margin-top: 15px;
    min-width: 220px;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 12px 25px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item:hover {
    background: var(--off-white);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-item i {
    color: var(--secondary-color);
    width: 18px;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.toggler-bar {
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.navbar-toggler.active .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.navbar-toggler.active .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* ==================== Hero Section ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 22, 40, 0.4) 0%, 
        rgba(10, 22, 40, 0.6) 50%,
        rgba(10, 22, 40, 0.85) 100%);
}

.hero-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 1000px;
}

.hero-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Navigation */
.hero-nav {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.hero-nav-dot:hover,
.hero-nav-dot.active {
    background: var(--secondary-color);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-arrow:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev {
    left: 40px;
}

.hero-arrow.next {
    right: 40px;
}

/* ==================== Booking Widget ==================== */
.booking-widget {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 35px 0;
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.booking-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-form label i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.booking-form .form-control,
.booking-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 15px 18px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
    height: auto;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
}

.booking-form .btn {
    padding: 18px 30px;
    font-size: 1rem;
}

/* ==================== Section Styles ==================== */
.section-padding {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 70px;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: var(--secondary-color);
}

.section-subtitle::before {
    right: 100%;
}

.section-subtitle::after {
    left: 100%;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.bg-light {
    background: var(--off-white);
}

/* ==================== About Section ==================== */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    transition: var(--transition-slow);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 65%;
    z-index: 2;
    border: 8px solid var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px 35px;
    text-align: center;
    z-index: 3;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-color);
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.about-content {
    padding-left: 50px;
}

.about-content .lead {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.7;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--off-white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: var(--primary-color);
    transform: translateX(10px);
}

.feature-item:hover i {
    background: var(--secondary-color);
    color: var(--white);
}

.feature-item:hover span {
    color: var(--white);
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

/* ==================== Rooms Section ==================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.room-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-image img {
    transform: scale(1.15);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.room-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.room-price .amount {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.room-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-content {
    padding: 30px;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.room-card:hover .room-title {
    color: var(--secondary-color);
}

.room-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-meta i {
    color: var(--secondary-color);
}

.room-description {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.room-amenities {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.room-amenities span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-amenities i {
    color: var(--primary-color);
}

.room-actions {
    display: flex;
    gap: 15px;
}

.room-actions .btn {
    flex: 1;
}

/* ==================== Amenities Section ==================== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: var(--white);
    padding: 45px 30px;
    text-align: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.25rem;
    transition: var(--transition-bounce);
    position: relative;
}

.amenity-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    transform: rotateY(360deg);
}

.amenity-card h4 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.amenity-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== Video Section ==================== */
.video-section {
    position: relative;
    height: 600px;
    background: url('../images/video-bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(26, 54, 93, 0.7) 100%);
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.video-play-btn {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 40px;
    animation: pulse 2s infinite;
    transition: var(--transition-normal);
    position: relative;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7); }
    50% { box-shadow: 0 0 0 30px rgba(201, 162, 39, 0); }
}

.video-play-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.video-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== Testimonials Section ==================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    padding: 3px;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== Gallery Section ==================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filter button {
    padding: 12px 30px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    border-radius: var(--border-radius-xl);
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-normal);
    cursor: pointer;
}

.gallery-filter button:hover,
.gallery-filter button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(10, 22, 40, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    transform: scale(0);
    transition: var(--transition-bounce);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay h5 {
    color: var(--white);
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* ==================== CTA Section ==================== */
.cta-section {
    position: relative;
    padding: 150px 0;
    background: url('../images/cta-bg.jpg') center/cover no-repeat fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 54, 93, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.35rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* ==================== Contact Section ==================== */
.contact-info {
    padding-right: 50px;
}

.contact-info .lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: var(--primary-color);
    transform: translateX(10px);
}

.contact-item:hover i {
    background: var(--secondary-color);
}

.contact-item:hover h5,
.contact-item:hover p {
    color: var(--white);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.contact-item h5 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
    transition: var(--transition-normal);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 18px;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) rotate(360deg);
}

/* ==================== Map Section ==================== */
.map-section iframe {
    filter: grayscale(30%);
    display: block;
}

/* ==================== Footer ==================== */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.footer-top {
    padding: 100px 0 60px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .brand-accent {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.footer-about {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.newsletter-form {
    margin-bottom: 35px;
}

.newsletter-form .input-group {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 18px;
    background: transparent;
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 18px 25px;
    background: var(--secondary-color);
}

.newsletter-form .btn:hover {
    background: var(--secondary-light);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

.copyright {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ==================== Back to Top ==================== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    color: var(--white);
}

/* ==================== Mobile Menu ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: var(--transition-normal);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid var(--light-gray);
    background: var(--primary-color);
}

.mobile-brand {
    display: flex;
    gap: 5px;
}

.mobile-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.mobile-brand .brand-accent {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.mobile-nav {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 25px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.mobile-nav a:hover {
    background: var(--off-white);
    color: var(--primary-color);
    padding-left: 35px;
}

.mobile-nav i {
    color: var(--secondary-color);
    width: 24px;
    font-size: 1.1rem;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== Toast ==================== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    padding: 20px 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 350px;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid;
}

.toast.success {
    border-left-color: var(--success-color);
}

.toast.error {
    border-left-color: var(--danger-color);
}

.toast.warning {
    border-left-color: var(--warning-color);
}

.toast i {
    font-size: 1.5rem;
}

.toast.success i {
    color: var(--success-color);
}

.toast.error i {
    color: var(--danger-color);
}

.toast.warning i {
    color: var(--warning-color);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== Loading Spinner ==================== */
.loading-spinner {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

.loading-spinner i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== Page Header ==================== */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background: none;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ==================== Room Detail Page ==================== */
.room-detail-gallery {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.room-detail-gallery .main-image {
    height: 500px;
    overflow: hidden;
}

.room-detail-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail-gallery .thumbnail-list {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.room-detail-gallery .thumbnail {
    width: 100px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-fast);
}

.room-detail-gallery .thumbnail.active,
.room-detail-gallery .thumbnail:hover {
    border-color: var(--secondary-color);
}

.room-detail-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail-info {
    padding-left: 40px;
}

.room-detail-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.room-detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.room-detail-price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.room-detail-price .period {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.room-detail-description {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 30px;
}

.room-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.room-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.room-features-list i {
    color: var(--secondary-color);
    width: 24px;
}

.booking-widget-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

/* ==================== Animations ==================== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(40px);
}

.animate-fade-in.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in.delay-1.visible {
    animation-delay: 0.2s;
}

.animate-fade-in.delay-2.visible {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Responsive ==================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 30px;
    }
    
    .experience-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: flex;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .hero-section {
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-arrow {
        display: none;
    }
    
    .booking-form .form-row {
        flex-wrap: wrap;
    }
    
    .booking-form .form-group {
        flex: 1 1 calc(50% - 15px);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .room-detail-info {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .hero-section {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-widget {
        position: relative;
        background: var(--white);
        padding: 30px 0;
    }
    
    .booking-form .form-group {
        flex: 1 1 100%;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        width: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .mobile-menu {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn-lg {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .room-actions {
        flex-direction: column;
    }
    
    .video-content h2 {
        font-size: 2rem;
    }
}

/* ==================== Events Section ==================== */
.events-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.event-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-date .day {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.event-image {
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-type {
    display: inline-block;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}

.event-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.event-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.event-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.empty-events {
    padding: 60px 20px;
    text-align: center;
}

.empty-events i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-events p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==================== Enhanced Animations ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 10s linear infinite;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Section Divider Animation */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 60px auto;
    width: 100px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Color */
::selection {
    background: var(--secondary-color);
    color: var(--white);
}
