/* ============================================
   HR HOTEL SAFARI & TOURS - COMPLETE STYLESHEET
   Version: 2.0
   ============================================ */

/* ============================================
   TABLE OF CONTENTS
   1. RESET & BASE
   2. TYPOGRAPHY
   3. BUTTONS
   4. HEADER & NAVIGATION
   5. HERO SECTION
   6. INTRO SECTION
   7. ROOMS
   8. AMENITIES
   9. TOURS
   10. FOOTER
   11. FLOATING BOOK NOW BUTTON
   12. BREADCRUMB
   13. RESPONSIVE
   14. ANIMATIONS
   ============================================ */

/* ============================================
   1. RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    background: #fafaf8;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title span {
    color: #b8a08c;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7a6b5e;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #b8a08c, #d4c5b8);
    margin: 0 auto 1.5rem;
}

/* ============================================
   3. BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.btn-primary:hover {
    background: #b8a08c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 160, 140, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

.btn-lg {
    padding: 18px 50px;
    font-size: 0.95rem;
}

.btn-gold {
    background: #b8a08c;
    color: #fff;
}

.btn-gold:hover {
    background: #a08a78;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 160, 140, 0.4);
}

.btn-header {
    padding: 10px 32px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    background: #b8a08c;
    color: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-header:hover {
    background: #a08a78;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 160, 140, 0.35);
}

.btn-hero {
    padding: 18px 50px;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    background: #b8a08c;
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(184, 160, 140, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-hero:hover {
    background: #a08a78;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184, 160, 140, 0.4);
}

.btn-hero-secondary {
    padding: 16px 40px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #b8a08c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.logo-text span {
    color: #b8a08c;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7a6b5e;
    display: block;
    margin-top: -2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #b8a08c;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #b8a08c;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta .btn-header {
    display: none !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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);
}

.nav-close {
    display: none;
}

/* Mobile menu book now */
.mobile-book-now {
    display: none;
}

.mobile-book-now a {
    text-align: center;
    background: #b8a08c !important;
    color: #fff !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    width: 100%;
    display: block;
}

/* ============================================
   5. HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    transform: scale(1.05);
    transition: transform 10s ease;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 160, 140, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 24px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero h1 {
    font-size: 5.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    color: #d4c5b8;
    font-style: italic;
}

.hero-content .hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-feature-icon {
    color: #b8a08c;
    font-size: 0.7rem;
}

.hero-feature-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   6. INTRO SECTION
   ============================================ */

