/* ===== MIKADO PALACE HOTEL - GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C47D;
  --gold-dark: #A8883A;
  --dark: #1C1C1A;
  --dark-green: #2A2C25;
  --dark-bg: #252822;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --text-dark: #1C1C1A;
  --text-light: #F5F0E8;
  --text-muted: #8A8A7A;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
}
/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 8px 0;
}
.top-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left { display: flex; gap: 28px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 7px; }
.top-bar-left span svg { width: 14px; height: 14px; opacity: 0.8; }

/* ===== NAVBAR ===== */
.navbar {

  
  padding: 0 20px;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height:110px;
  
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 80px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  transition: var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.btn-booknow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold) !important;
  padding: 9px 22px;
  border-radius: 2px;
  transition: var(--transition) !important;
  border-bottom: 1.5px solid var(--gold) !important;
}
.btn-booknow:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); display: block; transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-content p {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.section-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
  gap: 48px;
}
/* Logo Image */
.footer-logo img {
  height: 150px;   /* desktop size */
  width: auto;
  display: block;
  margin-bottom: 16px;
}

/* Paragraph */
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-logo img {
    height: 130px;
  }
}

 
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-bottom: 28px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  border-radius: 2px;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.newsletter-form { display: flex; gap: 0; margin-top: 8px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  background: var(--gold);
  border: none;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px 40px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 22px; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 24px 40px;
    gap: 20px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px; }
  .section-title { font-size: 32px; }
  .page-hero-content h1 { font-size: 40px; }
}

/* ===== SERVICES PAGE ===== */
.services-intro {
  background: var(--cream-light);
  padding: 72px 40px 48px;
  text-align: center;
}
.services-intro-inner { max-width: 700px; margin: 0 auto; }

.services-grid-section { background: var(--cream-light); padding: 20px 0 80px; }
.services-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.svc-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.svc-img { height: 220px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-info { padding: 32px; flex: 1; }
.svc-icon-wrap {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-icon-wrap svg { width: 22px; height: 22px; color: var(--gold); }
.svc-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.svc-info > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.svc-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 2px;
}

@media (max-width: 1024px) {
  .services-grid-inner { grid-template-columns: 1fr; }
  .svc-card { flex-direction: row; }
  .svc-img { width: 280px; height: auto; flex-shrink: 0; }
}
@media (max-width: 768px) {
  .svc-card { flex-direction: column; }
  .svc-img { width: 100%; height: 200px; }
}


/* ===== ROOMS PAGE ===== */
.rooms-hero {
  background: var(--cream-light);
  padding-bottom: 60px;
  text-align: center;
}

.rooms-page-grid { background: var(--cream-light); padding: 20px 0 80px; }
.rooms-page-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; gap: 60px; }

.room-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
}
.room-full-card:hover { box-shadow: var(--shadow); }
.room-full-card.reverse { direction: rtl; }
.room-full-card.reverse > * { direction: ltr; }

.rfc-img { position: relative; overflow: hidden; height: 380px; }
.rfc-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s ease; }
.room-full-card:hover .rfc-img img { transform: scale(1.04); }
.rfc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 2px;
}
.room-full-card.reverse .rfc-badge { left: auto; right: 20px; }

.rfc-info { padding: 44px 44px; display: flex; flex-direction: column; justify-content: center; }
.rfc-info h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.rfc-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 18px;
}
.rfc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.rfc-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.rfc-amenities span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--text-dark);
}
.rfc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.rfc-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}
.rfc-price small { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--text-muted); }

/* CTA */
.rooms-cta { position: relative; padding: 100px 40px; text-align: center; overflow: hidden; }
.rooms-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.35); }
.rooms-cta-content { position: relative; z-index: 2; color: var(--white); max-width: 600px; margin: 0 auto; }
.rooms-cta-content h2 { font-family: var(--font-display); font-size: 48px; font-weight: 700; margin: 8px 0 16px; }
.rooms-cta-content p { font-size: 15px; color: rgba(255,255,255,0.75); font-family: var(--font-elegant); font-style: italic; }

@media (max-width: 1024px) {
  .room-full-card { grid-template-columns: 1fr; }
  .room-full-card.reverse { direction: ltr; }
  .rfc-img { min-height: 260px; }
  .rfc-info { padding: 32px; }
}
@media (max-width: 768px) {
  .rfc-info h2 { font-size: 26px; }
}




/* ===== HOME PAGE STYLES ===== */

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-sub {
  font-family: var(--font-elegant);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* BOOK BAR */
.book-bar {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
  position: relative;
  z-index: 10;
}
.book-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.book-field {
  flex: 1;
  /* padding: 20px 24px; */
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.book-field label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  
  letter-spacing: 0.2em;
  color: var(--gold);
}
.book-field input,
.book-field select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
  width: 100%;
}
.book-divider {
  width: 1px;
  /* height: 48px; */
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.book-btn {
  margin: 12px 0 12px 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ABOUT SNIPPET */
.about-snippet {
  padding: 100px 0;
  background: var(--cream-light);
}
.about-snippet-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-snippet-img {
  position: relative;
}
.about-snippet-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  color: var(--dark);
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.badge-txt {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 4px;
}
.about-stats {
  display: flex;
  gap: 32px;
  padding-top: 8px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
}

/* ROOMS SECTION */
.rooms-section {
  background: var(--cream);
  padding: 80px 0;
}
.rooms-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.06); }
.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.room-card:hover .room-overlay { opacity: 1; }
.room-info { padding: 24px; }
.room-count {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.room-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 10px;
  color: var(--text-dark);
}
.room-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}
.room-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }

