/* ============================================
   KAPADOKYA STUDIO — PREMIUM DESIGN SYSTEM
   ============================================ */

:root {
  /* Colors */
  --primary: #1A1510;
  --primary-light: #2D2820;
  --accent: #C9A96E;
  --accent-light: #E8C98A;
  --accent-dark: #A07840;
  
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --cream: #F5F0E8;
  --gray-50: #F8F6F3;
  --gray-100: #EDE9E3;
  --gray-200: #D9D2C8;
  --gray-400: #A89880;
  --gray-600: #6B5D50;
  --gray-800: #3D3228;
  --black: #1A1510;

  /* Gradients */
  --grad-dark: linear-gradient(180deg, rgba(26,21,16,0) 0%, rgba(26,21,16,0.9) 100%);
  --grad-hero: linear-gradient(135deg, rgba(26,21,16,0.6) 0%, rgba(26,21,16,0.3) 100%);
  --grad-accent: linear-gradient(135deg, #C9A96E 0%, #E8C98A 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26,21,16,0.06);
  --shadow-md: 0 8px 32px rgba(26,21,16,0.10);
  --shadow-lg: 0 24px 64px rgba(26,21,16,0.14);
  --shadow-accent: 0 8px 32px rgba(201,169,110,0.30);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.main-header.scrolled {
  background: rgba(255,255,255,0.98);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.main-header.scrolled .logo-text { color: var(--primary); }
.main-header.scrolled .nav-links a { color: var(--primary); }
.main-header.scrolled .hamburger span { background: var(--primary); }

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

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

.nav-links a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-fast);
}

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

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

.lang-switcher {
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.main-header.scrolled .lang-btn { color: var(--primary); }
.lang-btn:hover, .lang-btn.active { opacity: 1; color: var(--accent); }

.btn-booking {
  padding: 12px 24px !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active { opacity: 1; }

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-dark);
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 120px);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-prev, .slider-next {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-prev:hover, .slider-next:hover {
  background: var(--accent);
  color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-dark);
  opacity: 0.6;
}

.page-hero .hero-content {
  position: relative;
  z-index: 10;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--grad-accent);
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(201,169,110,0.40);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

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

.btn-outline-dark {
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}

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

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

.btn-white:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 20px 40px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================
   BOOKING BAR
   ============================================ */

.booking-bar {
  background: var(--primary);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: flex-end;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}

.form-group input, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--accent);
}

/* ============================================
   SECTIONS
   ============================================ */

.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 24px;
}

.section-desc {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.8;
}

.section-header {
  margin-bottom: 60px;
}

/* About Preview */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent);
  color: var(--primary);
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
}

.experience-badge .number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-list {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.feature-list i { color: var(--accent); }

/* Rooms Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

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

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

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26,21,16,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.room-card:hover .room-overlay { opacity: 1; }

.room-info { padding: 32px; }

.room-type {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.room-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.room-desc {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
}

.room-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 14px;
  opacity: 0.6;
}

.room-meta i { margin-right: 6px; color: var(--accent); }

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-100);
  padding-top: 24px;
}

.room-price .label {
  font-size: 12px;
  opacity: 0.5;
  display: block;
}

.room-price .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.room-price .night { font-size: 14px; opacity: 0.5; }

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-fast);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
}

.amenity-icon i {
  font-size: 28px;
  color: var(--accent);
}

.amenity-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* Parallax */
.parallax-section {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-content {
  position: relative;
  z-index: 10;
}

.parallax-content h2 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
}

.parallax-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}

.parallax-features i { margin-right: 8px; color: var(--accent); }

/* Experiences */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.experience-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-fast);
  border: 1px solid var(--gray-100);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.exp-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
}

.exp-icon i {
  font-size: 32px;
  color: var(--accent);
}

.experience-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
}

.exp-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-600);
}

.exp-meta .price {
  font-weight: 700;
  color: var(--accent);
}

/* Reviews */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.rating-badge {
  text-align: right;
}

.rating-badge .rating {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}

.rating-badge .out-of { font-size: 24px; opacity: 0.5; }

.rating-badge .stars { color: var(--accent); font-size: 20px; }

