/* ============================================================
   GRAND PALACE HOTEL – Stylesheet
   ============================================================ */

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

:root {
  --gold:       #c9a96e;
  --gold-light: #e8cc9a;
  --gold-dark:  #a07840;
  --navy:       #0d1b2e;
  --navy-mid:   #152338;
  --navy-light: #1e3050;
  --white:      #ffffff;
  --off-white:  #f8f5f0;
  --gray-light: #f0ece5;
  --gray:       #8a8a8a;
  --text:       #2c2c2c;
  --shadow:     0 8px 40px rgba(0,0,0,.15);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.25);
  --radius:     4px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
p { line-height: 1.75; color: #555; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }

/* ---------- Section Headers ---------- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-label { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 24px;
  color: var(--gold);
  font-size: 1.1rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.section-desc { max-width: 600px; margin: 0 auto; color: #666; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(13,27,46,.97);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .03em;
}
.logo-icon { color: var(--gold); font-size: 1rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://picsum.photos/seed/luxury-hotel-exterior/1920/1080') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,46,.85) 0%,
    rgba(13,27,46,.6) 50%,
    rgba(13,27,46,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 900px;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-tagline {
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  letter-spacing: .02em;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 36px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,169,110,.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.6);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  letter-spacing: .05em;
}
.badge i { color: var(--gold); font-size: .7rem; }
.badge-sep { color: rgba(255,255,255,.3); font-size: 1.2rem; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1.5s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,.5);
  border-bottom: 1.5px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ============================================================
   HIGHLIGHTS BAND
   ============================================================ */
.highlights-band {
  background: var(--navy);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.highlight-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: var(--navy-light); }
.highlight-item i {
  font-size: 1.8rem;
  color: var(--gold);
  min-width: 32px;
}
.highlight-item strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  font-family: 'Playfair Display', serif;
}
.highlight-item span {
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  letter-spacing: .05em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all var(--transition);
}
.service-card:hover .service-img { height: 230px; }

.service-body { padding: 28px; }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 16px;
  margin-top: -40px;
  position: relative;
  box-shadow: 0 4px 16px rgba(201,169,110,.4);
}

.service-body h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-body p { font-size: .9rem; margin-bottom: 16px; }

.service-list { margin-bottom: 20px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .85rem;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}
.service-list li:last-child { border-bottom: none; }
.service-list i { color: var(--gold); font-size: .75rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { color: var(--gold); gap: 14px; }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-section { background: var(--navy); }
.rooms-section .section-header h2 { color: var(--white); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card.featured { border: 2px solid var(--gold); }

.room-img {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.room-badge.gold { background: var(--gold); color: var(--navy); }
.room-badge.premium { background: linear-gradient(135deg,#6b4c11,#c9a96e); color: var(--white); }

.room-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 2px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.room-info { padding: 24px; }
.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.room-header h3 { font-size: 1.3rem; color: var(--navy); }
.room-size { font-size: .8rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }

.room-info p { font-size: .88rem; margin-bottom: 18px; }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.room-amenities span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: #555;
  background: var(--gray-light);
  padding: 5px 10px;
  border-radius: 2px;
}
.room-amenities i { color: var(--gold); }

.btn-room {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 11px 28px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-room:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-room.gold { background: var(--gold); color: var(--navy); }
.btn-room.gold:hover { background: var(--gold-light); }

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  position: relative;
  padding: 120px 2rem;
  background: url('https://picsum.photos/seed/hotel-terrace/1920/800') center/cover no-repeat fixed;
  text-align: center;
  overflow: hidden;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,46,.78);
}
.quote-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
}
.quote-content .fa-quote-left {
  font-size: 3rem;
  color: var(--gold);
  opacity: .6;
  margin-bottom: 24px;
  display: block;
}
.quote-content p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}
.quote-content span {
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ============================================================
   RESTAURANT
   ============================================================ */
.restaurant-section { background: var(--off-white); }

.restaurant-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 2px solid #e0d8cc;
}
.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--navy); border-bottom-color: var(--gold); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.restaurant-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.restaurant-img {
  height: 480px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.restaurant-text { padding: 20px 0; }
.res-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.restaurant-text h3 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }
.restaurant-text p { margin-bottom: 16px; font-size: .92rem; }

