/* ==========================================
   AAHANA INN - PREMIUM HOMEPAGE STYLES
   High-Contrast Luxury Theme with Glassmorphism
   ========================================== */

:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #F2D06B;
    --primary-gold-dark: #A68624;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gold-gradient-hover: linear-gradient(135deg, #F4D03F 0%, #D4AF37 50%, #F4D03F 100%);
    
    --black: #050505;
    --charcoal: #0a0c10; 
    --dark-gray: #12141a; 
    --medium-gray: #1f2229;
    
    --gray: #64748b;
    --light-gray: #cbd5e1;
    --white: #ffffff;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
    
    --section-padding: 100px;
    --container-width: 1400px;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --shadow-md: 0 8px 30px rgba(0,0,0,0.5);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.6);
    --shadow-gold: 0 8px 25px rgba(212,175,55,0.3);
    --shadow-gold-hover: 0 12px 35px rgba(212,175,55,0.5);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--charcoal); color: var(--light-gray); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--transition-medium); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); outline: none; border: none; background: none; }
button { cursor: pointer; }

/* UTILITY CLASSES & GLASSMORPHISM */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-flex; align-items: center; gap: 12px; font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--primary-gold); margin-bottom: 15px; }
.section-badge::before, .section-badge::after { content: ''; width: 30px; height: 1px; background: var(--primary-gold); }
.section-title { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.section-description { font-size: 1.1rem; color: var(--light-gray); max-width: 600px; margin: 0 auto; }
.text-left { text-align: left; }

.glassmorphism { background: rgba(18, 20, 26, 0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(212, 175, 55, 0.15); box-shadow: var(--shadow-md); }
.image-zoom { overflow: hidden; position: relative; }
.image-zoom img { transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.image-zoom:hover img { transform: scale(1.08); }

/* PRELOADER & CURSOR */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--charcoal); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.8s ease, visibility 0.8s ease; }
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }
.preloader-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary-gold); letter-spacing: 2px; margin-top: 20px;}
.preloader-spinner { position: relative; width: 80px; height: 80px; margin: 0 auto; }
.spinner-ring { position: absolute; width: 100%; height: 100%; border: 3px solid transparent; border-top-color: var(--primary-gold); border-radius: 50%; animation: spin 1.5s linear infinite; }
.spinner-ring:nth-child(2) { width: 70%; height: 70%; top: 15%; left: 15%; border-top-color: var(--primary-gold-light); animation-duration: 1.2s; animation-direction: reverse; }
.spinner-ring:nth-child(3) { width: 40%; height: 40%; top: 30%; left: 30%; border-top-color: var(--primary-gold-dark); animation-duration: 0.9s; }
@keyframes spin { to { transform: rotate(360deg); } }

.cursor-follower, .cursor-dot { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); opacity: 0; }
.cursor-follower { width: 45px; height: 45px; border: 2px solid var(--primary-gold); transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease; }
.cursor-dot { width: 8px; height: 8px; background: var(--primary-gold); transition: background-color 0.2s ease;}
@media (hover: hover) { .cursor-follower, .cursor-dot { opacity: 1; } }

/* NAVIGATION */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: var(--transition-medium); background: linear-gradient(to bottom, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0) 100%); }
.navbar.scrolled.glass-nav { background: rgba(10, 12, 16, 0.85); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.navbar-container { max-width: 1600px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.logo-wrapper { display: flex; align-items: center; gap: 15px; }
.logo-img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--primary-gold); padding: 2px; transition: var(--transition-medium); }
.navbar-logo:hover .logo-img { transform: rotate(10deg) scale(1.05); box-shadow: var(--shadow-gold); }
.logo-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: 2px; }
.logo-tagline { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; color: var(--primary-gold); letter-spacing: 4px; text-transform: uppercase; }

