/*
 * The Tenth Suites - Luxury Hotel Template
 * Inspired by Casa Angelina, One&Only, Badrutt's Palace
 * Modern, Elegant, Immersive Design with Lighting Effects
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark: #2d2d2d;
    --gold: #c9a227;
    --gold-light: #e8d5a3;
    --gold-glow: rgba(201, 162, 39, 0.4);
    --white: #ffffff;
    --cream: #faf8f5;
    --gray: #8a8a8a;
    --gray-light: #e5e5e5;
    --success: #2d8659;
    --danger: #c44536;
    --warning: #d4a017;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glow: 0 0 80px rgba(201, 162, 39, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

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

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

ul { list-style: none; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo span {
    font-weight: 300;
    color: var(--gold);
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--gold);
}

.btn-nav {
    padding: 12px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--black);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION WITH CAROUSEL
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

/* Image Carousel */
.hero-carousel {
    position: absolute;
    inset: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

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

/* Stylish Lighting Overlay */
.hero-lighting {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Golden light beam from top left */
.hero-lighting::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    transform: rotate(-20deg);
}

/* Soft light from top right */
.hero-lighting::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    transform: rotate(15deg);
}

/* Gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.5) 80%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 3;
}

/* Decorative corner accents */
.hero-corner {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    z-index: 4;
    pointer-events: none;
}

.hero-corner.top-left {
    top: 100px;
    left: 60px;
    border-right: none;
    border-bottom: none;
}