/* AMENITIES */
.amenities-section {
  background: var(--dark-bg);
  padding: 80px 0;
}
.amenities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.amenities-section .section-title { color: var(--white); }
.amenities-section .section-label { color: var(--gold); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border-radius: 2px;
}
.amenity-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.amenity-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.amenity-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.amenity-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* GALLERY HOME */
.gallery-snippet { background: var(--cream-light); }
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.gal-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: var(--transition);
}
.gal-item:hover::after { background: rgba(201,168,76,0.2); }

/* CTA BANNER */
.cta-banner {
  position: relative;
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin: 8px 0 16px;
}
.cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-family: var(--font-elegant);
  font-style: italic;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* TESTIMONIALS */
.testimonials { background: var(--cream); padding: 80px 0; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  padding: 36px 28px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.testi-author span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-snippet-inner { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid-home { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 42px; }
  .book-bar-inner { flex-direction: column; padding: 20px; }
  .book-divider { width: 100%; height: 1px; }
  .book-btn { width: 100%; text-align: center; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid-home { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-item.tall, .gal-item.wide { grid-row: span 1; grid-column: span 1; height: 200px; }
  .gal-item { height: 200px; }
  .about-snippet-img img { height: 300px; }
  .about-badge { display: none; }
}



/* ===== GALLERY PAGE ===== */
.gallery-hero .page-hero-bg { filter: brightness(0.38); }

.gallery-section { background: var(--cream-light); padding: 60px 0 80px; }
.gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* FILTER BUTTONS */
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 10px 24px;
  border: 1.5px solid rgba(0,0,0,0.18);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gal-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border-radius: 2px;
}
.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-card:hover img { transform: scale(1.08); }
.gal-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.gal-card:hover .gal-card-overlay {
  background: rgba(0,0,0,0.4);
}
.gal-card-overlay span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gal-card:hover .gal-card-overlay span {
  opacity: 1;
  transform: translateY(0);
}
.gal-card.hide { display: none; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  user-select: none;
}
.lightbox-close { top: 24px; right: 24px; font-size: 18px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--dark); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 10px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}


/* ===== CONTACT PAGE ===== */
.contact-info { background: var(--dark-bg); padding: 64px 0; }
.contact-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ci-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
  border-radius: 2px;
}
.ci-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.5);
}
.ci-icon {
  width: 60px; height: 60px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.ci-icon svg { width: 24px; height: 24px; color: var(--gold); }
.ci-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.ci-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 16px;
}
.ci-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
.ci-link:hover { opacity: 0.75; }

/* FORM + MAP */
.contact-form-section { background: var(--cream-light); padding: 80px 0; }
.contact-form-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

/* FORM */
.contact-form-box {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  border-radius: 2px;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-success {
  display: none;
  margin-top: 16px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 2px;
}
.form-success.show { display: block; }

/* MAP */
.map-embed { border-radius: 2px; overflow: hidden; margin-bottom: 24px; }
.hotel-card {
  background: var(--white);
  padding: 24px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.hotel-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.hotel-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.hotel-card-contacts { display: flex; flex-direction: column; gap: 8px; }
.hotel-card-contacts a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.hotel-card-contacts a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .contact-info-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-form-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-info-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-info-inner { grid-template-columns: 1fr; }
}


/* ===== ABOUT PAGE ===== */
.about-main { padding: 100px 0; background: var(--cream-light); }
.about-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-vals { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.val-item { display: flex; gap: 16px; align-items: flex-start; }
.val-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 3px; }
.val-item strong {
  font-family: var(--font-display);
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.val-item p { margin: 0; }
.about-imgs { position: relative; }
.img-main {
  width: 85%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.img-sec {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid var(--cream-light);
  box-shadow: var(--shadow);
}

/* STATS STRIP */
.stats-strip {
  background: var(--gold);
  padding: 52px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.s-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.s-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  display: block;
  margin-top: 8px;
}

/* VALUES */
.values-section { background: var(--cream); padding: 80px 0; }
.values-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-top: 3px solid transparent;
  transition: var(--transition);
  border-radius: 2px;
}
.value-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.vc-icon {
  width: 60px; height: 60px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.vc-icon svg { width: 26px; height: 26px; color: var(--gold); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 1024px) {
  .about-main-inner { grid-template-columns: 1fr; }
  .img-sec { position: static; width: 60%; margin-top: 16px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .img-main { width: 100%; }
  .img-sec { display: none; }
}
