/* ========================================
   ETHEREAL HAVEN - PREMIUM HOTEL THEME
   ======================================== */

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #c9a961;
    --primary-dark: #a68a4d;
    --primary-light: #e4d5a7;
    --secondary-color: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    background: var(--bg-white);
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.align-center {
    align-items: center;
}

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

.mt-5 {
    margin-top: 3rem;
}

.section-padding {
    padding: 100px 0;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-subtitle {
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-description-center {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--text-white);
    color: var(--text-dark);
}

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

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--text-white);
}

.btn-white {
    background: var(--text-white);
    color: var(--text-dark);
}

.btn-white:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-book {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 28px;
}

.btn-search {
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px; /* increase header height */
}

}



 


.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
}

.header.scrolled .logo a {
    color: var(--text-dark);
}

.logo-icon {
    font-size: 28px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
}

.nav-menu > li {
    position: relative;
    list-style: none;
}

.nav-menu a {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.header.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-menu .dropdown > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: white;
    min-width: 220px;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--text-dark) !important;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
    padding-left: 30px;
}

.header.scrolled .dropdown-menu a {
    color: var(--text-dark) !important;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-fast);
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 90vh;
    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 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--text-white);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ========================================
   QUICK BOOKING WIDGET
   ======================================== */
.quick-booking {
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.booking-widget {
    background: var(--bg-white);
    border-radius: 2px;
    box-shadow: var(--shadow-xl);
    padding: 40px;
}

.booking-form-inline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: end;
}

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

.booking-form-inline label {
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000000 !important;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.booking-form-inline label i {
    color: #000000 !important;
}

.booking-form-inline input,
.booking-form-inline select {
    height: 50px;
    padding: 0 16px;
    border: 2px solid var(--border-color);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition-fast);
    background: var(--bg-white);
    color: var(--text-dark);
}

.booking-form-inline input:focus,
.booking-form-inline select:focus {
    outline: none;
    border-color: var(--primary-color);
}



.btn-search {
    height: 50px;
    min-height: 50px;
    padding: 0 20px;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;


}

/* ========================================
   ROOM GALLERY SLIDER
   ======================================== */
.room-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.gallery-prev,
.gallery-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-dark);
    font-size: 18px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid var(--bg-white);
}

.gallery-dot.active {
    background: var(--primary-color);
    width: 12px;
    height: 12px;
}

/* ========================================
   WELCOME SECTION
   ======================================== */
.welcome-image {
    position: relative;
    overflow: hidden;
}

.welcome-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.welcome-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.badge-icon {
    font-size: 24px;
}

.welcome-content {
    padding-left: 60px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ========================================
   ROOMS SECTION
   ======================================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

.room-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    position: relative;
}

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

