/* =====================================================================
   HOTEL TULIP INN — MAIN STYLESHEET
   Theme: Golden & White | Mobile-first, responsive
   ===================================================================== */

:root {
  --gold: #B8952E;
  --gold-dark: #8C6E1F;
  --gold-light: #F5E8C8;
  --white: #FFFFFF;
  --offwhite: #FAF8F3;
  --text-dark: #2A2418;
  --text-muted: #6B6353;
  --shadow: 0 8px 30px rgba(42, 36, 24, 0.10);
  --shadow-sm: 0 2px 10px rgba(42, 36, 24, 0.08);
  --radius: 10px;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 70px 0; }
.section-alt { background: var(--offwhite); }

.section-eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.82rem;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}

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

.section-sub {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  font-size: 1rem;
}

.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

.divider-tulip {
  width: 46px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 10px 0 24px;
}

.divider-tulip.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow); filter: brightness(1.05); }

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

.btn-white {
  background: var(--white);
  color: var(--gold-dark);
}
.btn-white:hover { background: var(--gold-light); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-link img {
  width: 100px;
  max-width: 28vw;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-dark);
  background: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.25s ease;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 20px 20px;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    gap: 2px;
  }
  .main-nav.open { right: 0; }
  .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--gold-light); }
  .nav-toggle { display: flex; }
  .logo-link img { width: 80px; }
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.nav-overlay.open { display: block; }

/* =====================================================================
   HERO / HOME SPLIT (video right, info left) — FULL PAGE WIDTH
   ===================================================================== */
.hero-split {
  background: linear-gradient(180deg, var(--offwhite), var(--white));
  padding: 60px 0;
}

.hero-wide {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-info .section-eyebrow { margin-bottom: 6px; }

.hero-info h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
}

.hero-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  outline: 1px solid var(--gold-light);
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  background: #000;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-controls {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.video-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.video-controls button:hover { background: rgba(0,0,0,0.75); }

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  z-index: 3;
  border: none;
  cursor: pointer;
}
.video-play-overlay.hidden { display: none; }
.video-play-overlay .play-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

@media (max-width: 1000px) {
  .hero-wide { grid-template-columns: 1fr; padding: 0 24px; gap: 30px; }
  .hero-split { padding: 30px 0; }
  .hero-video-wrap { order: -1; max-width: 300px; }
  .hero-info { text-align: center; }
  .hero-info p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
}

/* =====================================================================
   GALLERY SLIDER
   ===================================================================== */
.gallery-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--gold-light);
}
.gallery-slider::-webkit-scrollbar { height: 8px; }
.gallery-slider::-webkit-scrollbar-track { background: var(--gold-light); border-radius: 8px; }
.gallery-slider::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }

.gallery-slide {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
}
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-slide:hover img { transform: scale(1.06); }

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}
.gallery-controls button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  color: var(--gold-dark);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.gallery-controls button:hover { background: var(--gold); color: var(--white); }

/* Full gallery grid (Gallery.php) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-grid .gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
}
.gallery-grid .gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid .gallery-item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,16,8,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 6px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  color: var(--white);
  font-size: 2rem;
  background: none; border: none;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* =====================================================================
   ROOMS
   ===================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--gold-light);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.room-card-img { aspect-ratio: 4/3; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; }

.room-card-body { padding: 22px; }

.room-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.room-card-body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; }

.room-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.room-price .amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.room-price .period { color: var(--text-muted); font-size: 0.85rem; }

/* =====================================================================
   GM MESSAGE
   ===================================================================== */
.gm-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 40px;
}
.gm-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  outline: 1px solid var(--gold-light);
}
.gm-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.gm-text .name { font-size: 1.05rem; color: var(--gold-dark); font-weight: 700; margin-top: 16px; }
.gm-text .title { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 14px; }
.gm-text blockquote {
  font-style: italic;
  font-size: 1.05rem;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: var(--text-dark);
}
.gm-text p.full { color: var(--text-dark); margin-bottom: 16px; line-height: 1.75; }
.gm-text p.full:last-child { margin-bottom: 0; }