.navbar-menu { display: flex; align-items: center; gap: 5px; }
.nav-link { position: relative; padding: 10px 20px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.nav-link-text { font-size: 0.9rem; font-weight: 600; color: var(--white); transition: var(--transition-medium); text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.nav-link-line { width: 0; height: 2px; background: var(--gold-gradient); transition: var(--transition-medium); border-radius: 2px; }
.nav-link:hover .nav-link-text, .nav-link.active .nav-link-text { color: var(--primary-gold); }
.nav-link:hover .nav-link-line, .nav-link.active .nav-link-line { width: 30px; }

.navbar-right { display: flex; align-items: center; gap: 15px; }
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 36px; font-weight: 700; border-radius: 50px; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; z-index: 1;}
.btn-book { display: inline-flex; align-items: center; gap: 10px; background: var(--gold-gradient); color: var(--black); padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: var(--transition-medium); box-shadow: var(--shadow-gold); }
.btn-book:hover, .btn-primary:hover, .btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-gold-hover); }
.btn-book i { transition: var(--transition-medium); }
.btn-book:hover i { transform: translateX(5px); }

/* MOBILE MENU TOGGLE */
.menu-toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; cursor: pointer; }
.menu-line { width: 30px; height: 2px; background: var(--white); transition: var(--transition-medium); }
.fullscreen-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; pointer-events: none; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease; }
.fullscreen-menu.active { pointer-events: all; opacity: 1; visibility: visible; }
.menu-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,10,10,0.98); backdrop-filter: blur(30px); transform: scaleY(0); transform-origin: top; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fullscreen-menu.active .menu-bg { transform: scaleY(1); }
.menu-container { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; padding: 40px 80px; opacity: 0; transform: translateY(50px); transition: all 0.5s ease 0.3s; }
.fullscreen-menu.active .menu-container { opacity: 1; transform: translateY(0); }
.menu-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid var(--medium-gray); }
.menu-logo { display: flex; align-items: center; gap: 15px; font-family: var(--font-display); font-size: 1.8rem; color: var(--white); font-weight: 700; letter-spacing: 2px;}
.menu-close { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--medium-gray); border-radius: 50%; transition: var(--transition-medium); cursor: pointer; position: relative;}
.menu-close:hover { background: var(--primary-gold); transform: rotate(90deg); }
.menu-close span { position: absolute; width: 20px; height: 2px; background: var(--white); }
.menu-close span:nth-child(1) { transform: rotate(45deg); }
.menu-close span:nth-child(2) { transform: rotate(-45deg); }
.menu-content { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 60px 0; }
.menu-links { display: flex; flex-direction: column; gap: 20px; text-align: center; margin-bottom: 30px;}
.menu-link { display: inline-block; color: var(--white); font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; transition: var(--transition-medium); position: relative; }
.menu-link:hover, .menu-link.active { color: var(--primary-gold); transform: translateX(10px); }
.menu-contact { text-align: center; }
.menu-contact-title { font-size: 1rem; color: var(--light-gray); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.menu-contact-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.menu-contact-email { font-size: 1rem; color: var(--primary-gold); }

/* BUTTON MAGNETIC EFFECT */
.magnetic-btn { transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease; }

/* HERO SWIPER */
.hero { position: relative; height: 100vh; min-height: 800px; display: flex; align-items: center; justify-content: center; overflow: hidden; z-index: 1; }
.parallax-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-swiper { width: 100%; height: 100%; }
.swiper-slide { width: 100%; height: 100%; }
.hero-slide-bg { width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; animation: heroPan 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.7) 100%); z-index: 2; }
@keyframes heroPan { from { transform: scale(1.0); } to { transform: scale(1.15); } }

.hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 3; pointer-events: none; }
.particle { position: absolute; width: 6px; height: 6px; background: var(--primary-gold); border-radius: 50%; opacity: 0.6; animation: particleFloat 15s infinite; }
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; } .particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; top: 30%; animation-delay: 4s; } .particle:nth-child(4) { left: 40%; top: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; top: 40%; animation-delay: 8s; }
@keyframes particleFloat { 0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.8; box-shadow: 0 0 10px var(--primary-gold); } 50% { transform: translateY(-80px) translateX(-30px) scale(0.6); opacity: 0.2; } }

