﻿/*!

* =====================================================
* Proje: BTR Yazılım Otel Script
* Website: https://www.btryazilim.com
*
* Geliştirici: Mehmet Biter
* Marka: BTR Yazılım
*
* Açıklama:
* Bu CSS veya JS dosyası, BTR Yazılım tarafından geliştirilen
* web scriptine aittir. Tasarım ve stil düzenlemeleri
* bu dosya üzerinden yönetilmektedir.
*
* Tüm hakları saklıdır © Mehmet Biter
* İzinsiz kopyalanması, dağıtılması veya kullanılması
* yasaktır.
* =====================================================
*/

/* ============================================================
   MARE — Coastal Boutique Hotel Theme
   Display: Gilda Display | Body: Manrope
   Lagoon teal · Mist white · Soft coral
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --primary: #1A6B7A;
  --primary-dark: #145663;
  --primary-soft: rgba(26, 107, 122, 0.1);
  --navy: #0E3A44;
  --navy-mid: #145663;
  --secondary: #0E3A44;
  --secondary-dark: #0A2A32;
  --accent: #E07A5F;
  --accent-soft: rgba(224, 122, 95, 0.12);
  --dark: #1C2B30;
  --light: #F3F7F8;
  --surface: #E8F0F2;
  --mist: #D6E8EC;
  --text: #4A5A60;
  --text-muted: #7A8B91;
  --border: #D0DEE3;
  --white: #FFFFFF;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 8px 30px rgba(14, 58, 68, 0.07);
  --shadow-lg: 0 20px 50px rgba(14, 58, 68, 0.12);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-family: 'Manrope', system-ui, sans-serif;
  --font-display: 'Gilda Display', Georgia, serif;
  --font-condensed: 'Manrope', system-ui, sans-serif;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 60% at 100% -20%, rgba(126, 184, 196, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at -10% 30%, rgba(224, 122, 95, 0.06), transparent 50%),
    var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: 0;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 56px 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.section-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.section-heading span { color: var(--primary); font-style: italic; }

/* Buttons */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 14px 28px; font-weight: 600; font-size: 0.82rem;
  border: none; border-radius: 999px; cursor: pointer;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}
.btn-primary-custom:hover {
  background: #c96a51; color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(224, 122, 95, 0.4);
}
.btn-secondary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 13px 26px; font-weight: 600; font-size: 0.82rem;
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 999px; cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.btn-secondary-custom:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 12px 24px; font-weight: 600; font-size: 0.82rem;
  border: 1.5px solid var(--navy); border-radius: 999px; cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-dark-custom:hover { background: var(--navy); color: var(--white); }

/* Top bar */
.top-bar {
  background: var(--navy); color: rgba(255,255,255,0.65);
  font-size: 0.78rem; padding: 8px 0;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-left a { color: rgba(255,255,255,0.65); }
.top-bar-left a:hover { color: #7EB8C4; }
.top-bar-left i { color: #7EB8C4; margin-right: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right a { color: rgba(255,255,255,0.45); }
.top-bar-right a:hover { color: #7EB8C4; }
.lang-switcher { display: flex; gap: 4px; margin-left: 6px; }
.lang-btn {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 8px; color: rgba(255,255,255,0.4); border-radius: 4px;
}
.lang-btn:hover, .lang-btn.active { color: var(--white); background: rgba(255,255,255,0.12); }

/* Header — clean white */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(14, 58, 68, 0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--header-h);
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { max-height: 44px; width: auto; }
.logo-text { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--white);
  font-family: var(--font-display); font-size: 0.95rem;
}
.logo-name {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--dark); line-height: 1;
}
.logo-icon { color: var(--primary); font-size: 1.4rem; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; font-size: 0.88rem; font-weight: 550;
  color: var(--dark); border-radius: 6px;
}
.nav-link:hover { color: var(--primary); background: var(--primary-soft); }
.nav-link i { font-size: 0.65rem; opacity: 0.5; }
.nav-item { position: relative; }
.dropdown-menu-custom {
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all var(--transition); z-index: 50;
}
.nav-item:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu-custom li a {
  display: block; padding: 9px 18px; font-size: 0.88rem; color: var(--text);
}
.dropdown-menu-custom li a:hover { color: var(--primary); background: var(--light); }

.hdr-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.hdr-phone { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.hdr-phone:hover { color: var(--primary); }
.hdr-quote-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white) !important;
  padding: 11px 22px; font-size: 0.82rem; font-weight: 600;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}
.hdr-quote-btn:hover { background: var(--accent); transform: translateY(-1px); }
.hdr-divider { width: 1px; height: 28px; background: var(--border); }
.hdr-emergency { display: flex; align-items: center; gap: 10px; }
.hdr-emergency-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); color: var(--primary);
}
.hdr-emergency-label { display: block; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.hdr-emergency-num { font-size: 0.85rem; color: var(--dark); }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(10, 42, 50, 0.45); z-index: 998;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.nav-overlay.show, .nav-overlay.active { opacity: 1; visibility: visible; }

/* ── Hero ── */
.hero-slider, .default-hero {
  position: relative; min-height: 78vh; color: var(--white); overflow: hidden;
  border-radius: 0 0 32px 32px;
}
.hotel-mare { display: block; }
.hero-swiper, .hero-slider .swiper,
.hero-slider .swiper-wrapper, .hero-slider .swiper-slide {
  height: 100%; min-height: 78vh;
}
.swiper-slide { position: relative; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: mareZoom 20s ease-out forwards;
}
@keyframes mareZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 42, 50, 0.72) 0%, rgba(14, 58, 68, 0.45) 48%, rgba(26, 107, 122, 0.25) 100%),
    linear-gradient(to top, rgba(10, 42, 50, 0.55) 0%, transparent 50%);
}
.slide-content {
  position: relative; z-index: 2;
  padding: 100px 0 120px; max-width: 640px;
}
.slide-brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #A8D5DE; margin-bottom: 14px;
  opacity: 0; animation: fadeUp 0.8s 0.1s ease forwards;
}
.slide-title {
  font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white);
  margin-bottom: 16px; max-width: 12ch;
  opacity: 0; animation: fadeUp 0.8s 0.25s ease forwards;
}
.slide-title span { color: #F0C4B6; font-style: italic; }
.slide-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 38ch;
  margin-bottom: 28px; font-weight: 400; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}