.hero-corner.bottom-right {
    bottom: 100px;
    right: 60px;
    border-left: none;
    border-top: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 550px;
    margin-bottom: 40px;
    opacity: 0.85;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

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

/* Carousel Controls */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.carousel-arrows {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: #b8922a;
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

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

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

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

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

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

.btn-dark:hover {
    background: var(--black);
}

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

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

.btn-sm {
    padding: 10px 25px;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.section-tag {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Dark Section */
.section-dark {
    background: var(--charcoal);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

/* Section with Image Background + Lighting */
.section-image-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-image-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Decorative light spots */
.section-image-bg::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.section-image-bg > * {
    position: relative;
    z-index: 2;
}

/* ============================================
   WELCOME / INTRO SECTION
   ============================================ */
.welcome-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.03));
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-image {
    position: relative;
}

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

.welcome-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 40px;
    bottom: 40px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.welcome-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.welcome-badge span:first-child {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.welcome-badge span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-content h2 {
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 25px;
    line-height: 1.2;
}

.welcome-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.welcome-features {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid var(--gray-light);
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.welcome-feature i {
    font-size: 1.3rem;
    color: var(--gold);
}

.welcome-feature span {
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* ============================================
   ROOMS SECTION
   ============================================ */
.rooms-section {
    background: var(--white);
}

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

.room-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: var(--transition);
}

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

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

.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-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.room-name {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.room-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

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

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

.room-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-link {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.room-link:hover {
    gap: 15px;
}

/* ============================================
   AMENITIES / EXPERIENCE SECTION
   ============================================ */
.amenities-section {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative pattern overlay */
.amenities-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 30%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.amenity-card {
    text-align: center;
    padding: 50px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.amenity-card:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.amenity-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.amenity-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ============================================
   GALLERY CAROUSEL
   ============================================ */
.gallery-section {
    padding: 0;
    background: var(--black);
}

.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 33.333%;
    height: 450px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
    background: var(--cream);
    position: relative;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 15rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.7rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 35px;
}

.testimonial-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Lighting effect */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 650px;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-brand .logo {
    margin-bottom: 25px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--gold);
    font-weight: 400;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 400;
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--gray-light);
    background: var(--white);
    transition: var(--transition);
}

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

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

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 18px 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(45, 134, 89, 0.1);
    border-left: 4px solid var(--success);
    color: #1a5438;
}

.alert-danger {
    background: rgba(196, 69, 54, 0.1);
    border-left: 4px solid var(--danger);
    color: #8b2920;
}

.alert-warning {
    background: rgba(212, 160, 23, 0.1);
    border-left: 4px solid var(--warning);
    color: #8a6914;
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.card-header {
    padding: 22px 28px;
    border-bottom: 1px solid var(--gray-light);
}

.card-body {
    padding: 28px;
}

.card-footer {
    padding: 18px 28px;
    border-top: 1px solid var(--gray-light);
    background: var(--cream);
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-pending { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #cce5ff; color: #004085; }
.badge-checked_in { background: #d4edda; color: #155724; }
.badge-checked_out { background: #e2e3e5; color: #383d41; }
.badge-cancelled { background: #f8d7da; color: #721c24; }
.badge-paid { background: #d4edda; color: #155724; }
.badge-partial { background: #fff3cd; color: #856404; }
.badge-refunded { background: #f8d7da; color: #721c24; }
.badge-no_show { background: #f5c6cb; color: #721c24; }

/* ============================================
   DASHBOARD LAYOUT
   ============================================ */
.dashboard-body {
    background: var(--cream);
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 270px;
    background: var(--black);
    padding: 30px 0;
    z-index: 100;
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 25px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.sidebar-nav {
    padding: 0 15px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.nav-item:hover,
.nav-item.active {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
}

.nav-item i {
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 25px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-content {
    margin-left: 270px;
    min-height: 100vh;
}

.content-header {
    background: var(--white);
    padding: 22px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 50;
}

.content-header h1 {
    font-size: 1.4rem;
    color: var(--charcoal);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--charcoal);
}

.content-body {
    padding: 35px;
}

/* ============================================
   TABLES
   ============================================ */
.table-container {
    background: var(--white);
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--cream);
}

th {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

td {
    padding: 18px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.9rem;
}

tr:hover td {
    background: rgba(250, 248, 245, 0.5);
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.stat-card {
    background: var(--white);
    padding: 28px;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.2;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    font-size: 0.9rem;
    border: 1px solid var(--gray-light);
    background: var(--white);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination .active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 22px 28px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--gray);
}

.modal-body {
    padding: 28px;
}

/* ============================================
   BOOKING DETAILS
   ============================================ */
.booking-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 25px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.detail-info label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 4px;
}

.detail-info span {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* ============================================
   INFO BOX
   ============================================ */
.info-box {
    background: rgba(201, 162, 39, 0.08);
    border-left: 4px solid var(--gold);
    padding: 22px;
    margin: 22px 0;
}

.info-box h4 {
    color: var(--charcoal);
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.info-box p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-muted { color: var(--gray); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1200px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .header { padding: 20px 30px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    
    .welcome-grid { grid-template-columns: 1fr; gap: 50px; }
    .welcome-content { order: -1; }
    
    .gallery-item { flex: 0 0 50%; }
    
    .sidebar { transform: translateX(-100%); transition: var(--transition); }
    .sidebar.active { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .sidebar-toggle { display: block; }
    
    .container { padding: 0 30px; }
    section { padding: 80px 0; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 280px; }
    .hero-corner { display: none; }
    .scroll-indicator { display: none; }
    .carousel-arrows { display: none; }
    
    .rooms-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .gallery-item { flex: 0 0 100%; height: 300px; }
    
    .testimonial-text { font-size: 1.3rem; }
    .cta-content h2 { font-size: 2rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .booking-details { grid-template-columns: 1fr; }
    .content-body { padding: 20px; }
}

/* ============================================
   PAGE-SPECIFIC: LOGIN/REGISTER
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-image {
    position: relative;
    background-size: cover;
    background-position: center;
}

.auth-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.auth-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at left, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
}

.auth-image-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: var(--white);
}

.auth-image-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.auth-image-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 400px;
}

.auth-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--white);
}

.auth-form-container {
    width: 100%;
    max-width: 420px;
}

.auth-form-container .logo {
    color: var(--charcoal);
    margin-bottom: 40px;
    text-align: center;
}

.auth-form-container h1 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    text-align: center;
}

.auth-form-container > p {
    color: var(--gray);
    text-align: center;
    margin-bottom: 35px;
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.auth-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}

.auth-tab.active,
.auth-tab:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

@media (max-width: 992px) {
    .auth-page { grid-template-columns: 1fr; }
    .auth-image { display: none; }
}

/* ============================================
   PAGE-SPECIFIC: BOOKING
   ============================================ */
.booking-page-hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.booking-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.booking-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: radial-gradient(ellipse at bottom, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
}

.booking-page-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: var(--white);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.preloader-logo span {
    color: var(--gold);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--gold);
    animation: preload 1.5s ease-in-out infinite;
}

@keyframes preload {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}