@media (max-width: 750px) {
  .gm-block { grid-template-columns: 1fr; text-align: center; padding: 30px 20px; }
  .gm-photo { max-width: 220px; margin: 0 auto; }
  .gm-text blockquote { border-left: none; border-top: 3px solid var(--gold); padding-left: 0; padding-top: 14px; }
}

/* =====================================================================
   OTA / BOOKING PLATFORM STRIP
   ===================================================================== */
.ota-strip {
  background: var(--gold-light);
  padding: 40px 0;
}
.ota-strip .strip-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 22px;
}
.ota-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.ota-badge {
  background: var(--white);
  border-radius: 8px;
  padding: 14px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: transform 0.2s ease;
  min-width: 170px;
  justify-content: center;
}
.ota-badge:hover { transform: translateY(-3px); }
.ota-badge img { width: 26px; height: 26px; flex-shrink: 0; }

/* =====================================================================
   SOCIAL STRIP
   ===================================================================== */
.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  transition: all 0.2s ease;
}
.social-icons a:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.social-icons svg { width: 18px; height: 18px; }

.footer .social-icons a { background: rgba(255,255,255,0.1); color: var(--gold-light); }
.footer .social-icons a:hover { background: var(--gold); color: var(--white); }

/* =====================================================================
   EVENTS / BLOG
   ===================================================================== */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-light);
}
.event-card-img { aspect-ratio: 16/9; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 24px; }
.event-date {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.event-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.event-card-body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 14px; }

.event-full-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.event-gallery-grid img {
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

/* =====================================================================
   DINING / MENU
   ===================================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.menu-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 12px;
}
.menu-icon { font-size: 1.3rem; }
.menu-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 10px 0 4px;
}
.menu-list { margin-top: 12px; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gold-light);
  font-size: 0.94rem;
}
.menu-list li:last-child { border-bottom: none; }
.menu-item-name { color: var(--text-dark); }
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-muted);
  opacity: 0.4;
  margin-bottom: 4px;
}
.menu-item-price {
  color: var(--gold-dark);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.92rem;
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-row .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-row h4 { font-size: 0.95rem; margin-bottom: 3px; }
.contact-info-row p, .contact-info-row a { color: var(--text-muted); font-size: 0.92rem; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: none;
  width: 100%;
  height: 320px;
  margin-top: 20px;
}

@media (max-width: 850px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   FORMS (Contact + Booking Popup)
   ===================================================================== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gold-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-msg {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}
.form-msg.success { display: block; background: #E7F4E8; color: #2C6B31; }
.form-msg.error { display: block; background: #FBEAEA; color: #A32222; }

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   BOOKING POPUP MODAL
   ===================================================================== */
.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,16,8,0.6);
  z-index: 3000;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.booking-modal-overlay.open { display: flex; }

.booking-modal {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 560px;
  padding: 34px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  border: none;
  font-size: 1.2rem;
  color: var(--gold-dark);
}

.booking-modal h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.booking-modal .sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--text-dark);
  color: #E8E1CF;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 170px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
}
.footer p, .footer a { color: #C9C0A8; font-size: 0.9rem; }
.footer a:hover { color: var(--gold); }
.footer ul li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #A69C82;
}
.footer-ota { display: flex; flex-direction: column; gap: 10px; }
.footer-ota a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo img { margin-left: auto; margin-right: auto; }
  .social-icons { justify-content: center; }
  .footer-ota { align-items: center; }
}

/* =====================================================================
   STICKY MOBILE BOOK BAR
   ===================================================================== */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 10px 16px;
  z-index: 900;
  gap: 10px;
}
@media (max-width: 900px) {
  .mobile-book-bar { display: flex; }
  body { padding-bottom: 66px; }
}
.mobile-book-bar a { flex: 1; }
.mobile-book-bar .call-btn {
  flex: 0 0 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
}

/* =====================================================================
   PAGE HERO BANNER (inner pages)
   ===================================================================== */
.page-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
}
.page-banner h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-banner p { color: rgba(255,255,255,0.9); margin-top: 10px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-top: 10px; }
.breadcrumb a { color: var(--white); font-weight: 600; }

/* =====================================================================
   MISC
   ===================================================================== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.rate-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 20px; text-align: center; }