.slide-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.55s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-slider .swiper-pagination { bottom: 28px !important; }
.hero-slider .swiper-pagination-bullet {
  background: rgba(255,255,255,0.4); opacity: 1; width: 8px; height: 8px;
}
.hero-slider .swiper-pagination-bullet-active {
  background: var(--accent); width: 24px; border-radius: 4px;
}

/* Booking overlap */
.booking-overlap {
  position: relative; z-index: 5;
  margin-top: -48px; margin-bottom: 24px;
}
.booking-overlap .booking-search { margin: 0; }
.booking-search-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
}
.booking-search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0.7fr auto;
  gap: 14px; align-items: end;
}
/* Rezervasyon sayfası: tarih tek alan + yetişkin + çocuk + oda + buton */
.booking-search-grid--rooms {
  grid-template-columns: minmax(220px, 1.4fr) minmax(140px, 0.75fr) minmax(140px, 0.75fr) minmax(120px, 0.65fr) auto;
}
/* Ana sayfa: giriş + çıkış ayrı + yetişkin + çocuk + oda + buton */
.hero-book-form .booking-search-grid--rooms {
  grid-template-columns: repeat(2, minmax(120px, 1fr)) repeat(3, minmax(90px, 0.7fr)) auto;
}
.bs-field label {
  display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.bs-field .bs-input {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); background: var(--light);
  padding: 11px 14px; min-height: 52px; border-radius: var(--radius);
  transition: border-color var(--transition);
}
.bs-field .bs-input:focus-within { border-color: var(--primary); background: var(--white); }
.bs-field .bs-input i { color: var(--primary); }
.bs-field input, .bs-field select {
  border: 0; background: transparent; width: 100%;
  font-family: var(--font-family); font-size: 0.92rem; color: var(--dark); outline: none;
}
.bs-sep { color: var(--text-muted); }
.bs-guests { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; }
.bs-counter { display: inline-flex; align-items: center; gap: 10px; }
.bs-counter button {
  width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 50%;
  background: var(--white); color: var(--dark); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.bs-counter button:hover { border-color: var(--primary); color: var(--primary); }
.bs-counter strong { min-width: 18px; text-align: center; }
.bs-submit {
  height: 52px; padding: 0 28px; white-space: nowrap;
  background: var(--accent); color: var(--white); border: 0;
  border-radius: 999px; font-weight: 700; font-size: 0.88rem; cursor: pointer;
  box-shadow: 0 8px 20px rgba(224, 122, 95, 0.28);
  transition: background var(--transition), transform var(--transition);
}
.bs-submit:hover { background: #c96a51; transform: translateY(-1px); }
.bs-hint { margin-top: 12px; font-size: 0.82rem; color: var(--text-muted); }
.booking-search { margin-top: -40px; position: relative; z-index: 5; margin-bottom: 40px; }
.hotel-page-hero + .section-pad .booking-search {
  margin-top: -28px;
}

.system-note {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 0 0 22px; padding: 16px 18px;
  background: #F0F7F9; border: 1px solid #C5DCE3; border-left: 4px solid var(--primary);
  border-radius: var(--radius);
}
.system-note-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--primary); border-radius: 50%;
  border: 1px solid #C5DCE3; font-size: 1.1rem;
}
.system-note strong {
  display: block; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 4px;
}
.system-note p {
  margin: 0; font-size: 0.9rem; color: var(--text); line-height: 1.55;
}

/* Cards */
.dept-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 26px; height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.dept-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dept-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); color: var(--primary); font-size: 1.35rem; margin-bottom: 18px;
}
.dept-card h4 { font-size: 1.4rem; margin-bottom: 8px; }
.dept-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.dept-link { font-size: 0.82rem; font-weight: 700; color: var(--primary); }
.dept-link:hover { color: var(--accent); }

.service-card {
  display: block; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); height: 100%; color: inherit; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: inherit; }
.service-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-icon {
  height: 150px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #0E3A44, #1A6B7A); color: #A8D5DE; font-size: 2.4rem;
}
.service-content { padding: 22px 22px 26px; }
.service-content h4 { font-size: 1.4rem; margin: 4px 0 8px; color: var(--dark); }
.service-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.service-link { font-size: 0.8rem; font-weight: 700; color: var(--primary); }

.ref-card {
  background: var(--white); border-radius: var(--radius-lg); height: 100%;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ref-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ref-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy); }
.ref-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.ref-card:hover .ref-card-media img { transform: scale(1.07); }
.ref-card-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 2.4rem;
}
.ref-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--primary);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.ref-card-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.ref-card-title { font-size: 1.45rem; margin-bottom: 6px; }
.ref-card-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.ref-card-meta {
  display: flex; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 10px;
  font-size: 0.78rem; color: var(--text);
}
.ref-card-meta i { color: var(--primary); margin-right: 3px; }
.ref-card-link {
  margin-top: auto; font-size: 0.82rem; font-weight: 700; color: var(--primary);
}
.ref-card-link:hover { color: var(--accent); }

.projects-section { background: transparent; }

/* Stats */
.stats-section {
  background: linear-gradient(120deg, #0E3A44, #1A6B7A);
  padding: 64px 0; border-radius: 28px; margin: 24px auto;
  max-width: calc(1140px + 48px);
}
.stats-section .container { max-width: 1140px; }
.stat-item { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem); color: #A8D5DE; line-height: 1;
  margin-bottom: 8px;
}
.stat-suffix { font-size: 0.7em; }
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600;
}
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

/* Team */
.team-section { background: var(--white); }
.team-card {
  background: var(--light); border-radius: var(--radius-lg); overflow: hidden; height: 100%;
  border: 1px solid var(--border);
}
.team-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--surface); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body { padding: 18px; text-align: center; }
.team-card-body h5 { font-size: 1.25rem; margin-bottom: 4px; }
.team-card-body span { font-size: 0.78rem; color: var(--primary); font-weight: 600; }

