/* 
   KUBANI INN - Luxury Hotel Web Application Styling
   Design Aesthetics: Premium, Glassmorphism, Cinematic Overlays, Dynamic Floating Animations, Responsive Grids.
*/

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

/* --- CUSTOM VARIABLES --- */
:root {
  --primary: #0A2540;       /* Deep Royal Blue */
  --primary-rgb: 10, 37, 64;
  --secondary: #D4AF37;     /* Luxury Gold */
  --secondary-rgb: 212, 175, 55;
  --accent: #FAF9F6;        /* Warm White */
  --dark: #121212;          /* Charcoal Black */
  --dark-rgb: 18, 18, 18;
  --highlight: #0FA958;     /* Emerald Green */
  --muted-text: #a0aec0;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --border-radius: 12px;
  --container-width: 1200px;
}

/* --- BASE & SYSTEM STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark);
  color: var(--accent);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Selection */
::selection {
  background-color: var(--secondary);
  color: var(--dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 2px solid var(--dark);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

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

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

button, .btn {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

/* --- REUSABLE COMPONENTS --- */

/* Section Layouts */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

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

.section-subtitle {
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
  margin: 8px auto 0;
}

.section-title {
  font-size: 2.8rem;
  color: var(--accent);
  position: relative;
  margin-top: 10px;
}

/* Buttons Styling */
.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #a88523 100%);
  color: var(--dark);
  padding: 15px 35px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7d056 0%, var(--secondary) 100%);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 14px 34px;
  border-radius: 4px;
  background: transparent;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.btn-link {
  color: var(--accent);
  position: relative;
  padding-bottom: 5px;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--secondary);
}

.btn-link:hover::after {
  width: 100%;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(10, 37, 64, 0.25);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(10, 37, 64, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Overlay Utility */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 19, 33, 0.7) 0%, rgba(18, 18, 18, 0.9) 100%);
  z-index: 1;
}

/* --- NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 15px 0;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  padding: 5px 0;
}

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

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

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

.nav-links a.active {
  color: var(--secondary);
}

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

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

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}


/* --- HERO SECTION --- */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 19, 33, 0.8) 0%, rgba(18, 18, 18, 0.7) 50%, rgba(18, 18, 18, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 80px;
}

.hero-text {
  max-width: 800px;
  margin-bottom: 50px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--accent);
}

.hero-text h1 span {
  color: var(--secondary);
  display: block;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--muted-text);
  max-width: 600px;
  margin-bottom: 35px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Floating Statistics */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 3;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  animation: floating 6s ease-in-out infinite;
}

.stat-item:nth-child(2) {
  animation-delay: 1.5s;
}
.stat-item:nth-child(3) {
  animation-delay: 3s;
}
.stat-item:nth-child(4) {
  animation-delay: 4.5s;
}

.stat-item:hover {
  background: rgba(10, 37, 64, 0.4);
  border-color: var(--secondary);
  transform: translateY(-10px);
}

.stat-icon {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.stat-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-text);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-down:hover {
  color: var(--secondary);
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--muted-text);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
}

.scroll-down:hover .mouse {
  border-color: var(--secondary);
}

.mouse::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 2s infinite;
}


/* --- ABOUT KUBANI INN --- */
#about {
  background: radial-gradient(circle at 10% 20%, rgba(10, 37, 64, 0.15) 0%, transparent 50%);
}

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

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 550px;
}

.about-img-large {
  grid-column: 1 / 10;
  grid-row: 1 / 11;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-img-small {
  grid-column: 7 / 13;
  grid-row: 6 / 13;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 8px solid var(--dark);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.about-img-large img, .about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-images:hover .about-img-large img {
  transform: scale(1.05);
}

.about-images:hover .about-img-small img {
  transform: scale(1.08);
}

.floating-badge {
  position: absolute;
  bottom: 15%;
  left: -5%;
  z-index: 6;
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 20px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: floating 5s ease-in-out infinite alternate;
}

.floating-badge span.number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.floating-badge span.text {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--accent);
}

.about-text p {
  color: var(--muted-text);
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

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

.about-feature-item i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.about-feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
}


/* --- WHY CHOOSE KUBANI INN --- */
#why-choose {
  background-color: #081a2d;
  background-image: radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(10, 37, 64, 0.15);
}

.why-card .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.6rem;
  margin-bottom: 25px;
  transition: var(--transition);
}

.why-card:hover .card-icon {
  background: var(--secondary);
  color: var(--dark);
  transform: rotateY(180deg);
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.why-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  font-weight: 300;
}


/* --- ROOMS & SUITES --- */
#rooms {
  background: var(--dark);
}

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

.room-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

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

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

.room-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(8px);
  color: var(--secondary);
  padding: 8px 15px;
  border-radius: 4px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 3;
}

.room-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-header h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.room-header h3:hover {
  color: var(--secondary);
}

.room-features {
  list-style: none;
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.room-features li {
  font-size: 0.9rem;
  color: var(--muted-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-features li i {
  color: var(--secondary);
  font-size: 0.85rem;
}

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


/* --- EXPERIENCE SECTION --- */
#experience {
  background-color: #061524;
  overflow: hidden;
}

.exp-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.exp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.exp-row:nth-child(even) .exp-img-col {
  order: 2;
}

.exp-row:nth-child(even) .exp-text-col {
  order: 1;
}

.exp-img-col {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.exp-img-col:hover img {
  transform: scale(1.05);
}

.exp-img-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.4) 0%, transparent 100%);
  z-index: 2;
}

.exp-text-col h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.exp-text-col h3 span {
  color: var(--secondary);
}

