/* ============================================
   Hotel Delmond Prime — Main Stylesheet
   Theme: Navy Blue + Gold + White
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #0b1d3a;
  --navy-light: #132d5e;
  --navy-dark: #060f1f;
  --gold: #c9a84c;
  --gold-light: #dfc278;
  --gold-dark: #a88a30;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f0efe9;
  --gray-200: #e0dfd8;
  --gray-400: #9e9d97;
  --gray-600: #6b6a65;
  --gray-800: #3a3935;
  --text: #2c2c2c;
  --shadow-sm: 0 2px 8px rgba(11,29,58,.08);
  --shadow-md: 0 4px 20px rgba(11,29,58,.12);
  --shadow-lg: 0 8px 40px rgba(11,29,58,.18);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.25);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --max-width: 1200px;
  --header-h: 72px;
}

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

/* --- Utility --- */
.container { width: 92%; max-width: var(--max-width); margin: 0 auto; }
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  margin-top: 12px;
  color: var(--gray-600);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}
.section-dark .section-header p { color: var(--gray-200); }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,29,58,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(11,29,58,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-dark);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}
.logo-text .sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-book {
  margin-left: 8px;
  padding: 9px 24px !important;
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-book:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  /* placeholder gradient when no images */
}
.hero-slide-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a6e 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,31,.55) 0%, rgba(6,15,31,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp .8s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeUp .8s ease .15s both;
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 12px;
  animation: fadeUp .8s ease .3s both;
}
.hero-price {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp .8s ease .4s both;
}
.hero-price strong {
  font-size: 28px;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .5s both;
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }

/* ===== AMENITY STRIP ===== */
.amenity-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.amenity-strip-item {
  background: var(--white);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all var(--transition);
}
.amenity-strip-item:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.amenity-strip-item .icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-dark);
}
.amenity-strip-item .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .5px;
}

/* ===== ROOM CARDS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.room-card-img .placeholder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .placeholder-img { transform: scale(1.06); }
.room-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.room-card-body {
  padding: 20px 22px 24px;
}
.room-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.room-card-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-600);
}
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-card-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-dark);
}
.room-card-price small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-400);
}
.room-card-footer .btn { padding: 10px 20px; font-size: 11px; }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap .placeholder-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-exp-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
}
.about-exp-badge .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.about-exp-badge .txt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--gray-600);
  margin-bottom: 14px;
  font-size: 14px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.about-highlights li .check {
  width: 22px; height: 22px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.why-card .icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  color: var(--navy-dark);
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.2);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.testimonial-author .info .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-author .info .date {
  font-size: 11px;
  color: var(--gray-400);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item .placeholder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover .placeholder-img { transform: scale(1.08); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(11,29,58,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ===== AMENITIES PAGE ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.amenity-card .icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,.1), rgba(201,168,76,.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.amenity-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.amenity-card p {
  font-size: 13px;
  color: var(--gray-600);
}

/* ===== BOOKING / CONTACT FORM ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group .error-msg {
  font-size: 11px;
  color: #d32f2f;
  margin-top: 4px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select {
  border-color: #d32f2f;
}
.form-group.has-error .error-msg { display: block; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-info {
  padding: 8px 0;
}
.form-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.form-info p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.form-info-item .icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.form-info-item .text .title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.form-info-item .text .detail {
  font-size: 13px;
  color: var(--gray-600);
}
.form-info-item .text a {
  color: var(--gold-dark);
  font-weight: 500;
}
.form-info-item .text a:hover { color: var(--gold); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.map-container iframe {
  width: 100%;
  height: 280px;
  border: none;
}

/* ===== REVIEWS PAGE ===== */
.rating-overview {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.rating-big {
  text-align: center;
  padding-right: 32px;
  border-right: 1px solid var(--gray-200);
}
.rating-big .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.rating-big .stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 18px;
  justify-content: center;
  margin: 6px 0;
}
.rating-big .count {
  font-size: 13px;
  color: var(--gray-400);
}
.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.rating-bar-row .label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  min-width: 50px;
}
.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 1s ease;
}
.rating-bar-row .pct {
  font-size: 12px;
  color: var(--gray-400);
  min-width: 36px;
  text-align: right;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  font-size: 14px;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}
.footer-contact-item .icon {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PLACEHOLDER IMAGES (gradient-based) ===== */
.ph-hotel-1 { background: linear-gradient(135deg, #1a3a6e 0%, #0b1d3a 40%, #2a1a0a 100%); }
.ph-hotel-2 { background: linear-gradient(135deg, #2a1a0a 0%, #1a3a6e 100%); }
.ph-hotel-3 { background: linear-gradient(135deg, #0b1d3a 0%, #c9a84c 100%); }
.ph-room-1 { background: linear-gradient(135deg, #132d5e 0%, #1a3a6e 60%, #3d5a80 100%); }
.ph-room-2 { background: linear-gradient(135deg, #3d5a80 0%, #132d5e 100%); }
.ph-room-3 { background: linear-gradient(135deg, #2a3d5e 0%, #0b1d3a 100%); }
.ph-room-4 { background: linear-gradient(135deg, #1a2a4e 0%, #3d5a80 100%); }
.ph-gallery { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }

/* ===== TOAST / SUCCESS MSG ===== */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 500;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s ease;
  border-left: 4px solid var(--gold);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 2px;
    transform: translateX(100%);
    transition: transform .4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,.3);
    align-items: stretch;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 6px;
  }
  .nav-links a:hover { background: rgba(255,255,255,.05); }
  .nav-book { margin-left: 0 !important; margin-top: 8px; text-align: center; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 600px) {
  :root { --header-h: 60px; }
  .section { padding: 56px 0; }
  .hero { min-height: 500px; }
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rating-overview { flex-direction: column; align-items: flex-start; }
  .rating-big { border-right: none; padding-right: 0; border-bottom: 1px solid var(--gray-200); padding-bottom: 16px; }
  .amenity-strip { grid-template-columns: repeat(3, 1fr); }
  .about-highlights { grid-template-columns: 1fr; }
}