/* Why us */
.why-us-section {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(14,58,68,0.94), rgba(26,107,122,0.88)),
    radial-gradient(ellipse at 80% 20%, rgba(224,122,95,0.2), transparent 50%);
  color: var(--white);
  border-radius: 32px;
  margin: 0 16px;
}
.why-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 26px 22px; height: 100%; position: relative;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.14); }
.why-num {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--font-display); font-size: 1.8rem; color: rgba(168,213,222,0.35);
}
.why-icon { font-size: 1.5rem; color: #F0C4B6; margin-bottom: 12px; }
.why-card h4 { color: var(--white); font-size: 1.25rem; margin-bottom: 6px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

/* Testimonials */
.testimonials-section { background: transparent; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; height: 100%; box-shadow: var(--shadow);
}
.testimonial-rating { color: var(--accent); margin-bottom: 12px; font-size: 0.85rem; }
.testimonial-text {
  font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5;
  color: var(--dark); margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.testimonial-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.testimonial-author-info strong { display: block; color: var(--dark); font-size: 0.9rem; font-family: var(--font-family); }
.testimonial-author-info span { font-size: 0.75rem; color: var(--text-muted); }

/* Blog */
.blog-section { background: var(--white); }
.blog-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg);
  height: 100%; overflow: hidden; transition: box-shadow var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-meta { display: flex; gap: 12px; margin-bottom: 8px; font-size: 0.75rem; color: var(--text-muted); }
.blog-card-cat { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card h5 { font-size: 1.25rem; margin-bottom: 8px; }
.blog-card h5 a { color: var(--dark); }
.blog-card h5 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 0.82rem; font-weight: 700; color: var(--primary);
}

/* Partners */
.partners-section {
  background: var(--navy); padding: 44px 0; border-radius: 28px; margin: 24px 16px;
}
.partners-label {
  text-align: center; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 24px; font-weight: 600;
}
.partner-logo {
  height: 60px; display: flex; align-items: center; justify-content: center;
  opacity: 0.5; filter: grayscale(1); transition: opacity var(--transition);
}
.partner-logo:hover { opacity: 0.9; }
.partner-logo img { max-height: 36px; width: auto; }

/* CTA */
.cta-section {
  position: relative; padding: 100px 0;
  background:
    linear-gradient(145deg, #0E3A44 0%, #1A6B7A 60%, #2A8A9A 100%);
  text-align: center; overflow: hidden;
  margin: 0;
  border-radius: 0;
}
.cta-section::before {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(224, 122, 95, 0.18); top: -120px; right: -80px;
  animation: floatBlob 12s ease-in-out infinite;
}
.cta-section::after {
  content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: rgba(168, 213, 222, 0.15); bottom: -80px; left: -40px;
  animation: floatBlob 10s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 16px); }
}
.cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta-eyebrow {
  font-family: var(--font-display); font-size: 1.35rem; color: #A8D5DE; margin-bottom: 12px;
}
.cta-heading {
  color: var(--white); font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-bottom: 12px;
}
.cta-sub { color: rgba(255,255,255,0.7); font-size: 1.02rem; margin-bottom: 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Page banner */
.page-banner {
  position: relative; padding: 64px 0 52px;
  background: linear-gradient(120deg, #0E3A44 0%, #1A6B7A 70%);
  color: var(--white); overflow: hidden; border-radius: 0 0 28px 28px;
}
.page-banner-bg { position: absolute; inset: 0; }
.page-banner-stripe { display: none; }
.page-banner-content { display: flex; align-items: center; gap: 16px; position: relative; z-index: 2; }
.page-banner-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); color: #A8D5DE; font-size: 1.25rem;
}
.page-banner h1, .page-banner-title {
  color: var(--white); font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin: 0 0 4px;
}
.page-banner .breadcrumb { background: none; padding: 0; margin: 0; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.5); }
.page-banner .breadcrumb-item.active { color: #F0C4B6; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.about-content { padding-left: 24px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.about-feature {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
}
.about-feature i { color: var(--primary); font-size: 1.15rem; }