.hero-content { position: relative; z-index: 4; text-align: center; padding: 0 30px; max-width: 1100px; }
.hero-badge { display: inline-flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.badge-line { width: 50px; height: 1px; background: var(--gold-gradient); }
.badge-text { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--primary-gold); }
.hero-title { margin-bottom: 30px; }
.title-line { display: block; font-family: var(--font-elegant); font-size: 2rem; font-weight: 600; color: var(--light-gray); letter-spacing: 4px; margin-bottom: 10px; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }
.title-main { display: block; font-family: var(--font-display); font-size: 6.5rem; font-weight: 800; color: #fff; text-shadow: 0 10px 30px rgba(0,0,0,0.9); }
.hero-subtitle { font-family: var(--font-script); font-size: 2.8rem; color: var(--primary-gold); margin-bottom: 40px; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }

.btn-primary { background: var(--gold-gradient); color: var(--black); }
.btn-gold { background: var(--gold-gradient); color: var(--black); box-shadow: var(--shadow-gold); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--primary-gold); color: var(--black); transform: translateY(-3px) scale(1.02); }
.btn-block { width: 100%; justify-content: center; padding: 18px; font-size: 1rem; border-radius: 10px;}

/* BOOKING WIDGET */
.booking-section { padding: 80px 0; background: var(--dark-gray); position: relative;}
.booking-form { padding: 40px; border-radius: 20px; z-index: 10; position: relative;}
.form-input { padding: 15px 20px; background: rgba(10, 12, 16, 0.8); border: 1px solid rgba(212,175,55,0.2); border-radius: 10px; color: var(--white); width: 100%; transition: var(--transition-medium); font-size: 1rem;}
.form-input:focus { border-color: var(--primary-gold); box-shadow: 0 0 15px rgba(212,175,55,0.2); outline: none;}
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-label { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--light-gray); letter-spacing: 1px; text-transform: uppercase; }
.form-label i { color: var(--primary-gold); }
.booking-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 30px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }

/* ROOMS GRID */
.rooms-section { padding: var(--section-padding) 0; background: var(--charcoal); }
.premium-rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.room-card-premium { border-radius: 16px; overflow: hidden; transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; flex-direction: column; }
.room-card-premium:hover { transform: translateY(-12px); border-color: var(--primary-gold); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15); }
.room-image { position: relative; height: 280px; width: 100%; overflow: hidden;}
.room-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-badge { position: absolute; top: 20px; left: 20px; padding: 6px 16px; border-radius: 30px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; z-index: 5; box-shadow: var(--shadow-md); color: var(--black); }
.badge-popular, .badge-premium, .badge-family { background: #FFD700; }
.room-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,10,10,0.65); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-medium); z-index: 4; }
.room-card-premium:hover .room-overlay { opacity: 1; }
.btn-white-pill { background: #ffffff; color: #000000; padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 10px 25px rgba(0,0,0,0.5); display: inline-block; cursor: pointer; }
.room-card-premium:hover .btn-white-pill { transform: translateY(0); }
.btn-white-pill:hover { transform: translateY(-3px) scale(1.05) !important; background: var(--primary-gold-light); color: var(--black);}
.room-content { padding: 35px; flex-grow: 1; display: flex; flex-direction: column; }
.room-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.room-description { font-size: 0.9rem; color: var(--light-gray); margin-bottom: 25px; line-height: 1.6; flex-grow: 1;}
.room-features { display: flex; gap: 15px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap;}
.room-features span { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--light-gray); }
.room-features i { color: var(--primary-gold); font-size: 0.9rem;}
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.btn-outline-gold { border: 1px solid var(--primary-gold); color: var(--primary-gold); padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; transition: 0.3s; cursor: pointer; display: inline-block; }
.btn-outline-gold:hover { background: var(--primary-gold); color: var(--black); }
.room-price-tag { display: flex; align-items: baseline; gap: 5px; }
.price-from { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px;}
.price-amount { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; color: var(--white); }

/* RESTAURANT TEASER */
.restaurant-section { padding: var(--section-padding) 0; background: var(--dark-gray); }
.restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery-item { border-radius: 15px; overflow: hidden; position: relative; height: 280px; }
.gallery-item.large { grid-row: span 2; height: 580px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.restaurant-features { display: grid; gap: 25px; margin-bottom: 40px; }
.restaurant-feature { display: flex; align-items: center; gap: 20px; transition: transform 0.3s ease;}
.restaurant-feature:hover { transform: translateX(10px); }
.restaurant-feature i { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(212, 175, 55, 0.1); border: 1px solid var(--primary-gold); border-radius: 50%; font-size: 1.2rem; color: var(--primary-gold); flex-shrink: 0; transition: all 0.3s ease;}
.restaurant-feature:hover i { background: var(--primary-gold); color: var(--black); box-shadow: var(--shadow-gold);}
.restaurant-feature h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 5px; }

