/* ============================================
   ACHEBA STAR HOTEL - DESIGN SYSTEM
   Modern, Elegant Hotel Website Styling
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
    /* Brand Colors (Premium) */
    --color-primary: #5D1A23;
    /* Deep Wine Burgundy */
    --color-primary-dark: #3A0F15;
    --color-primary-light: #8B2332;

    --color-accent: #D4AF37;
    /* Metallic Gold */
    --color-accent-light: #F4D06F;
    --color-accent-dark: #AA8C2C;

    --color-cream: #F9F7F2;
    /* Warm Off-White */
    --color-cream-dark: #EDE5D8;

    --color-dark: #1A1A1A;
    --color-dark-brown: #2C1A12;
    --color-white: #FFFFFF;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;

    /* Gradients (Premium) */
    --gradient-primary: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    --gradient-accent: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light));
    --gradient-hero: linear-gradient(to bottom, rgba(58, 15, 21, 0.4), rgba(58, 15, 21, 0.8));
    --gradient-dark: linear-gradient(to top, #000 0%, transparent 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    --gradient-gold: linear-gradient(135deg, #AA8C2C, #D4AF37, #F4D06F);
    /* Explicit definition */

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 40px rgba(212, 168, 75, 0.3);
    --shadow-burgundy: 0 10px 40px rgba(139, 35, 50, 0.2);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(10px);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-slower: 500ms ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-dark-brown);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-subtitle {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.section-subtitle::before {
    right: calc(100% + 15px);
}

.section-subtitle::after {
    left: calc(100% + 15px);
}

.section-title {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-gray-600);
    font-size: var(--text-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(212, 168, 75, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(139, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-3) 0;
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: var(--radius-md);
}

/* 
.logo-icon and .logo-text styles removed as we now use an image 
*/

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-cta {
    padding: var(--space-3) var(--space-6);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION (Premium)
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
}

.hero-bg.ken-burns img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-out infinite alternate;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(58, 15, 21, 0.7),
            /* Darker top */
            rgba(0, 0, 0, 0.4) 30%,
            rgba(58, 15, 21, 0.8)
            /* Darker bottom */
        );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    padding: 60px 40px;
    /* Increased padding for card feel */
    display: flex;
    flex-direction: column;
    align-items: center;

    /* Luxury Glass Card Effect */
    /* Luxury Glass Card Effect */
    background: rgba(0, 0, 0, 0.65);
    /* Increased opacity for maximum legibility */
    /* Darkish tint for contrast */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.star-icon {
    color: var(--color-accent);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 700;
    color: var(--color-white) !important;
    /* Force white color */
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.block-reveal {
    display: block;
    animation: textReveal 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.hero-description {
    font-size: var(--text-xl);
    max-width: 650px;
    margin-bottom: var(--space-8);
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: pulse 3s infinite;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    margin-top: var(--space-8);
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    animation: scrollDown 2s infinite;
}

/* ============================================
   ABOUT SECTION (Premium)
   ============================================ */
.about {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: var(--space-20) 0;
}

.about::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-24);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--color-white);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--gradient-accent);
    color: var(--color-dark);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.about-experience-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    display: block;
}

.about-experience-text {
    font-size: var(--text-sm);
    font-weight: 500;
}

.about-content h2 {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.about-content h2 span {
    color: var(--color-accent);
}

.about-content p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 168, 75, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: var(--text-lg);
}

.about-feature-text {
    font-weight: 500;
    color: var(--color-dark-brown);
}

/* ============================================
   ROOMS SECTION
   ============================================ */
/* ============================================
   ROOMS SECTION (Premium Rows)
   ============================================ */
.rooms {
    background: var(--color-gray-100);
}

.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-base);
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-card:nth-child(even) .room-card-image {
    order: 2;
}

.room-card-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.room-card:hover .room-card-image img {
    transform: scale(1.1);
}

.room-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.room-card-content {
    padding: var(--space-12) var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-card-title {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    font-family: var(--font-heading);
}

.room-card-description {
    color: var(--color-text-light);
    margin-bottom: var(--space-8);
    line-height: 1.8;
}

.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.room-amenity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text);
    background: var(--color-gray-100);
    padding: 6px 12px;
    border-radius: 4px;
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid var(--color-gray-200);
    padding-top: var(--space-6);
}

.room-price {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-accent-dark);
    font-family: var(--font-heading);
}

.room-price span {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-weight: 400;
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.amenities .section-subtitle {
    color: var(--color-accent);
}

.amenities .section-subtitle::before,
.amenities .section-subtitle::after {
    background: var(--color-accent);
}

.amenities .section-title {
    color: var(--color-white);
}

.amenities .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

.amenity-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.amenity-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-gold);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-5);
    background: rgba(212, 168, 75, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    color: var(--color-accent);
    transition: all var(--transition-base);
}