.contact-form-box, .appt-box, .quote-form {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.form-control, .form-select {
  border-radius: var(--radius) !important; border-color: var(--border);
  padding: 12px 14px; font-family: var(--font-family);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Footer */
.site-footer {
  background: var(--secondary-dark);
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 2;
}
.footer-top { padding: 72px 0 48px; }
.footer-widget { margin-bottom: 8px; }
.footer-logo { max-height: 42px; margin-bottom: 14px; width: auto; }
.footer-logo-text {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 14px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.75; margin-bottom: 18px; color: rgba(255,255,255,0.5); }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.footer-contact-info > div {
  display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; line-height: 1.45;
}
.footer-contact-info i { color: #7EB8C4; margin-top: 3px; flex-shrink: 0; }
.footer-contact-info a { color: rgba(255,255,255,0.55); }
.footer-contact-info a:hover { color: #A8D5DE; }
.footer-contact-info strong { color: rgba(255,255,255,0.8); font-weight: 600; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a,
.footer-social .social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover,
.footer-social .social-icon:hover { background: var(--accent); color: var(--white); }
.footer-widget-title {
  color: var(--white); font-size: 1.15rem; margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.footer-widget-title::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; list-style: none; }
.footer-links li a {
  color: rgba(255,255,255,0.5); font-size: 0.88rem; display: inline-flex; align-items: center; gap: 8px;
}
.footer-links li a i { color: #7EB8C4; font-size: 0.65rem; }
.footer-links li a:hover { color: var(--white); }

.working-hours-list {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0; margin: 0; list-style: none;
}
.working-hours-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
}
.working-hours-list li:last-child { border-bottom: none; }
.working-hours-list li span:first-child { color: rgba(255,255,255,0.75); font-weight: 500; }
.working-hours-list li.closed span:last-child { color: #E07A5F; }
.working-hours-list .text-danger { color: #E07A5F !important; }

.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  padding: 28px 0;
  margin: 0;
}
.footer-newsletter h5 {
  color: var(--white); font-size: 1.25rem; font-family: var(--font-display); margin-bottom: 4px;
}
.footer-newsletter p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.newsletter-form {
  display: flex; gap: 10px; align-items: stretch; width: 100%;
}
.newsletter-form .form-control {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); border-radius: 999px !important; padding: 12px 18px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus {
  background: rgba(255,255,255,0.12); border-color: rgba(168,213,222,0.5);
  box-shadow: none; color: var(--white);
}
.newsletter-form .btn {
  white-space: nowrap; border-radius: 999px; padding: 12px 20px;
  background: var(--accent); border: 0; color: var(--white);
}
.newsletter-form .btn:hover { background: #c96a51; color: var(--white); }

.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links {
  display: flex; justify-content: flex-end; gap: 16px; flex-wrap: wrap;
  padding: 0; margin: 0; list-style: none;
}
.footer-bottom-links li a { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links li a:hover { color: var(--white); }

/* Floating actions */
.whatsapp-float,
.appt-float {
  position: fixed; z-index: 890;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white) !important; font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(14, 58, 68, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float { right: 20px; bottom: 88px; background: #25D366; }
.appt-float { right: 20px; bottom: 152px; background: var(--primary); font-size: 1.2rem; }
.whatsapp-float:hover,
.appt-float:hover { transform: translateY(-3px); color: var(--white) !important; }

#backToTop, .back-to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; border: 0; cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--transition);
  box-shadow: 0 8px 20px rgba(26, 107, 122, 0.35);
}
#backToTop.show, .back-to-top.show { opacity: 1; visibility: visible; }

.page-link { color: var(--primary); border-radius: var(--radius) !important; font-weight: 600; border-color: var(--border); }
.page-link:hover, .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: var(--white); }

.btn-sm-primary, .btn-sm-outline {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  font-size: 0.75rem; font-weight: 700; border-radius: 999px;
}
.btn-sm-primary { background: var(--primary); color: var(--white); }
.btn-sm-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-sm-outline { border: 1px solid var(--border); color: var(--navy); background: var(--white); }
.btn-sm-outline:hover { border-color: var(--primary); color: var(--primary); }

.project-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pd-scope-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pd-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.route-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 20px 0; }
.route-summary-item {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px;
}
.route-summary-item .rs-label {
  display: block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--primary); margin-bottom: 4px;
}
.route-summary-item .rs-value { font-weight: 700; color: var(--navy); font-size: 1rem; }
.route-audience {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; margin-top: 16px;
}
.route-audience h4 { font-size: 1.2rem; margin-bottom: 12px; color: var(--navy); }
.route-audience ul { list-style: none; padding: 0; margin: 0; }
.route-audience li {
  display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem;
}
.route-audience li:last-child { border-bottom: none; }
.route-audience li i { color: var(--primary); }

.quote-strip-inner { display: grid; grid-template-columns: 1fr 1.2fr; }
.quote-strip-left { padding: 36px; border-right: 1px solid rgba(255,255,255,0.08); }
.quote-strip-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; padding: 24px; align-items: end; }

.hero-stats-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.hero-stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hstat { padding: 24px 14px; text-align: center; position: relative; }
.hstat::after {
  content: ''; position: absolute; right: 0; top: 22%; bottom: 22%; width: 1px; background: var(--border);
}

/* Reservation */
.hotel-page-hero {
  position: relative; padding: 72px 0 60px;
  background: linear-gradient(120deg, #0E3A44 0%, #1A6B7A 70%);
  color: var(--white); overflow: hidden; border-radius: 0 0 28px 28px;
}
.hotel-page-hero::after { display: none; }
.hotel-page-hero .section-tag { color: #A8D5DE; }
.hotel-page-hero .section-tag::before { background: var(--accent); }
.hotel-page-hero h1 { color: var(--white); font-size: clamp(2.3rem, 4.5vw, 3.4rem); margin-bottom: 8px; }
.hotel-page-hero p { color: rgba(255,255,255,.7); max-width: 500px; margin: 0; }

.room-result {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 24px; overflow: hidden; display: grid; grid-template-columns: 280px 1fr;
  box-shadow: var(--shadow);
}
.room-result-media {
  min-height: 240px;
  background: linear-gradient(145deg, #0E3A44, #1A6B7A);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 3rem; position: relative;
}
.room-result-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.room-result-body { padding: 26px; }
.room-result-body h3 { font-size: 1.8rem; margin-bottom: 8px; }
.room-result-body h3 a { color: var(--dark); }
.room-result-body h3 a:hover { color: var(--primary); }
.room-result-desc { color: var(--text-muted); margin-bottom: 14px; }
.room-result .room-specs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.room-result .room-specs span { display: inline-flex; align-items: center; gap: 5px; font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.room-result .room-specs i { color: var(--primary); }
.room-result .room-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.room-result .room-amenities span {
  font-size: 0.72rem; font-weight: 600; padding: 5px 10px;
  background: var(--light); color: var(--text); border-radius: 999px;
}
.rate-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rate-plan {
  border: 1.5px solid var(--border); padding: 16px; background: var(--light);
  border-radius: var(--radius); display: flex; flex-direction: column; gap: 6px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.rate-plan:hover { border-color: var(--primary); box-shadow: var(--shadow); background: var(--white); }
.rate-plan-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--dark); }
.rate-plan-meta { font-size: 0.75rem; color: var(--text-muted); }
.rate-plan-price { font-size: 1.35rem; color: var(--navy); margin-top: auto; font-family: var(--font-display); }
.rate-plan-price small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--text-muted); font-family: var(--font-family); margin-top: 2px; }
.rate-plan-btn {
  display: inline-flex; align-items: center; justify-content: center; margin-top: 8px; padding: 10px 14px;
  background: var(--primary); color: var(--white); font-size: 0.78rem; font-weight: 700;
  border: 0; border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: background var(--transition);
}
.rate-plan-btn:hover { background: var(--accent); color: var(--white); }

.checkout-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.checkout-steps { display: flex; flex-direction: column; gap: 18px; }
.checkout-step {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px;
}
.checkout-step-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.checkout-step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem;
}
.checkout-step-head h3 { margin: 0; font-size: 1.4rem; }
.ck-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ck-grid .full { grid-column: 1 / -1; }
.ck-label {
  display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.ck-input, .ck-select, .ck-textarea {
  width: 100%; border: 1.5px solid var(--border); background: var(--light);
  padding: 11px 13px; font-family: var(--font-family); font-size: 0.92rem;
  color: var(--dark); outline: none; border-radius: var(--radius);
}
.ck-input:focus, .ck-select:focus, .ck-textarea:focus { border-color: var(--primary); background: var(--white); }
.ck-gender { display: flex; gap: 14px; padding-top: 8px; }
.ck-gender label { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-size: 0.9rem; }
.guest-block { border: 1px solid var(--border); padding: 18px; margin-bottom: 12px; background: var(--light); border-radius: var(--radius); }
.guest-block h4 { font-size: 1.1rem; margin-bottom: 12px; color: var(--navy); }
.pay-methods { display: grid; gap: 10px; margin-bottom: 16px; }
.pay-method {
  border: 1.5px solid var(--border); padding: 14px; display: flex; gap: 12px; align-items: flex-start;
  cursor: pointer; background: var(--light); border-radius: var(--radius); transition: border-color var(--transition);
}
.pay-method:has(input:checked), .pay-method.active {
  border-color: var(--primary); background: var(--white); box-shadow: inset 3px 0 0 var(--primary);
}
.pay-method input { margin-top: 3px; }
.pay-method strong { display: block; color: var(--dark); font-size: 0.9rem; }
.pay-method span { font-size: 0.8rem; color: var(--text-muted); }
.bank-list { display: grid; gap: 8px; margin: 10px 0 16px; }
.bank-item { border: 1px solid var(--border); padding: 12px; background: var(--white); font-size: 0.85rem; border-radius: var(--radius); }
.bank-item strong { display: block; color: var(--dark); }
.card-fields { display: none; margin-top: 8px; }
.card-fields.show { display: block; }
.card-pay-info {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
}
.card-pay-merchant {
  font-weight: 700; color: var(--dark); margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
}
.card-pay-merchant i { color: var(--primary); }
.card-pay-info p { margin: 0; font-size: 0.85rem; color: var(--text); line-height: 1.5; }
.checkout-summary {
  background: linear-gradient(160deg, #0E3A44, #1A6B7A); color: var(--white);
  padding: 26px; position: sticky; top: 96px; border-radius: var(--radius-lg);
}
.checkout-summary h3 { color: var(--white); font-size: 1.45rem; margin-bottom: 16px; }
.checkout-summary .summary-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 0.88rem;
}
.checkout-summary .summary-row span { color: rgba(255,255,255,.55); }
.checkout-summary .summary-row strong { color: var(--white); font-weight: 600; text-align: right; }
.checkout-summary .summary-row--discount strong { color: #A8D5DE; }
.res-success .summary-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem;
}
.res-success .summary-row span { color: var(--text-muted); }
.res-success .summary-row strong { color: var(--dark); font-weight: 600; text-align: right; }
.coupon-box {
  margin-top: 16px; padding: 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
}
.coupon-box label {
  display: block; font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px;
}
.coupon-row { display: flex; gap: 8px; }
.coupon-row input {
  flex: 1; min-width: 0; border: 0; border-radius: var(--radius);
  padding: 10px 12px; font-size: 0.9rem; font-family: var(--font-family);
  color: var(--dark); background: var(--white);
  text-transform: uppercase; letter-spacing: 0.04em; outline: none;
}
.coupon-apply {
  border: 0; border-radius: var(--radius); padding: 0 14px;
  background: var(--accent); color: var(--white); font-weight: 700;
  font-size: 0.82rem; cursor: pointer; white-space: nowrap;
  height: 42px;
}
.coupon-apply:hover { background: #c96a51; }
.coupon-msg { margin: 8px 0 0; font-size: 0.8rem; }
.coupon-msg.ok { color: #A8D5DE; }
.coupon-msg.err { color: #F5B7A8; }
.coupon-hint { margin: 8px 0 0; font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.summary-total {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2);
  display: flex; justify-content: space-between; align-items: end;
}
.summary-total span { color: #A8D5DE; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.summary-total strong { font-size: 1.6rem; color: var(--white); font-family: var(--font-display); }
.checkout-submit {
  width: 100%; margin-top: 20px; padding: 14px; background: var(--accent); color: var(--white); border: 0;
  font-weight: 700; font-size: 0.9rem; cursor: pointer; border-radius: 999px;
  transition: background var(--transition);
}
.checkout-submit:hover { background: #c96a51; }
.checkout-note { margin-top: 12px; font-size: 0.78rem; color: rgba(255,255,255,.45); line-height: 1.5; }
.checkout-back {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; padding: 12px 16px;
  width: 100%; border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 999px; color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem; font-weight: 600; text-align: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.checkout-back:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  color: var(--white) !important;
}
.checkout-back i { font-size: 0.95rem; }
.res-success {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 52px 32px; text-align: center; max-width: 620px; margin: 0 auto; box-shadow: var(--shadow);
}
.res-success i { font-size: 2.8rem; color: var(--primary); margin-bottom: 14px; display: block; }
.res-success h2 { margin-bottom: 8px; }

/* ============================================================
   INNER PAGES — news, contact, rooms, details
   ============================================================ */
.page-banner {
  position: relative; padding: 64px 0 52px;
  background: linear-gradient(120deg, #0E3A44 0%, #1A6B7A 70%);
  color: var(--white); overflow: hidden; border-radius: 0 0 28px 28px;
}
.page-banner > .container { position: relative; z-index: 2; }
.page-banner h1 {
  color: var(--white); font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0 0 8px; font-weight: 400;
}

/* News list */
.news-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; color: inherit;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.news-img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface); }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-img-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #0E3A44, #1A6B7A);
  color: rgba(255,255,255,0.35); font-size: 2.5rem;
}
.news-content { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.news-date {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px;
}
.news-content h5 {
  font-size: 1.3rem; margin-bottom: 8px; color: var(--dark); line-height: 1.3;
}
.news-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; flex: 1; }
.news-link {
  font-size: 0.82rem; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
}
.news-card:hover .news-link { color: var(--accent); }

/* News article */
.news-article {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
}
.news-article h2 { font-size: 1.9rem; margin-bottom: 12px; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem; color: var(--text-muted);
}
.article-meta i { color: var(--primary); }
.content-body { line-height: 1.8; color: var(--text); }
.content-body p { margin-bottom: 1rem; }
.content-body img { max-width: 100%; border-radius: var(--radius); margin: 1rem 0; }
.content-body h2, .content-body h3, .content-body h4 { margin: 1.4rem 0 0.6rem; color: var(--dark); }
.share-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
}
.share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white) !important; font-size: 0.95rem;
}
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #111; }
.share-btn.whatsapp { background: #25D366; }
.share-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Sidebar */
.sidebar-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.sidebar-widget h5 {
  font-size: 1.2rem; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border); color: var(--dark);
}
.sidebar-news-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border); color: inherit;
}
.sidebar-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-news-item:hover { color: inherit; }
.sidebar-news-item img,
.sidebar-news-ph {
  width: 64px; height: 64px; border-radius: var(--radius);
  object-fit: cover; flex-shrink: 0; background: var(--surface);
}
.sidebar-news-ph {
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1.2rem;
}
.sidebar-news-item span {
  display: block; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 4px;
}
.sidebar-news-item p {
  margin: 0; font-size: 0.88rem; font-weight: 600; color: var(--dark); line-height: 1.35;
}
.sidebar-news-item:hover p { color: var(--primary); }
.sidebar-service-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  color: var(--dark); font-size: 0.9rem; font-weight: 500;
}
.sidebar-service-link:last-child { border-bottom: none; }
.sidebar-service-link i { color: var(--primary); font-size: 1.05rem; }
.sidebar-service-link:hover { color: var(--primary); }
.appt-widget {
  background: linear-gradient(145deg, #0E3A44, #1A6B7A);
  border: none; color: rgba(255,255,255,0.8);
}
.appt-widget h5 { color: var(--white); border-bottom-color: rgba(255,255,255,0.15); }
.appt-widget .btn-warning {
  background: var(--accent); border: 0; color: var(--white);
  border-radius: 999px; padding: 12px;
}
.appt-widget .btn-warning:hover { background: #c96a51; color: var(--white); }
.appt-widget .btn-outline-light {
  border-radius: 999px; border-color: rgba(255,255,255,0.35); color: var(--white);
}
.appt-widget .btn-outline-light:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* Contact */
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 16px;
  box-shadow: var(--shadow);
}
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); color: var(--primary); font-size: 1.15rem;
}
.ci-body {
  flex: 1; min-width: 0; width: 100%;
}
.ci-body h6 {
  font-family: var(--font-family); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--dark);
  margin-bottom: 6px;
}
.ci-body p { margin: 0 0 4px; font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.ci-body a { color: var(--primary); font-weight: 600; }

/* Hours + social: stack so content has full width */
.contact-hours-card,
.contact-social-card {
  flex-direction: column;
  gap: 14px;
  padding: 20px 18px;
}
.contact-hours-card .ci-icon,
.contact-social-card .ci-icon {
  width: 40px; height: 40px; border-radius: 10px; font-size: 1.05rem;
}
.contact-hours-card .ci-body,
.contact-social-card .ci-body {
  width: 100%;
}
.contact-hours-card .ci-body h6,
.contact-social-card .ci-body h6 {
  margin-bottom: 0; font-size: 0.9rem;
}
.ci-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.ci-head .ci-icon { margin: 0; }

.wh-grid {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 0;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wh-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.wh-row:last-child { border-bottom: none; }
.wh-row span:first-child {
  color: var(--dark); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wh-row span:last-child {
  color: var(--text); font-weight: 500; text-align: right; white-space: nowrap;
}
.wh-row .text-danger { color: #E07A5F !important; font-weight: 600; }

.contact-social-card .ci-body > p {
  margin-bottom: 14px !important;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
}
.contact-socials {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.contact-socials a {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary-soft); color: var(--primary); font-size: 1.1rem;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.contact-socials a:hover {
  background: var(--primary); color: var(--white);
  transform: translateY(-2px);
}
.contact-form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
}
.contact-form-box h4 { font-size: 1.5rem; color: var(--dark); }
.contact-form-box .form-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.contact-form-box .btn-primary {
  background: var(--primary); border: 0; border-radius: 999px;
  font-weight: 700; padding: 12px 28px;
}
.contact-form-box .btn-primary:hover { background: var(--primary-dark); }
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); min-height: 280px;
}
.contact-map iframe { width: 100%; min-height: 320px; border: 0; display: block; }

/* Rooms list */
.project-filters {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.filter-btn {
  display: inline-flex; align-items: center;
  padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--dark); font-size: 0.84rem; font-weight: 600;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: var(--primary); border-color: var(--primary); color: var(--white);
}
.project-grid-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; height: 100%;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-grid-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pgc-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy); }
.pgc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-grid-card:hover .pgc-img img { transform: scale(1.06); }
.pgc-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--primary);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.pgc-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.pgc-body h4 { font-size: 1.4rem; margin-bottom: 10px; }
.pgc-body h4 a { color: var(--dark); }
.pgc-body h4 a:hover { color: var(--primary); }
.pgc-meta {
  display: flex; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 10px;
  font-size: 0.8rem; color: var(--text); font-weight: 500;
}
.pgc-meta i { color: var(--primary); margin-right: 3px; }
.pgc-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.pgc-link {
  margin-top: auto; font-size: 0.84rem; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.pgc-link:hover { color: var(--accent); }

/* Room / service detail blocks */
.pd-section { background: var(--light); }
.pd-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.pd-block-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--dark); margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pd-block-title i { color: var(--primary); }
.pd-lead { font-size: 1.05rem; color: var(--text); line-height: 1.7; }
.pd-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.pd-gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pd-gallery .gallery-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius); background: var(--surface);
}
.pd-gallery .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(14,58,68,0.45); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition); font-size: 1.4rem;
}
.pd-gallery a:hover .gallery-overlay { opacity: 1; }
.pd-process { display: flex; flex-direction: column; gap: 14px; }
.pd-step { display: flex; gap: 14px; align-items: flex-start; }
.pd-step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.pd-step-title { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.pd-step-desc { font-size: 0.9rem; color: var(--text-muted); }
.pd-video { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; }
.pd-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.pd-sidebar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.pd-sidebar-card-head {
  background: var(--navy); color: var(--white); padding: 16px 20px;
  font-weight: 600; display: flex; align-items: center; gap: 8px;
}
.pd-sidebar-card-head i { color: #A8D5DE; }
.pd-sidebar-card-body { padding: 8px 20px 16px; }
.pd-meta-list { margin: 0; padding: 0; list-style: none; }
.pd-meta-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.pd-meta-list li:last-child { border-bottom: none; }
.pd-meta-label { color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.pd-meta-label i { color: var(--primary); }
.pd-meta-val { font-weight: 700; color: var(--dark); text-align: right; }

.pd-cta {
  background: linear-gradient(145deg, #0E3A44, #1A6B7A);
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  color: rgba(255,255,255,0.75); margin-bottom: 18px;
}
.pd-cta-icon { font-size: 1.8rem; color: #A8D5DE; display: block; margin-bottom: 10px; }
.pd-cta h5 { color: var(--white); font-size: 1.35rem; margin-bottom: 8px; }
.pd-cta p { font-size: 0.9rem; margin-bottom: 18px; }
.pd-cta .btn-secondary-custom {
  background: var(--accent); border-color: var(--accent); color: var(--white);
}
.pd-cta .btn-secondary-custom:hover { background: #c96a51; border-color: #c96a51; color: var(--white); }

.pd-phone {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 18px; color: inherit;
  box-shadow: var(--shadow); margin-bottom: 18px;
}
.pd-phone:hover { color: inherit; border-color: var(--primary); }
.pd-phone-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.pd-phone strong { display: block; color: var(--dark); font-size: 1rem; }
.pd-phone span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   ROOM DETAIL (demo-like layout)
   ============================================================ */
.room-banner { padding: 72px 0 56px; }
.room-banner-overlay {
  background: linear-gradient(120deg, rgba(14,58,68,0.88) 0%, rgba(26,107,122,0.72) 70%) !important;
}
.room-banner-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #A8D5DE; margin-bottom: 10px;
}

.room-detail { background: var(--light); }
.room-intro {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); margin-bottom: 20px;
}
.room-intro-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px;
}
.room-intro-desc {
  font-size: 1.02rem; color: var(--text-muted); max-width: 54ch; margin-bottom: 22px;
}
.room-specs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
}
.room-spec {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 14px;
  font-size: 0.86rem; font-weight: 600; color: var(--dark);
}
.room-spec i { color: var(--primary); }
.room-intro-meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 22px;
}
.room-price-chip {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 12px 16px;
}
.room-price-chip span {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: #A8D5DE;
}
.room-price-chip strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }
.room-price-chip small { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.room-meta-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 10px 14px;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
}
.room-meta-chip i { color: var(--primary); }
.room-meta-ok { border-color: rgba(26,107,122,0.25); background: var(--primary-soft); color: var(--primary); }
.room-intro-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.room-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.room-panel-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}
.room-panel-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.room-panel-title { font-size: 1.45rem; margin-bottom: 14px; }