/* SCROLLING REVIEWS (MARQUEE) */
.reviews-section { padding: var(--section-padding) 0; background: var(--charcoal); overflow: hidden; }
.marquee-wrapper { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; padding: 30px 0; }
.marquee-track { display: flex; gap: 30px; width: max-content; animation: scrollMarquee 40s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.review-card { width: 400px; padding: 40px; border-radius: 20px; display: flex; flex-direction: column; gap: 20px; transition: var(--transition-medium); flex-shrink: 0; }
.review-card:hover { border-color: var(--primary-gold); transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.review-stars i { color: var(--primary-gold); font-size: 1.1rem; }
.review-text { font-family: var(--font-elegant); font-size: 1.25rem; font-style: italic; color: var(--white); line-height: 1.7; }
.review-author { font-family: var(--font-body); font-weight: 700; color: var(--primary-gold); font-size: 0.9rem; text-align: right; margin-top: auto; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 15px)); } }

/* CONTACT / WEB3FORMS SECTION */
.contact-section { padding: var(--section-padding) 0; background: var(--dark-gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* MODERN FOOTER WITH MAP */
.modern-footer { background: #050505; position: relative; padding-top: 80px; color: var(--light-gray); }
.footer-top-accent { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold-gradient); }
.footer-main-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand-logo { display: inline-flex; align-items: center; gap: 15px; margin-bottom: 20px; transition: transform 0.3s ease;}
.footer-brand-logo:hover { transform: scale(1.05); }
.footer-brand-logo .logo-name { font-family: var(--font-display); font-size: 2rem; color: var(--white); display: block; }
.footer-bio { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }
.proprietor-info { font-size: 0.8rem; color: var(--gray); margin-bottom: 25px; }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); color: var(--white); transition: var(--transition-medium); border: 1px solid rgba(255,255,255,0.1); }
.footer-socials a:hover { background: var(--primary-gold); color: var(--black); border-color: var(--primary-gold); box-shadow: var(--shadow-gold);}

.footer-heading { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 25px; letter-spacing: 1px; }
.footer-links-list { display: flex; flex-direction: column; gap: 12px; }
.footer-links-list a { font-size: 0.95rem; transition: var(--transition-medium); }
.footer-links-list a:hover { color: var(--primary-gold); transform: translateX(5px); display: inline-block; }

.footer-contact-list { display: flex; flex-direction: column; gap: 15px; }
.glass-contact-item { display: flex; align-items: flex-start; gap: 15px; font-size: 0.9rem; line-height: 1.5; padding: 15px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease;}
.glass-contact-item:hover { background: rgba(212,175,55,0.05); border-color: rgba(212,175,55,0.3); transform: translateX(5px);}
.glass-contact-item i { color: var(--primary-gold); margin-top: 4px; font-size: 1.1rem; }

.footer-map-wrapper iframe { width: 100%; height: 200px; border-radius: 15px; filter: grayscale(50%) contrast(1.1); transition: var(--transition-medium); border: 1px solid rgba(255,255,255,0.1);}
.footer-map-wrapper iframe:hover { filter: grayscale(0%); border-color: var(--primary-gold); box-shadow: var(--shadow-gold);}

.btn-directions { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); background: var(--gold-gradient); color: var(--black); padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.6); z-index: 10; transition: var(--transition-medium); white-space: nowrap; }
.btn-directions:hover { box-shadow: var(--shadow-gold-hover); color: var(--black); }

.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 30px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a:hover { color: var(--primary-gold); }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; background: var(--gold-gradient); border-radius: 50%; color: var(--black); font-size: 1.2rem; opacity: 0; visibility: hidden; z-index: 999; border: 2px solid transparent; transition: 0.3s;}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { box-shadow: var(--shadow-gold-hover); border-color: #fff;}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .navbar-menu { display: none; }
    .menu-toggle { display: flex; }
    .premium-rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item { height: 200px; }
    .gallery-item.large { height: 420px; }
    .menu-container { padding: 40px; }
}

@media (max-width: 768px) {
    .title-main { font-size: 3.5rem; }
    .booking-grid { grid-template-columns: 1fr; }
    .premium-rooms-grid { grid-template-columns: 1fr; }
    .form-row-grid { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; gap: 15px; text-align: center; }
}