/* ===================================
   AUREO RESORT - Global Styles
   Luxury Beach Resort Theme
   =================================== */

/* Variables */
:root {
    --primary-white: #ffffff;
    --soft-gold: #c9a962;
    --soft-gold-light: #e8d5a3;
    --ocean-blue: #2c5f7c;
    --ocean-blue-light: #4a8ba8;
    --dark-gray: #2c2c2c;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--soft-gold);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    padding: 0 15px;
}

/* Buttons */
.btn-primary {
    background-color: var(--soft-gold);
    color: var(--primary-white);
    border: 2px solid var(--soft-gold);
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--soft-gold);
    border-color: var(--soft-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

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

.btn-secondary {
    background-color: var(--ocean-blue);
    color: var(--primary-white);
    border: 2px solid var(--ocean-blue);
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--ocean-blue);
}

/* Section Styling */
section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: var(--primary-white);
    box-shadow: var(--shadow-soft);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-white);
    letter-spacing: 2px;
}

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

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

.nav-menu li a {
    color: var(--primary-white);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

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

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-gold);
    transition: width 0.3s ease;
}

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

.nav-menu .btn-book {
    background: var(--soft-gold);
    color: var(--primary-white);
    padding: 8px 20px;
    border-radius: 0;
    font-size: 0.7rem;
}

.nav-menu .btn-book:hover {
    background: var(--soft-gold-light);
    color: var(--primary-white);
}

.nav-menu .btn-book::after {
    display: none;
}