.room-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.room-gallery-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius); background: var(--surface); display: block;
}
.room-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-gallery-item:hover img { transform: scale(1.05); }
.room-gallery-zoom {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,58,68,0.4); color: var(--white); font-size: 1.3rem;
  opacity: 0; transition: opacity var(--transition);
}
.room-gallery-item:hover .room-gallery-zoom { opacity: 1; }

.room-amenities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.room-amenity {
  display: flex; align-items: center; gap: 10px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  font-size: 0.9rem; font-weight: 500; color: var(--dark);
}
.room-amenity i { color: var(--primary); font-size: 1.1rem; }

.room-conditions { list-style: none; margin: 0; padding: 0; }
.room-conditions li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.room-conditions li:last-child { border-bottom: none; }
.room-conditions strong { color: var(--dark); }
.room-conditions span { color: var(--text-muted); font-size: 0.9rem; }
.room-policy-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.room-policy-chips span {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 12px; font-size: 0.8rem; font-weight: 600;
}
.room-policy-chips i { color: var(--primary); }

.room-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.room-book-card {
  background: linear-gradient(160deg, #0E3A44, #1A6B7A);
  color: rgba(255,255,255,0.8); border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-lg);
}
.room-book-price { margin-bottom: 14px; }
.room-book-price span {
  display: block; font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #A8D5DE; margin-bottom: 4px;
}
.room-book-price strong {
  font-family: var(--font-display); font-size: 1.8rem; color: var(--white); font-weight: 400;
}
.room-book-price small { color: rgba(255,255,255,0.5); margin-left: 4px; }
.room-book-card h4 { color: var(--white); font-size: 1.35rem; margin-bottom: 14px; }
.room-book-list { list-style: none; margin: 0 0 18px; padding: 0; }
.room-book-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}
.room-book-list li:last-child { border-bottom: none; }
.room-book-list i { color: #A8D5DE; }
.room-book-card .btn-outline-dark-custom {
  border-color: rgba(255,255,255,0.4); color: var(--white);
}
.room-book-card .btn-outline-dark-custom:hover {
  background: var(--white); color: var(--navy); border-color: var(--white);
}

.room-side-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow);
}
.room-side-box h5 {
  font-size: 1.05rem; margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.room-quick-info { list-style: none; margin: 0; padding: 0; }
.room-quick-info li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 0.9rem; color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.room-quick-info li:last-child { border-bottom: none; }
.room-quick-info i { color: var(--primary); width: 18px; text-align: center; }
.room-quick-links { display: flex; flex-direction: column; gap: 8px; }
.room-quick-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: var(--radius);
  background: var(--light); border: 1px solid var(--border);
  color: var(--dark); font-weight: 600; font-size: 0.88rem;
}
.room-quick-links a:hover { border-color: var(--primary); color: var(--primary); }
.room-quick-links i { color: var(--primary); }
.room-phone-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px; font-weight: 700;
  color: var(--dark); box-shadow: var(--shadow);
}
.room-phone-link:hover { color: var(--primary); border-color: var(--primary); }
.room-phone-link i { color: var(--primary); }