.room-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    font-weight: 600;
}

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

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

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

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-content {
    padding: 30px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.room-title {
    font-family: var(--font-secondary);
    font-size: 28px;
    color: var(--text-dark);
}

.room-price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.room-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.room-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

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

/* ========================================
   AMENITIES SECTION
   ======================================== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.amenity-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.amenity-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.amenity-card:hover .amenity-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.amenity-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.amenity-card:hover .amenity-icon i {
    color: var(--text-white);
}

.amenity-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.amenity-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    text-align: center;
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 18px;
    margin: 0 3px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-prev,
.testimonial-next {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-white);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

/* ========================================
   OFFERS SECTION
   ======================================== */
/*.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}
*/
.offer-card {
    background: var(--bg-white);
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
/* ===========================
   Offers Grid Layout
=========================== */

.offers-grid {
    display: grid;
    gap: 30px;
}

/* Desktop – 4 cards */
@media (min-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet – 2 cards */
@media (min-width: 768px) and (max-width: 1199px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile – 1 card */
@media (max-width: 767px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}


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

.offer-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.offer-content {
    padding: 35px;
}

.offer-title {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.offer-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.old-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.new-price {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-white);
}

.footer-title {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px;
    animation: modalSlideIn 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.booking-modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

/* ========================================
   BOOKING STEPS
   ======================================== */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.step-text {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.step-line {
    width: 100px;
    height: 2px;
    background: var(--border-color);
    margin: 0 20px;
}

/* ========================================
   BOOKING FORM
   ======================================== */
.booking-form .form-step {
    display: none;
}

.booking-form .form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000 !important;
    margin-bottom: 10px;
}

/* Ensure all labels and label icons are black */
label,
label i,
.form-group label,
.form-group label i,
.booking-form-inline label,
.booking-form-inline label i,
.booking-modal label,
.booking-modal label i {
    color: #000000 !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-fast);
    background: var(--bg-white);
    color: #000000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

/* Checkbox label text styling */
.form-group label span {
    color: #000000 !important;
    font-size: 13px;
    line-height: 1.6;
}

.form-group label span a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-group label span a:hover {
    color: var(--primary-dark);
}

/* ========================================
   TOM SELECT CUSTOM STYLES
   ======================================== */
.ts-wrapper .ts-control {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-fast);
    background: var(--bg-white);
    color: #000000;
    min-height: 50px;
}

.ts-wrapper.single .ts-control {
    padding: 14px 18px;
}

.ts-wrapper .ts-control:focus,
.ts-wrapper.focus .ts-control {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

.ts-dropdown {
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-family: var(--font-primary);
    margin-top: 2px;
}

.ts-dropdown .option {
    padding: 12px 18px;
    color: #000000;
}

.ts-dropdown .option.active {
    background: var(--bg-light);
    color: #000000;
}

.ts-dropdown .option:hover {
    background: var(--primary-light);
    color: var(--text-dark);
}

.ts-wrapper .ts-control .item {
    color: #000000;
}

.ts-wrapper.single .ts-control::after {
    border-color: #000000 transparent transparent transparent;
}

/* ========================================
   BOOKING SUMMARY
   ======================================== */
.booking-summary {
    background: var(--bg-light);
    padding: 30px;
    margin: 30px 0;
}

.booking-summary h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    border-top: 2px solid var(--text-dark);
    border-bottom: none;
    margin-top: 15px;
    padding-top: 20px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

/* ========================================
   PAYMENT OPTIONS
   ======================================== */
.payment-options {
    margin-bottom: 30px;
}

.payment-options h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.payment-option {
    position: relative;
    margin-bottom: 20px;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option label {
    display: block;
    padding: 25px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.payment-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.option-header i {
    color: var(--primary-color);
    font-size: 24px;
}

.payment-option p {
    color: var(--text-light);
    margin: 0;
    padding-left: 39px;
}

.card-details {
    margin-top: 30px;
    padding: 30px;
    background: var(--bg-light);
    display: none;
}

.card-details.active {
    display: block;
}

/* ========================================
   FINAL SUMMARY
   ======================================== */
.final-summary {
    background: var(--bg-light);
    padding: 30px;
    margin-bottom: 30px;
}

.final-summary h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.summary-details p {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-details p.total-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 2px solid var(--text-dark);
    border-bottom: none;
    margin-top: 15px;
    padding-top: 20px;
}

/* ========================================
   FORM ACTIONS
   ======================================== */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
    min-height: 50px;
}

/* Make outline button visible in modal */
.modal-content .form-actions .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.modal-content .form-actions .btn-outline:hover {
    background: var(--text-dark);
    color: var(--text-white);
}

/* ========================================
   SUCCESS MODAL
   ======================================== */
.modal-success {
    text-align: center;
    padding: 60px 50px;
    max-width: 600px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 50px;
    color: var(--text-white);
}

.modal-success h2 {
    font-family: var(--font-secondary);
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.modal-success p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.confirmation-number {
    font-size: 18px;
    color: var(--text-dark);
}

.confirmation-message {
    margin-bottom: 30px;
}

/* ========================================
   FLATPICKR CUSTOMIZATION
   ======================================== */
.flatpickr-calendar {
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-light);
}

.flatpickr-day.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.flatpickr-day:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.flatpickr-current-month {
    font-size: 120%;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--primary-color);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 100px 40px;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: var(--text-dark);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .welcome-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========================================
   ROOM GALLERY SLIDER
   ======================================== */
.room-gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.room-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-gallery-slide.active {
    opacity: 1;
    position: relative;
}

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

.room-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0;
}

.room-card:hover .room-gallery-nav {
    opacity: 1;
}

.room-gallery-nav:hover {
    background: var(--primary-color);
    color: white;
}

.room-gallery-nav.prev {
    left: 10px;
}

.room-gallery-nav.next {
    right: 10px;
}

.room-gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.room-gallery-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-gallery-indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Logo Adjustments */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.logo-sub {
    display: none;
}

/* Form Field Improvements */
.quick-booking input,
.quick-booking select,
.form-group input,
.form-group select,
.form-group textarea {
    height: 50px;
    padding: 14px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.15);
    color: #000000 !important;
    font-size: 0.95rem;
    border-radius: 0;
}

.form-group textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.quick-booking label,
.form-group label {
    color: var(--black) !important;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.booking-modal label {
    color: var(--text-dark) !important;
}

.quick-booking input::placeholder,
.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/* Quick Booking Form Equal Heights */
.quick-booking-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: end;
}

.quick-booking .btn {
    height: 50px;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
     margin-top: 0 !important;
    margin-bottom: 0;
    align-self: center;


}

/* Mobile */
@media (max-width: 768px) {
    .booking-form-inline {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form-inline .form-group {
        width: 100%;
    }
    
    .btn-search {
        width: 100%;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .booking-form-inline {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid,
    .amenities-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 32px;
    }
    
    .booking-steps {
        flex-wrap: wrap;
    }
    
    .step-line {
        display: none;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    /* MOBILE MENU FIXES - Hide Book Now only in header */
    .header .nav-actions .btn-book {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        position: relative;
    }
    
    .menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: #fff;
        margin: 4px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .header.scrolled .menu-toggle span {
        background: var(--text-dark);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px 20px;
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 10px;
        font-size: 18px;
        color: #ffffff !important;
    }
    
    .nav-menu a:hover {
        background: rgba(201, 169, 97, 0.2);
        color: var(--primary-color) !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .room-title,
    .amenity-title {
        font-size: 22px;
    }
}


/* Logo size */
.navbar .logo img{
  height: 40px;
  width: auto;
  display: block;
}

/* ✅ Show only ONE logo at a time */
.header .logo .logo-dark{
  display: none !important;
}

.header.scrolled .logo .logo-light{
  display: none !important;
}

.header.scrolled .logo .logo-dark{
  display: block !important;
}