.menu-preview { margin: 28px 0; border-top: 1px solid #e0d8cc; }
.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #e0d8cc;
  font-size: .88rem;
}
.menu-item span:last-child { color: var(--gold-dark); font-weight: 600; }

/* ============================================================
   SPA
   ============================================================ */
.spa-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a2a40 100%);
  position: relative;
  overflow: hidden;
}
.spa-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201,169,110,.04);
  pointer-events: none;
}

.spa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 52px;
}

.spa-feature {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.spa-feature:hover {
  background: rgba(201,169,110,.1);
  border-color: rgba(201,169,110,.4);
  transform: translateY(-4px);
}

.spa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,169,110,.15);
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.spa-feature h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}
.spa-feature p { font-size: .87rem; color: rgba(255,255,255,.6); }

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

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 220px;
  cursor: pointer;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
  min-height: 453px;
}
.gallery-item.wide { grid-column: span 2; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,27,46,.35);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(transparent, rgba(13,27,46,.75));
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
  transform: translateY(4px);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-label { transform: translateY(0); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); padding: 100px 0; }
.testimonials-section .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.testi-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card.featured {
  background: var(--navy);
  border: 2px solid var(--gold);
}
.testi-card.featured p { color: rgba(255,255,255,.85); }

.testi-stars { color: var(--gold); margin-bottom: 20px; letter-spacing: 2px; font-size: .9rem; }

.testi-card p {
  font-size: .92rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-author span { font-size: .75rem; color: var(--gray); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,.5); }

.rating-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  background: var(--navy);
  border-radius: 6px;
  padding: 32px 48px;
}
.rating-item { text-align: center; }
.rating-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.rating-item span:last-child { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; }
.rating-sep { color: rgba(255,255,255,.2); font-size: 2rem; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking-section { background: var(--gray-light); }

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.booking-left h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 16px; }
.booking-left p { font-size: .92rem; margin-bottom: 32px; }
.light-label { color: var(--gold); }

.booking-perks { display: flex; flex-direction: column; gap: 14px; }
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .88rem;
  color: #444;
}
.perk i { color: var(--gold); width: 20px; text-align: center; }

.booking-right {
  background: var(--white);
  border-radius: 6px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #666; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0d8cc;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,169,110,.4);
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; display: block; }
.form-success h4 { font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: .9rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

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

.contact-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-block h4 {
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
}
.contact-block p { font-size: .88rem; }

.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #e0d8cc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .95rem;
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.contact-map {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
}
.map-placeholder i { font-size: 3rem; color: var(--gold); }
.map-placeholder p { font-size: 1rem; color: var(--white); }
.map-placeholder span { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 80px 2rem 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }

.footer-awards { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-awards span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--gold);
  background: rgba(201,169,110,.1);
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid rgba(201,169,110,.2);
}

.footer-links h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-newsletter h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-newsletter p { font-size: .85rem; margin-bottom: 20px; }

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: none;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  background: var(--gold);
  border: none;
  padding: 12px 18px;
  color: var(--navy);
  cursor: pointer;
  font-size: .9rem;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: .8rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(201,169,110,.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#backToTop:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .restaurant-split { grid-template-columns: 1fr; }
  .restaurant-img { height: 320px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 36px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; padding: 12px 0; color: var(--white); }
  .btn-nav { margin-left: 0 !important; margin-top: 12px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; min-height: 280px; }
  .gallery-item.wide { grid-column: span 2; }

  .highlights-band { flex-direction: column; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  .services-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .spa-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .rating-summary { gap: 24px; padding: 24px; }
  .rating-sep { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .restaurant-tabs { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large,
  .gallery-item.wide { grid-column: span 1; }
}