.related-rooms-section { background: var(--white); }
.related-room-card {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; height: 100%;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-room-media {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--navy); display: block;
}
.related-room-media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.related-room-card:hover .related-room-media img { transform: scale(1.05); }
.related-room-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 2.4rem;
}
.related-room-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--white); color: var(--primary);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.related-room-body {
  padding: 20px; display: flex; flex-direction: column; flex: 1;
}
.related-room-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.related-room-body h3 a { color: var(--dark); }
.related-room-body h3 a:hover { color: var(--primary); }
.related-room-body p {
  font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; flex: 1;
}
.related-room-area { color: var(--text); font-weight: 600; }
.related-room-price {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--navy); margin-bottom: 14px;
}
.related-room-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.related-room-actions .btn-sm-outline,
.related-room-actions .btn-sm-primary {
  flex: 1; justify-content: center; text-align: center; text-decoration: none;
}

.pd-related-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border); color: inherit;
}
.pd-related-item:last-child { border-bottom: none; }
.pd-related-item:hover { color: inherit; }
.pd-related-thumb {
  width: 64px; height: 52px; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); flex-shrink: 0;
}
.pd-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-related-title { font-size: 0.9rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.pd-related-item:hover .pd-related-title { color: var(--primary); }
.pd-related-year { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.project-status-completed,
.project-status-ongoing,
.project-status-planned {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.project-status-completed { background: rgba(34,197,94,0.18); color: #86efac; }
.project-status-ongoing { background: rgba(224,122,95,0.22); color: #F0C4B6; }
.project-status-planned { background: rgba(168,213,222,0.2); color: #A8D5DE; }

/* FAQ / SSS */
.faq-group { margin-bottom: 36px; }
.faq-cat-title {
  font-size: 1.5rem; color: var(--dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.faq-cat-title::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.faq-item.accordion-item,
.accordion-item.faq-item {
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item .accordion-button {
  font-family: var(--font-family);
  font-size: 1rem; font-weight: 600;
  color: var(--dark); background: var(--white);
  padding: 18px 22px; box-shadow: none !important;
  border-radius: 0 !important;
}
.faq-item .accordion-button:not(.collapsed) {
  background: var(--primary-soft); color: var(--primary);
}
.faq-item .accordion-button:focus { box-shadow: none; }
.faq-item .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A6B7A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-item .accordion-body {
  padding: 4px 22px 20px;
  color: var(--text); line-height: 1.75; font-size: 0.95rem;
}
.faq-cta {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow);
}
.faq-cta h5 {
  font-size: 1.6rem; color: var(--dark); margin-bottom: 8px;
}
.faq-cta p {
  color: var(--text-muted); margin-bottom: 22px; font-size: 0.98rem;
}
.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 28px; font-weight: 600; font-size: 0.82rem;
  border: 1.5px solid var(--navy); border-radius: 999px; cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-custom:hover { background: var(--navy); color: var(--white); }

/* Responsive */
@media (max-width: 575px) {
  .route-summary, .pd-scope-list { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .quote-strip-form { grid-template-columns: 1fr 1fr; }
  .quote-strip-btn { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 991px) {
  .main-nav {
    position: fixed; top: 0; left: -100%; width: 300px; height: 100vh;
    background: var(--white); padding: 80px 0 40px; overflow-y: auto;
    transition: left var(--transition); z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open, .main-nav.active { left: 0; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { padding: 14px 22px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown-menu-custom {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--light); display: none;
  }
  .nav-item.open .dropdown-menu-custom { display: block; }
  .mobile-menu-btn { display: flex; }
  .hdr-emergency { display: none; }
  .about-content { padding-left: 0; margin-top: 24px; }
  .about-features { grid-template-columns: 1fr; }
  .hero-slider, .default-hero, .hero-swiper, .swiper-slide { min-height: 70vh; }
  .slide-content { padding: 72px 0 100px; }
  .hero-slider, .default-hero { border-radius: 0 0 20px 20px; }
  .booking-search-grid,
  .booking-search-grid--rooms,
  .hero-book-form .booking-search-grid--rooms { grid-template-columns: 1fr 1fr; }
  .bs-submit { grid-column: 1 / -1; }
  .room-result { grid-template-columns: 1fr; }
  .room-result-media { min-height: 200px; }
  .rate-plans { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .stats-section, .why-us-section, .partners-section { margin-left: 12px; margin-right: 12px; border-radius: 20px; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom-links { justify-content: flex-start; margin-top: 10px; }
  .whatsapp-float { bottom: 80px; right: 14px; }
  .appt-float { bottom: 140px; right: 14px; }
  .quote-strip-inner { grid-template-columns: 1fr; }
  .pd-gallery { grid-template-columns: repeat(2, 1fr); }
  .room-gallery { grid-template-columns: repeat(2, 1fr); }
  .room-amenities-grid { grid-template-columns: 1fr; }
  .room-sidebar { position: static; }
  .news-article { padding: 22px; }
  .contact-form-box { padding: 22px; }
}
@media (max-width: 767px) {
  .top-bar-left { display: none; }
  .section-pad { padding: 64px 0; }
  .hero-stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .hstat:nth-child(2)::after { display: none; }
  .stat-divider { display: none; }
  .booking-overlap { margin-top: -36px; }
  .page-banner { border-radius: 0 0 18px 18px; padding: 48px 0 40px; }
  .room-intro { padding: 22px 18px; }
  .room-panel { padding: 20px; }
}
@media (max-width: 575px) {
  .container { padding: 0 16px; }
  .slide-title { font-size: 2.2rem; }
  .footer-top { padding: 44px 0 28px; }
  .contact-form-box, .appt-box, .quote-form { padding: 20px; }
  .booking-search-grid,
  .booking-search-grid--rooms,
  .hero-book-form .booking-search-grid--rooms,
  .ck-grid { grid-template-columns: 1fr; }
  .booking-search-card { padding: 16px; }
  .logo-name { font-size: 1.15rem; }
  .pd-gallery, .room-gallery { grid-template-columns: 1fr 1fr; }
}

/* Cookie banner */
.cookie-banner{
  position:fixed;left:0;right:0;bottom:0;z-index:90;
  background:rgba(12,31,46,.96);color:#fff;
  padding:16px 0;box-shadow:0 -8px 28px rgba(12,31,46,.25);
  transform:translateY(110%);opacity:0;transition:transform .35s ease,opacity .35s ease;
}
.cookie-banner.is-visible{transform:translateY(0);opacity:1}
.cookie-banner-inner{
  max-width:1400px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.cookie-banner-text{margin:0;font-size:.92rem;line-height:1.5;flex:1;min-width:220px}
.cookie-banner-text a{color:#9fe7f0;text-decoration:underline;text-underline-offset:2px}
.cookie-banner-btn{
  flex-shrink:0;border:0;border-radius:999px;padding:10px 22px;font-weight:700;
  background:#fff;color:#222;cursor:pointer;transition:transform .15s;
}
.cookie-banner-btn:hover{transform:scale(1.03)}
body.has-cookie-banner .whatsapp-float{bottom:150px}
body.has-cookie-banner .appt-float{bottom:210px}
body.has-cookie-banner .back-to-top{bottom:150px}
@media (max-width:576px){
  .cookie-banner-inner{flex-direction:column;align-items:stretch}
  .cookie-banner-btn{width:100%}
}