.intro-section {
    padding: 100px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.intro-text h2 .highlight {
    color: #b8a08c;
    font-style: italic;
}

.intro-text p {
    color: #5a4f45;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #fafaf8;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #b8a08c;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #7a6b5e;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 5px;
}

/* ============================================
   7. ROOMS
   ============================================ */

.rooms-preview {
    padding: 100px 0;
    background: #fafaf8;
}

.rooms-preview .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.room-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.room-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card:hover .room-card-image img {
    transform: scale(1.05);
}

.room-card-content {
    padding: 30px;
}

.room-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.room-card-content p {
    color: #7a6b5e;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.room-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #7a6b5e;
    margin-bottom: 1.5rem;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0ece8;
}

.room-price .price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.room-price .per-night {
    font-size: 0.85rem;
    color: #7a6b5e;
    font-weight: 300;
}

/* ============================================
   8. AMENITIES
   ============================================ */

.amenities-section {
    padding: 100px 0;
    background: #fff;
}

.amenities-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.amenity-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.amenity-item:hover {
    background: #fafaf8;
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.amenity-item span:last-child {
    font-size: 0.9rem;
    color: #5a4f45;
    font-weight: 400;
}

/* ============================================
   9. TOURS
   ============================================ */

.tours-section {
    padding: 100px 0;
    background: #fafaf8;
}

.tours-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.tour-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card-content {
    padding: 30px;
}

.tour-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tour-card-content p {
    color: #7a6b5e;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f0ece8;
}

.tour-meta .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.tour-meta .price span {
    font-size: 0.85rem;
    font-weight: 300;
    color: #7a6b5e;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   10. FOOTER
   ============================================ */

.site-footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.footer-about h3 span {
    color: #b8a08c;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social a:hover {
    background: #b8a08c;
    border-color: #b8a08c;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul a:hover {
    color: #b8a08c;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FLOATING BOOK NOW BUTTON - DESKTOP VERSION
   ============================================ */

.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.floating-book-btn.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.btn-floating {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #b8a08c;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(184, 160, 140, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none !important;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.btn-floating .btn-icon {
    font-size: 1.2rem;
}

.btn-floating:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(184, 160, 140, 0.5);
    background: #a08a78;
    color: #fff !important;
}

.btn-floating:active {
    transform: translateY(0) scale(0.98);
}

/* Pulse animation */
.floating-book-btn.visible .btn-floating {
    animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(184, 160, 140, 0.4);
    }
    50% {
        box-shadow: 0 12px 50px rgba(184, 160, 140, 0.6);
    }
}

/* Hide on booking/select pages */
body.booking-page .floating-book-btn,
body.booking-page .floating-book-btn.visible {
    display: none !important;
}

/* Hide when mobile menu is open */
body.menu-open .floating-book-btn,
body.menu-open .floating-book-btn.visible {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) !important;
}

/* Desktop specific - ensure it shows */
@media (min-width: 769px) {
    .floating-book-btn {
        display: block !important;
        bottom: 30px;
        right: 30px;
    }
    
    .btn-floating {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
    
    .btn-floating .btn-icon {
        font-size: 1.3rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-floating {
        padding: 12px 22px;
        font-size: 0.8rem;
    }
    
    .btn-floating .btn-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .floating-book-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .btn-floating {
        padding: 10px 18px;
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .btn-floating .btn-icon {
        font-size: 0.9rem;
    }
}

/* Touch-friendly */
@media (hover: none) {
    .btn-floating:hover {
        transform: none !important;
        background: #b8a08c !important;
        box-shadow: 0 8px 30px rgba(184, 160, 140, 0.4) !important;
    }
    
    .btn-floating:active {
        transform: scale(0.95) !important;
        background: #a08a78 !important;
    }
}

/* ============================================
   12. BREADCRUMB
   ============================================ */

.breadcrumb-wrapper {
    background: #fafaf8;
    padding: 120px 0 20px;
    border-bottom: 1px solid #f0ece8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #7a6b5e;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #b8a08c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #8a735b;
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #d4c5b8;
    font-size: 1.1rem;
}

.breadcrumb .current {
    color: #1a1a1a;
    font-weight: 500;
}

/* ============================================
   13. RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .hero h1 { font-size: 4rem; }
    .intro-grid { gap: 50px; }
}

@media (max-width: 992px) {
    .container { padding: 0 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-features { gap: 20px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .mobile-toggle { display: flex; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        padding: 60px 25px 30px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active { right: 0; }
    
    .main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.8rem;
        color: #1a1a1a;
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px 10px;
        line-height: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        width: 100%;
        padding-top: 20px;
    }
    
    .main-nav ul li { width: 100%; }
    
    .main-nav a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #fafaf8;
    }
    
    .main-nav a::after { display: none; }
    
    .mobile-book-now {
        display: block !important;
        margin-top: 15px;
    }
    
    .mobile-book-now a {
        text-align: center;
        background: #b8a08c !important;
        color: #fff !important;
        border: none !important;
        padding: 12px !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        width: 100%;
        display: block;
    }
    
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .hero-feature-divider { display: none; }
    
    .section-title { font-size: 2rem; }
    
    .intro-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-item { padding: 20px 15px; }
    .stat-number { font-size: 2.2rem; }
    
    .room-grid { grid-template-columns: 1fr; gap: 25px; }
    .tours-grid { grid-template-columns: 1fr; gap: 25px; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-about p { max-width: 100%; margin: 0 auto; }
    .footer-social { justify-content: center; }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .breadcrumb-wrapper { padding: 100px 0 15px; }
    .breadcrumb {
        font-size: 0.8rem;
        gap: 5px;
    }
    .breadcrumb .separator { font-size: 0.9rem; }
    
    .room-card-image { height: 220px !important; }
    .room-card-content { padding: 20px !important; }
    
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-floating {
        padding: 12px 22px;
        font-size: 0.8rem;
        border-radius: 50px;
    }
    
    .btn-floating .btn-icon { font-size: 1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    
    .hero h1 { font-size: 2rem; }
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    .btn-hero {
        padding: 14px 30px !important;
        font-size: 0.85rem !important;
    }
    
    .btn-hero-secondary {
        padding: 12px 30px !important;
        font-size: 0.8rem !important;
    }
    
    .intro-stats { grid-template-columns: 1fr; }
    .stat-item { padding: 15px; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .amenity-item { padding: 20px 10px; }
    .amenity-icon { font-size: 2rem; }
    
    .main-nav {
        width: 85%;
        max-width: 280px;
        padding: 50px 20px 20px;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    .mobile-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .footer-about h3 { font-size: 1.4rem; }
    .footer-contact p { font-size: 0.85rem; }
    
    .floating-book-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .btn-floating {
        padding: 10px 18px;
        font-size: 0.75rem;
        border-radius: 50px;
        gap: 8px;
    }
    
    .btn-floating .btn-icon { font-size: 0.9rem; }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) {
    .btn:hover {
        transform: none !important;
    }
    
    .room-card:hover,
    .tour-card:hover {
        transform: none !important;
    }
    
    .gallery-item:hover img {
        transform: none !important;
    }
    
    .btn-floating:hover {
        transform: none !important;
        background: #b8a08c !important;
        box-shadow: 0 8px 30px rgba(184, 160, 140, 0.4) !important;
    }
    
    .btn-floating:active {
        transform: scale(0.95) !important;
        background: #a08a78 !important;
    }
}

/* Safe area for notch phones */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .main-nav {
        padding-top: max(60px, env(safe-area-inset-top));
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}

/* ============================================
   14. ANIMATIONS
   ============================================ */

/* Shimmer background animation */
@keyframes shimmer {
    0% { transform: rotate(0deg) scale(1); opacity: 0.5; }
    50% { opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.5; }
}

/* Sparkle animation for decorative elements */
@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Pulse glow for the badge */
@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(184, 160, 140, 0.1);
        border-color: rgba(184, 160, 140, 0.2);
    }
    50% { 
        box-shadow: 0 0 40px rgba(184, 160, 140, 0.25);
        border-color: rgba(184, 160, 140, 0.5);
    }
}

/* Pulse badge animation */
@keyframes pulseBadge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(184, 160, 140, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(184, 160, 140, 0.4);
    }
}

/* Floating particles animation */
@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.2;
    }
    25% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-40px) translateX(-5px);
        opacity: 0.2;
    }
    75% { 
        transform: translateY(-15px) translateX(15px);
        opacity: 0.35;
    }
}

/* Fade in animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.amenity-card-modern {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.amenity-card-modern:nth-child(1) { animation-delay: 0.05s; }
.amenity-card-modern:nth-child(2) { animation-delay: 0.1s; }
.amenity-card-modern:nth-child(3) { animation-delay: 0.15s; }
.amenity-card-modern:nth-child(4) { animation-delay: 0.2s; }
.amenity-card-modern:nth-child(5) { animation-delay: 0.25s; }
.amenity-card-modern:nth-child(6) { animation-delay: 0.3s; }