.amenity-card:hover .amenity-icon {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: scale(1.1);
}

.amenity-title {
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.amenity-description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--space-4);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 35, 50, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-6);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: var(--color-white);
    font-size: var(--text-lg);
    font-weight: 600;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: var(--text-xl);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.contact-info h3 {
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-6);
}

.contact-info p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    gap: var(--space-4);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: var(--text-xl);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.contact-item-content h4 {
    font-size: var(--text-base);
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.contact-item-content p {
    margin: 0;
    font-size: var(--text-sm);
}

/* ============================================
   CONTACT FORM (Premium)
   ============================================ */
.contact-form {
    background: var(--color-white);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: var(--gradient-gold);
    border-radius: 26px;
    /* slightly larger than form radius */
    opacity: 0.3;
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-8);
    font-family: var(--font-heading);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-5);
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-gray-100);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    background: var(--gradient-primary);
    letter-spacing: 1px;
    margin-top: var(--space-4);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand p {
    color: var(--color-gray-400);
    margin-top: var(--space-4);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: var(--space-2);
}

.footer-contact-item {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-contact-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span {
    color: var(--color-gray-400);
    font-size: var(--text-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: var(--text-sm);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-6);
}

.footer-bottom-links a {
    color: var(--color-gray-500);
    font-size: var(--text-sm);
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: var(--text-xl);
    cursor: pointer;
    transition: transform var(--transition-base);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

/* Animations & Keyframes */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes textReveal {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.animate-fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.animate-fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-20) var(--space-8);
        gap: var(--space-6);
        transition: right var(--transition-base);
        box-shadow: var(--shadow-2xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: calc(var(--z-fixed) + 1);
    }

    .nav-cta {
        margin-top: var(--space-4);
    }

    /* Fixed Hero for Mobile */
    .hero-content {
        padding: 30px 20px;
        /* Smaller glass card padding */
        width: 90%;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller title */
    }

    /* Fixed About for Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: 0 var(--space-4);
    }

    .about-image {
        order: -1;
        /* Image on top */
    }

    .about-image-main img {
        height: 300px;
        /* Smaller image height */
    }

    .about-image-accent {
        display: none;
        /* Hide accent image on mobile */
    }

    /* Fixed Rooms for Mobile */
    .rooms-grid {
        gap: var(--space-8);
    }

    .room-card {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    .room-card:nth-child(even) .room-card-image {
        order: 0;
        /* Reset order */
    }

    .room-card-image {
        min-height: 250px;
        height: 250px;
    }

    .room-card-content {
        padding: var(--space-6);
    }

    .room-card-title {
        font-size: 1.8rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
        background: rgba(0, 0, 0, 0.6);
        /* Darker background for legibility */
        width: 100%;
    }

    .hero-stat:not(:last-child)::after {
        display: none;
        /* Remove dividers on mobile */
    }

    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

    .section {
        padding: var(--space-12) 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .room-card-footer {
        flex-direction: column;
        gap: var(--space-4);
        align-items: flex-start;
    }

    .room-card-btn {
        width: 100%;
        text-align: center;
    }

}

/* ============================================
   LIVE CHAT WIDGET
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: var(--font-body);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: #25D366;
    /* WhatsApp Green */
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    transform-origin: bottom right;
}

.chat-box.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: #075E54;
    /* WhatsApp Dark Green */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.chat-header-info h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 2px;
}

.chat-header-info p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.chat-close {
    color: white;
    font-size: 24px;
    opacity: 0.8;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chat-close:hover {
    opacity: 1;
}

.chat-body {
    padding: 20px;
    background: #E5DDD5;
    /* WhatsApp Chat Bg */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h2v2H1V1zm4 0h2v2H5V1zm4 0h2v2H9V1zm0 4h2v2H9V5zm4 0h2v2h-2V5zm0 4h2v2h-2V9zm4 0h2v2h-2V9zm-8 4h2v2H9v-2zm-4 4h2v2H5v-2zm-4 4h2v2H1v-2zm28-4h2v2h-2v-2zm0-4h2v2h-2v-2zm0-4h2v2h-2V9zm4 0h2v2h-2V9zm4 0h2v2h-2V9zm4 0h2v2h-2V9zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2zm0 4h2v2h-2v-2z' fill='%239e9e9e' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chat-message {
    background: white;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 85%;
    position: relative;
    font-size: 14px;
    color: #111b21;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.chat-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 8px;
    height: 13px;
    background: white;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.chat-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #667781;
    margin-top: 4px;
}

.chat-footer {
    padding: 15px;
    background: #f0f2f5;
    text-align: center;
}

.chat-start-btn {
    width: 100%;
    background: #25D366;
    box-shadow: none;
    justify-content: center;
    color: white;
}

.chat-start-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-box {
        width: calc(100vw - 40px);
        bottom: 75px;
        right: 0;
    }
}