.reviews-slider {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

.review-card {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
}

.review-content {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.review-stars { color: var(--accent); margin-bottom: 20px; }

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i { color: var(--gray-600); }

.author-info h5 { font-weight: 700; }
.author-info span { font-size: 12px; opacity: 0.5; }

/* CTA Section */
.cta-section {
  background: var(--primary);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}

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

/* ============================================
   ROOMS LIST PAGE
   ============================================ */

.filter-section {
  padding: 40px 0;
  background: var(--off-white);
}

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

.filter-btn {
  background: transparent;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition-fast);
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active { opacity: 1; }
.filter-btn.active::after { width: 100%; }

.room-list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.room-list-item:last-child { margin-bottom: 0; }

.room-list-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 500px;
}

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

.room-list-item:hover .room-list-image img {
  transform: scale(1.05);
}

.room-list-content h2 {
  font-size: 48px;
  margin-bottom: 24px;
}

.room-type-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
  font-size: 14px;
}

.room-features i { margin-right: 8px; color: var(--accent); }

.room-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-actions .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.room-buttons {
  display: flex;
  gap: 12px;
}

/* ============================================
   ROOM DETAIL PAGE
   ============================================ */

.room-hero { height: 60vh; }

.room-type-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.room-quick-info {
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.info-item {
  text-align: center;
}

.info-item i {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.info-item span {
  font-size: 14px;
  opacity: 0.6;
}

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

.gallery-main {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.gallery-thumbs {
  display: flex;
  gap: 16px;
}

.gallery-thumbs img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.gallery-thumbs img:hover { opacity: 1; }

.room-description, .room-amenities {
  margin-bottom: 60px;
}

.room-description h2, .room-amenities h2, .room-reviews h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.amenity-item i { color: var(--accent); }

.room-reviews .reviews-header {
  margin-bottom: 32px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-item {
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-item .author h4 { font-weight: 700; }
.review-item .author span { font-size: 12px; opacity: 0.5; }
.review-item .rating { color: var(--accent); }
.review-item p { opacity: 0.8; }

/* Booking Widget */
.booking-widget {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 140px;
}

.price-header {
  margin-bottom: 32px;
}

.price-header .label {
  font-size: 14px;
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}

.price-header .amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.price-header .night { font-size: 16px; opacity: 0.5; }

.booking-widget .form-group { margin-bottom: 20px; }

.booking-widget input, .booking-widget select {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  font-family: var(--font-body);
}

.booking-widget input:focus, .booking-widget select:focus {
  border-color: var(--accent);
}

.cancellation {
  font-size: 12px;
  opacity: 0.5;
  text-align: center;
  margin-top: 16px;
}

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

.main-footer {
  background: var(--primary);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 60px;
}

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

.footer-title {
  font-size: 18px;
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 18px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-links li { margin-bottom: 12px; }
.footer-links a { opacity: 0.7; font-size: 14px; }
.footer-links a:hover { opacity: 1; color: var(--accent); }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  opacity: 0.7;
}

.footer-contact i { color: var(--accent); width: 16px; }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.5;
}

.designer a { color: var(--accent); }

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-buttons {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 56px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-fast);
}

.floating-btn.whatsapp {
  background: #25D366;
  color: white;
  width: 56px;
  padding: 0;
  font-size: 28px;
}

.floating-btn.booking {
  background: var(--accent);
  color: var(--primary);
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius-md);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lb-close { top: 20px; right: 20px; z-index: 10000; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--accent); }

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background: var(--primary);
  z-index: 9998;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav.open { right: 0; }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

.mobile-nav-links {
  flex: 1;
  padding: 24px;
}

.mobile-nav-links a {
  display: block;
  color: var(--white);
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-lang {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-lang a {
  color: var(--white);
  opacity: 0.5;
}

.mobile-lang a.active, .mobile-lang a:hover { opacity: 1; color: var(--accent); }

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.nav-open { overflow: hidden; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

@media (max-width: 1024px) {
  .booking-form { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; margin-top: 40px; }
  .reviews-track { flex-wrap: wrap; }
  .review-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  
  .booking-form { grid-template-columns: 1fr; }
  .booking-bar { margin-top: 0; border-radius: 0; }
  
  .section-padding { padding: 60px 0; }
  
  .rooms-grid { grid-template-columns: 1fr; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  
  .room-list-item { grid-template-columns: 1fr; gap: 40px; }
  .room-list-image { height: 300px; }
  .room-list-image.order-2 { order: 0; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .parallax-features { flex-direction: column; gap: 16px; }
  
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  
  .amenities-list { grid-template-columns: repeat(2, 1fr); }
  
  .floating-buttons { bottom: 20px; right: 20px; }
  .floating-btn.booking span { display: none; }
  .floating-btn.booking { width: 56px; padding: 0; }
  
  .review-card { min-width: 100%; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .experiences-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .room-features { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================
   FORM FOCUS
   ============================================ */

input:focus, select:focus, textarea:focus {
  border-color: var(--accent) !important;
  outline: none;
}

/* Order utility */
.order-2 { order: 2; }