.exp-text-col p {
  color: var(--muted-text);
  margin-bottom: 25px;
  font-weight: 300;
  font-size: 1.05rem;
}


/* --- GALLERY SECTION --- */
#gallery {
  background: var(--dark);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  color: var(--muted-text);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.8rem;
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.gallery-item.hide {
  display: none;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.85) 0%, rgba(18, 18, 18, 0.3) 100%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-hover-info {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  transition: var(--transition);
}

.gallery-hover-info i {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.gallery-hover-info h4 {
  font-size: 1.2rem;
  color: var(--accent);
}

.gallery-hover-info p {
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.gallery-item:hover .gallery-hover-info {
  bottom: 25px;
  opacity: 1;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.lightbox-caption {
  color: var(--accent);
  text-align: center;
  margin-top: 15px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--secondary);
  color: var(--dark);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}


/* --- TESTIMONIALS SECTION --- */
#testimonials {
  background: radial-gradient(circle at 90% 10%, rgba(10, 37, 64, 0.2) 0%, transparent 50%), var(--dark);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
}

.testimonial-card {
  text-align: center;
  padding: 50px 40px;
  border-radius: var(--border-radius);
  background: rgba(10, 37, 64, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 25px;
  letter-spacing: 3px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary);
}

.author-title {
  font-size: 0.8rem;
  color: var(--muted-text);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}


/* --- STATISTICS SECTION --- */
#statistics {
  background: linear-gradient(135deg, var(--primary) 0%, #051424 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.counter-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}

.counter-num::after {
  content: '+';
  color: var(--secondary);
  font-size: 2.2rem;
  margin-left: 2px;
  vertical-align: super;
}

.counter-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}


/* --- RESERVATION CTA --- */
#reservation-cta {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

#reservation-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(5, 19, 33, 0.9) 0%, rgba(18, 18, 18, 0.8) 100%);
  z-index: 1;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.cta-container h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--accent);
}

.cta-container h2 span {
  color: var(--secondary);
}

.cta-container p {
  color: var(--muted-text);
  font-size: 1.15rem;
  margin-bottom: 40px;
  font-weight: 300;
}


/* --- CONTACT SECTION --- */
#contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.contact-details p, .contact-details a {
  color: var(--muted-text);
  font-size: 0.95rem;
  font-weight: 300;
}

.contact-details a:hover {
  color: var(--secondary);
}

/* WhatsApp Button & Social Icons */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.btn-whatsapp {
  background-color: var(--highlight);
  color: var(--accent);
  padding: 15px 30px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(15, 169, 88, 0.2);
}

.btn-whatsapp:hover {
  background-color: #0d964d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 169, 88, 0.4);
}

.social-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 5px;
}

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

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(10, 37, 64, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px;
}

.contact-form-title {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--accent);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

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

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary);
  background: rgba(10, 37, 64, 0.3);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

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

/* Map Section */
.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted-text);
  gap: 15px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--secondary);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* --- FOOTER --- */
footer {
  background: #050d16;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 25px;
  height: 1.5px;
  background: var(--secondary);
  margin-top: 6px;
}

.footer-about p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin: 20px 0 25px;
  font-weight: 300;
  max-width: 320px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--muted-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links a::before {
  content: '→';
  color: var(--secondary);
  font-size: 0.8rem;
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-list i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-newsletter p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-input {
  flex-grow: 1;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.newsletter-btn {
  background: var(--secondary);
  color: var(--dark);
  padding: 0 20px;
  border-radius: 0;
}

.newsletter-btn:hover {
  background: #f7d056;
}

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

.footer-bottom p {
  color: var(--muted-text);
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  color: var(--muted-text);
  font-size: 0.85rem;
}

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


/* --- BOOKING MODAL --- */
.booking-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
  opacity: 1;
}

.booking-modal-content {
  background: rgba(10, 37, 64, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.booking-modal.active .booking-modal-content {
  transform: translateY(0);
}

.booking-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

.booking-modal-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.booking-modal-title {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
  text-align: center;
}

.booking-modal-subtitle {
  color: var(--secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.success-modal.active {
  display: flex;
  opacity: 1;
}

.success-modal-content {
  background: rgba(10, 37, 64, 0.95);
  border: 2px solid var(--highlight);
  border-radius: var(--border-radius);
  max-width: 450px;
  width: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.success-modal.active .success-modal-content {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(15, 169, 88, 0.1);
  color: var(--highlight);
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}


/* --- ANIMATION CLASSES & KEYFRAMES --- */

/* Scroll Reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Horizontal reveal directions */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

/* Floating Animation */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Mouse Scroll Animation */
@keyframes mouseScroll {
  0% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 24px;
    opacity: 0;
  }
  100% {
    top: 8px;
    opacity: 1;
  }
}

/* Page transitions / Loading Spinner */
.loader-wrapper {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  border-top-color: var(--secondary);
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
}

.loader-text span {
  color: var(--secondary);
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-images {
    height: 450px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 50px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-actions .btn-primary {
    display: none; /* Hide top CTA on mobile, link will be in main menu */
  }
  
  /* Sections styling */
  section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  /* Hero */
  #hero {
    height: auto;
    min-height: 100vh;
    padding: 150px 0 80px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  
  /* Exp section */
  .exp-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .exp-row:nth-child(even) .exp-img-col {
    order: 1;
  }
  
  .exp-row:nth-child(even) .exp-text-col {
    order: 2;
  }
  
  .exp-img-col {
    height: 300px;
  }
  
  /* Counters */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .booking-modal-content {
    padding: 25px 15px;
  }
}