/* Menu Close Button - Hidden on Desktop */
.menu-close-btn {
    display: none;
    font-size: 2rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 10px;
    margin-bottom: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-white);
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-close-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li a {
        color: var(--dark-gray);
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .header.scrolled .nav-menu li a {
        color: var(--dark-gray);
    }
    
    .nav-menu .btn-book {
        margin-top: 20px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(var(--overlay-dark), var(--overlay-dark)),
                url('../images/gallery/429553599_18421738864060438_7685001522006465109_n-copy.jpg') bottom/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-white);
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* ===================================
   INTRO SECTION
   =================================== */

.intro {
    background: var(--primary-white);
    text-align: center;
    padding: 100px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro h2 {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.intro p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ===================================
   ROOMS PREVIEW SECTION
   =================================== */

.rooms-preview {
    background: var(--light-gray);
    padding: 100px 0;
}

.room-card {
    background: var(--primary-white);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

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

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

.room-content {
    padding: 30px;
    text-align: center;
}

.room-content h3 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.room-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

/* ===================================
   FACILITIES SECTION
   =================================== */

.facilities {
    padding: 100px 0;
    background: var(--primary-white);
}

.facility-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.facility-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.facility-item:hover img {
    transform: scale(1.1);
}

.facility-overlay h4 {
    color: var(--primary-white);
    margin: 0;
}

/* ===================================
   SHOP PREVIEW SECTION
   =================================== */

.shop-preview {
    background: var(--light-gray);
    padding: 100px 0;
}

.product-card {
    background: var(--primary-white);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-content h4 {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-price {
    color: var(--soft-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */

.newsletter {
    background: var(--ocean-blue);
    padding: 80px 0;
    text-align: center;
    color: var(--primary-white);
}

.newsletter h2 {
    color: var(--primary-white);
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--soft-gold);
}

.checkbox-group {
    text-align: left;
    margin-bottom: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Prevent form expansion on mobile - increase font sizes */
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS Safari */
        padding: 14px 15px;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .form-select {
        font-size: 16px;
        padding: 14px 15px;
    }
    
    textarea.form-control {
        font-size: 16px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .form-control,
    .form-select {
        font-size: 16px;
        padding: 16px 15px;
        min-height: 48px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 16px;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--dark-gray);
    color: var(--primary-white);
    padding: 80px 0 30px;
}

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

.footer h4 {
    color: var(--soft-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer a:hover {
    color: var(--soft-gold);
}

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

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

.footer-links a {
    display: inline-block;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--soft-gold);
}

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

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
}

/* ===================================
   PAGE SPECIFIC STYLES
   =================================== */

/* Page Header */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(var(--overlay-dark), var(--overlay-dark)),
                url('../images/gallery/429553599_18421738864060438_7685001522006465109_n-copy.jpg') bottom/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-white);
}

.page-header h1 {
    color: var(--primary-white);
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-text {
    margin-bottom: 40px;
}

.about-image {
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Gallery Page */
.gallery-grid {
    padding: 60px 0;
}

.gallery-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    width: 100%;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(44, 95, 124, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Loading States */
.gallery-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.gallery-item.loaded img {
    opacity: 1;
}

.gallery-item.error {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.error img {
    position: relative;
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.6;
}

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

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: var(--soft-gold);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--soft-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
}

/* Hide navigation on single image */
.lightbox.single .lightbox-nav {
    display: none;
}

/* Mobile Responsive Gallery - Simplified */
@media (max-width: 768px) {
    .gallery-grid {
        padding: 40px 0;
    }
    
    .gallery-grid .container {
        padding: 0 15px;
    }
    
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Rooms Page */
.rooms-page {
    padding: 80px 0;
}

.room-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c8a97e;
    font-family: 'Playfair Display', serif;
}

.category-description {
    color: #777;
    font-size: 16px;
    margin-bottom: 40px;
}

.room-detail {
    margin-bottom: 60px;
}

.room-detail h3 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.room-detail-image {
    margin-bottom: 30px;
}

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

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

.amenities-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-list li::before {
    content: '✓';
    color: #c8a97e;
    font-weight: bold;
}

.room-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.room-buttons .btn {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.room-buttons .btn-primary {
    background: #c8a97e;
    color: #fff;
    border: none;
}

.room-buttons .btn-primary:hover {
    background: #a8895f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.4);
}

.room-buttons .btn-secondary {
    background: transparent;
    color: #c8a97e;
    border: 2px solid #c8a97e;
}

.room-buttons .btn-secondary:hover {
    background: #c8a97e;
    color: #fff;
    transform: translateY(-2px);
}

/* Villa Views */
.villa-views {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.villa-views h4 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.views-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.view-item {
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    border-left: 4px solid #c8a97e;
}

.view-item strong {
    display: block;
    color: #222;
    font-size: 16px;
    margin-bottom: 8px;
}

.view-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Room Detail Page */
.room-detail-page {
    padding: 60px 0;
}

/* Image Slider */
.image-slider {
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

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

.slide.active {
    display: block;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(200, 169, 126, 0.9);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #c8a97e;
    transform: scale(1.2);
}

/* Room Info Section */
.room-info-section {
    max-width: 1200px;
    margin: 0 auto;
}

.room-description {
    margin-bottom: 50px;
}

.room-description h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.room-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* Amenities Grid */
.room-amenities-detail {
    margin-bottom: 50px;
}

.room-amenities-detail h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.amenity-card {
    text-align: center;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.amenity-card i {
    font-size: 28px;
    color: #c8a97e;
    margin-bottom: 12px;
}

.amenity-card span {
    display: block;
    font-size: 14px;
    color: #555;
}

/* Features List */
.room-features-detail {
    margin-bottom: 50px;
}

.room-features-detail h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.features-list-detail {
    list-style: none;
    padding: 0;
}

.features-list-detail li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list-detail li i {
    color: #c8a97e;
}

.features-list-detail li:last-child {
    border-bottom: none;
}

/* Booking Sidebar Detail */
.booking-sidebar-detail {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
}

.booking-sidebar-detail h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.booking-summary-detail {
    margin-bottom: 30px;
}

.summary-item-detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item-detail:last-child {
    border-bottom: none;
}

.summary-item-detail .label {
    font-size: 14px;
    color: #888;
}

.summary-item-detail .value {
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

.btn-booking-detail {
    display: block;
    width: 100%;
    padding: 16px;
    background: #c8a97e;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.btn-booking-detail:hover {
    background: #a8895f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.4);
}

.btn-back {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #666;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.btn-back:hover {
    background: #f9f9f9;
    color: #222;
}

.booking-note-detail {
    text-align: center;
    font-size: 13px;
    color: #999;
}

/* Villa Types Section */
.villa-types-section {
    margin-bottom: 50px;
}

.villa-types-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.villa-type-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #c8a97e;
}

.villa-type-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.villa-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.villa-specs li {
    padding: 8px 0;
    font-size: 15px;
    color: #666;
    border-bottom: 1px solid #e9e9e9;
}

.villa-specs li:last-child {
    border-bottom: none;
}

.villa-specs strong {
    color: #222;
    font-weight: 600;
}

/* Core Features Section */
.core-features-section {
    margin-bottom: 50px;
}

.core-features-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

/* Detailed Amenities Section */
.detailed-amenities-section {
    margin-bottom: 50px;
}

.detailed-amenities-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.amenity-category {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.amenity-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.amenity-category.restrictions {
    border-left: 4px solid #e74c3c;
}

.amenity-category.restrictions h3 {
    color: #e74c3c;
}

.amenity-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-list-detailed li {
    padding: 8px 0;
    font-size: 15px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.amenity-list-detailed li:last-child {
    border-bottom: none;
}

/* Private Facilities Section */
.private-facilities-section {
    margin-bottom: 50px;
}

.private-facilities-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.private-facilities-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

/* Villa Summary Section */
.villa-summary-section {
    margin-bottom: 50px;
}

.villa-summary-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.summary-box {
    background: linear-gradient(135deg, #c8a97e 0%, #a8895f 100%);
    padding: 30px;
    border-radius: 8px;
    color: #fff;
}

.summary-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.summary-box strong {
    font-weight: 600;
}

.summary-box ul {
    margin-top: 15px;
}

.summary-box li {
    color: #fff;
}

.summary-box li i {
    color: #fff;
}

/* Booking Engine Section */
.booking-engine-section {
    padding: 60px 0;
    min-height: 600px;
}

/* Booking Progress Indicator */
.booking-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step-indicator.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background: #c8a97e;
    color: #fff;
}

.step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.step-indicator.active .step-label {
    color: #222;
    font-weight: 600;
}

/* Booking Steps */
.booking-step {
    display: none;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Booking Search Bar */
.booking-search-bar {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form label {
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    display: block;
}

.search-form label i {
    color: #c8a97e;
    margin-right: 5px;
}

.search-form .form-control,
.search-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: #c8a97e;
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.search-btn-container {
    margin-top: 20px;
    text-align: center;
}

.btn-search {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: #c8a97e;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #a8895f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 169, 126, 0.3);
}

/* Booking Info */
.booking-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.info-card {
    flex: 1;
    min-width: 200px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #c8a97e;
}

.info-card i {
    font-size: 24px;
    color: #c8a97e;
}

.info-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin: 0 0 5px 0;
}

.info-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Step Title */
.step-title {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/* Room Cards Booking */
.room-card-booking {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.room-card-booking:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.room-image {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(200, 169, 126, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.room-content {
    flex: 1;
    padding: 30px;
}

.room-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.room-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.room-meta span {
    font-size: 14px;
    color: #666;
}

.room-meta i {
    color: #c8a97e;
    margin-right: 5px;
}

.amenities-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenities-preview span {
    background: #f9f9f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9e9e9;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-per-night {
    font-size: 20px;
    font-weight: 600;
    color: #c8a97e;
}

.price-label {
    font-size: 13px;
    color: #999;
}

.total-price {
    text-align: right;
}

.total-label {
    font-size: 13px;
    color: #999;
    display: block;
}

.total-amount {
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

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

.room-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Guest Details Form */
.guest-details-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.guest-details-form label {
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    display: block;
}

.guest-details-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.guest-details-form .form-control:focus {
    border-color: #c8a97e;
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

/* Booking Summary */
.booking-summary {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.booking-summary h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c8a97e;
}

.sticky-summary {
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item .label {
    color: #666;
    font-size: 14px;
}

.summary-item .value {
    color: #222;
    font-weight: 600;
    font-size: 14px;
}

.summary-item.total .label {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.summary-item.total .value {
    font-size: 18px;
    font-weight: 700;
    color: #c8a97e;
}

/* Payment Form */
.payment-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.payment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    flex: 1;
    position: relative;
}

.payment-option input {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.payment-option.active label {
    background: rgba(200, 169, 126, 0.1);
    border-color: #c8a97e;
    color: #c8a97e;
}

.payment-form label {
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    display: block;
}

.payment-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.payment-form .form-control:focus {
    border-color: #c8a97e;
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    color: #4caf50;
    font-weight: 500;
    margin-top: 20px;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9e9e9;
}

/* Confirmation Container */
.confirmation-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.success-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 20px;
}

.confirmation-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.confirmation-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.booking-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9e9e9;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: #666;
    font-weight: 500;
}

.detail-row .value {
    color: #222;
    font-weight: 600;
}

.detail-row .value.total {
    font-size: 18px;
    color: #c8a97e;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.confirmation-actions p {
    color: #666;
    font-size: 14px;
}

/* Warning Modal */
.warning-content {
    text-align: center;
    padding: 20px 0;
}

.warning-icon {
    font-size: 60px;
    color: #ffc107;
    margin-bottom: 20px;
}

.warning-content h4 {
    color: #856404;
    margin-bottom: 15px;
    font-weight: 600;
}

.warning-content ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.warning-content li {
    margin-bottom: 10px;
    color: #666;
}

/* Proof of Payment Container */
.proof-payment-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.payment-pending-icon {
    font-size: 80px;
    color: #ffc107;
    margin-bottom: 20px;
}

.payment-instructions {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.payment-instructions h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.payment-instructions ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.payment-instructions li {
    margin-bottom: 10px;
    color: #666;
}

.bank-details {
    background: #fff8e1;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #ffc107;
}

.bank-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.bank-info p {
    margin-bottom: 8px;
    color: #666;
}

.bank-info strong {
    color: #222;
}

/* Payment Proof Upload */
.payment-proof-upload {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #c8a97e;
}

.payment-proof-upload h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-instruction {
    color: #666;
    margin-bottom: 20px;
}

.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #c8a97e;
    background: rgba(200, 169, 126, 0.05);
}

.upload-placeholder i {
    font-size: 48px;
    color: #c8a97e;
    margin-bottom: 15px;
}

.upload-placeholder p {
    color: #666;
    margin: 5px 0;
}

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

.upload-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.btn-upload {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 15px;
}

/* Payment Details Sections */
.payment-details {
    display: none;
}

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

.payment-details-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-details-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-info-item,
.gcash-info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9e9e9;
}

.bank-info-item:last-child,
.gcash-info-item:last-child {
    border-bottom: none;
}

.bank-label,
.gcash-label {
    font-weight: 600;
    color: #666;
}

.bank-value,
.gcash-value {
    font-weight: 600;
    color: #222;
    font-size: 16px;
}

/* Payment Screenshot Notice */
.payment-notice {
    display: flex;
    gap: 20px;
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
}

.notice-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f57c00;
    font-size: 24px;
}

.notice-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #856404;
    margin: 0 0 8px 0;
}

.notice-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Admin Dashboard Section */
.admin-dashboard-section {
    padding: 60px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.admin-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-item:hover,
.menu-item.active {
    background: rgba(200, 169, 126, 0.1);
    color: #c8a97e;
}

.admin-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.payment-details-card .card-header {
    padding: 20px 0;
    border-bottom: 2px solid #c8a97e;
    margin-bottom: 20px;
}

.payment-details-card .card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-details-card .card-body label {
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    display: block;
}

.payment-details-card .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.payment-details-card .form-control:focus {
    border-color: #c8a97e;
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.payment-details-card .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    background: #c8a97e;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.payment-details-card .btn:hover {
    background: #a8895f;
}

/* Booking Stats */
.booking-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #c8a97e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.stat-icon.pending {
    background: #ffc107;
}

.stat-icon.confirmed {
    background: #28a745;
}

.stat-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px 0;
}

.stat-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Bookings List */
.bookings-list {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9e9e9;
}

.list-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.no-bookings {
    text-align: center;
    padding: 40px;
    color: #999;
}

.bookings-table {
    width: 100%;
}

.bookings-table thead {
    background: #f9f9f9;
}

.bookings-table th {
    padding: 12px 15px;
    font-weight: 600;
    color: #222;
    font-size: 14px;
    border-bottom: 2px solid #e0e0e0;
}

.bookings-table td {
    padding: 12px 15px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.bookings-table tr:hover {
    background: #f9f9f9;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: #f57c00;
}

.status-badge.status-confirmed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.bookings-table .btn {
    margin-right: 5px;
    font-size: 12px;
    padding: 5px 10px;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner .spinner-border {
    width: 50px;
    height: 50px;
    color: #c8a97e;
}

.loading-spinner p {
    margin-top: 20px;
    color: #666;
}

/* Button Payment */
.btn-payment {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: #c8a97e;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-payment:hover {
    background: #a8895f;
}

.btn-payment:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-progress {
        gap: 10px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .room-card-booking {
        flex-direction: column;
    }
    
    .room-image {
        flex: 0 0 auto;
    }
    
    .room-image img {
        min-height: 200px;
    }
    
    .room-price {
        flex-direction: column;
        gap: 10px;
    }
    
    .room-actions {
        flex-direction: column;
    }
    
    .booking-info {
        flex-direction: column;
    }
    
    .step-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .confirmation-container {
        padding: 30px 20px;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .confirmation-title {
        font-size: 24px;
    }
    
    .sticky-summary {
        position: static;
    }
    
    /* Mobile: Prevent guest form and payment form expansion */
    .payment-form {
        padding: 20px;
    }
    
    .payment-form .form-control {
        font-size: 16px;
        padding: 14px 15px;
        min-height: 48px;
    }
    
    .payment-form label {
        font-size: 15px;
    }
    
    .payment-option label {
        font-size: 14px;
        padding: 12px 10px;
    }
    
    /* Guest details form mobile optimization */
    #guestForm .form-control {
        font-size: 16px;
        padding: 14px 15px;
    }
    
    #guestForm label {
        font-size: 15px;
    }
    
    /* Booking form mobile optimization */
    .booking-form {
        padding: 30px 20px;
    }
    
    .booking-form .form-control,
    .booking-form .form-select {
        font-size: 16px;
        padding: 14px 15px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide img {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .room-description h2,
    .room-amenities-detail h2,
    .room-features-detail h2 {
        font-size: 24px;
    }
    
    .booking-sidebar-detail {
        position: static;
        margin-top: 40px;
    }
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    margin-bottom: 40px;
}

.contact-info-section {
    margin-bottom: 40px;
}

.map-container {
    height: 400px;
    background: #eee;
    margin-top: 40px;
}

/* Events Page */
.events-page {
    padding: 80px 0;
}

.event-card {
    background: var(--primary-white);
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    overflow: hidden;
}

.event-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.event-content {
    padding: 30px;
}

/* Wellness Page */
.wellness-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #ffffff 100%);
}

.service-card {
    background: var(--primary-white);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--soft-gold);
    margin-bottom: 20px;
}

/* Booking Page */
.booking-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.booking-form {
    background: var(--primary-white);
    padding: 50px;
    box-shadow: var(--shadow-soft);
}

.date-picker {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.date-picker .form-group {
    flex: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--soft-gold);
}
