/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0a1628;
  --navy-2: #0f1f38;
  --navy-light: #1a2d4d;
  --gold: #d4b76e;
  --gold-light: #ecd088;
  --gold-dark: #b89a4d;
  --white: #ffffff;
  --cream: #f8f5ef;
  --gray-100: #f5f6fa;
  --gray-200: #e8eaf0;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #0f172a;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
.text-gold { color: var(--gold); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  transition: all 0.3s ease;
}
.site-header.scrolled { background: rgba(10, 22, 40, 0.97); box-shadow: var(--shadow-md); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 48px; width: auto; border-radius: 50%; }
.brand-text { color: var(--white); display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 17px; font-weight: 700; letter-spacing: 0.3px; }
.brand-text small { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s;
}
.main-nav a:hover::after { width: 100%; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  cursor: pointer; border: none; transition: all 0.3s;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4d 40%, #0f1f38 100%);
  z-index: 0;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,169,98,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,169,98,0.1) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=1920&q=80') center/cover;
  opacity: 0.25;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-eyebrow {
  display: inline-block; color: var(--gold); font-size: 13px;
  letter-spacing: 3px; font-weight: 600; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.8);
  max-width: 600px; margin-bottom: 40px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 650px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--gold);
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ===== Section ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  color: var(--gold); font-size: 13px; letter-spacing: 3px;
  font-weight: 600; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy); margin-bottom: 16px;
}
.section-desc {
  color: var(--gray-500); max-width: 600px; margin: 0 auto;
  font-size: 16px;
}

/* ===== Filter Bar ===== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px; border: 1.5px solid var(--gray-200);
  background: var(--white); border-radius: 50px;
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  cursor: pointer; transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active {
  background: var(--navy); color: var(--gold);
  border-color: var(--navy);
}

/* ===== Resort Grid ===== */
.resort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.resort-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid var(--gray-200);
}
.resort-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 98, 0.3);
}
.resort-img-wrap {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--gray-100);
}
.resort-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.resort-card:hover .resort-img-wrap img { transform: scale(1.08); }
.resort-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(10, 22, 40, 0.9); color: var(--gold);
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}
.resort-stars {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.95); color: var(--gold);
  padding: 6px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
}
.resort-body { padding: 22px 24px 24px; }
.resort-location {
  font-size: 12px; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.resort-name {
  font-size: 20px; font-weight: 700; color: var(--navy);
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px; line-height: 1.3;
}
.resort-highlights {
  list-style: none; margin-bottom: 16px;
}
.resort-highlights li {
  font-size: 13px; color: var(--gray-700);
  padding: 4px 0 4px 20px; position: relative;
}
.resort-highlights li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 10px; top: 6px;
}
.resort-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--gray-200);
}
.resort-price-label { font-size: 11px; color: var(--gray-500); text-transform: uppercase; }
.resort-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--gold);
}
.resort-price small { font-size: 12px; color: var(--gray-500); font-weight: 400; }
.btn-detail {
  padding: 10px 18px; font-size: 13px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-sm); font-weight: 600;
  transition: all 0.25s;
}
.btn-detail:hover { background: var(--gold); color: var(--navy); }

/* ===== Why Us ===== */
.why-us { background: var(--cream); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--white); padding: 36px 28px;
  border-radius: var(--radius-lg); text-align: center;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
  border-top: 3px solid var(--gold);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 28px;
}
.feature-title {
  font-size: 18px; color: var(--navy);
  font-family: 'Playfair Display', serif; font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ===== Contact ===== */
.contact-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white); padding: 100px 0;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(201,169,98,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(201,169,98,0.08) 0%, transparent 40%);
}
.contact-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}
.contact-info p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 16px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,98,0.2);
}
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; color: var(--white); font-size: 15px; }
.contact-item-text span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== Footer ===== */
.site-footer {
  background: #060d1a; color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}
.footer-brand strong { color: var(--white); font-size: 18px; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-col h4 { color: var(--gold); font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 13px; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { text-align: center; font-size: 12px; }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(8px); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 800px; width: 90%; max-height: 90vh; overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.modal-overlay.active .modal-content { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: none;
  font-size: 20px; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--navy); color: var(--gold); }
.modal-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.modal-body { padding: 28px 32px 32px; }
.modal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200);
}
.modal-header h3 {
  font-size: 26px; color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.modal-location { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.modal-section { margin-bottom: 20px; }
.modal-section h4 {
  font-size: 14px; color: var(--gold); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 10px;
}
.modal-amenities { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-amenity {
  padding: 6px 14px; background: var(--cream);
  border-radius: 50px; font-size: 12px; color: var(--navy);
  border: 1px solid rgba(201,169,98,0.2);
}
.modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 2px solid var(--gold);
  margin-top: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .brand-text { display: none; }
  .resort-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
  .section { padding: 70px 0; }
}

/* ===== Star Filter ===== */
.star-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.star-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.star-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.star-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.star-btn .star-icon {
  color: var(--gold);
}
.filter-section {
  margin-bottom: 48px;
}
.filter-section-title {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* ===== Results Count ===== */
.results-info {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--gray-500);
}
.results-info strong {
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

/* ===== Resort Card Status Badge Variants ===== */
.resort-badge.partner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}
.resort-badge.pending {
  background: rgba(10, 22, 40, 0.85);
  color: var(--gold);
}

/* ===== Hero Adjustments for Resort Page ===== */
.hero-resort .hero-bg {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f38 50%, #1a2d4d 100%);
}
.hero-resort .hero-overlay {
  background: url('images/hero_resort.jpg') center/cover;
  opacity: 0.3;
}
.hero-resort .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.7) 100%);
  z-index: 1;
}

/* ===== Hero Hotline Badge ===== */
.hero-hotline-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-top: 32px;
  backdrop-filter: blur(10px);
}
.hotline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.6); }
  50% { box-shadow: 0 0 0 12px rgba(201, 169, 98, 0); }
}
.hotline-info small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.hotline-number {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hotline-number:hover {
  color: var(--gold-light);
}

/* ===== Hero Booking Form ===== */
.hero-booking-wrap {
  position: relative;
  margin-top: -80px;
  margin-bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 20px;
}
.hero-booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.2);
  padding: 24px 32px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}
.booking-form-title {
  text-align: center;
  margin-bottom: 16px;
}
.booking-form-title h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}
.booking-form-title p {
  font-size: 13px;
  color: var(--gray-500);
}
.booking-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s;
  font-family: inherit;
}
.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.booking-submit {
  grid-column: span 1;
}
.btn-booking {
  width: 100%;
  padding: 12px 16px;
  font-size: 13px;
  white-space: nowrap;
}

/* ===== Resort Card Enhancements ===== */
.room-count-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 22, 40, 0.85);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.resort-brand {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.resort-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.btn-book-card {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-book-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}
.badge-4star {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: var(--white);
}

/* ===== Room Types ===== */
.modal-section h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-section h4::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
}
.room-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.room-type-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: all 0.25s;
  background: var(--white);
}
.room-type-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.15);
  transform: translateX(2px);
}
.room-type-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.room-type-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.room-tags {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.room-tag {
  background: rgba(201, 169, 98, 0.12);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.tag-view {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}
.room-type-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--gray-500);
}
.room-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.room-amenities {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 10px;
  line-height: 1.5;
}
.room-type-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px dashed var(--gray-200);
  padding-top: 10px;
}
.room-price {
  text-align: right;
}
.room-price-label {
  font-size: 10px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}
.room-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

/* ===== Booking Form in Modal ===== */
.modal-booking-section {
  background: linear-gradient(135deg, #f8f5ef 0%, #ffffff 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
}
.booking-section-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-section-title svg {
  color: var(--gold);
}
.booking-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-900);
  background: var(--white);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 60px;
}
.btn-booking-submit {
  padding: 14px 24px;
  font-size: 15px;
  margin-top: 8px;
}
.btn-full {
  width: 100%;
}
.booking-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 12px;
}
.booking-note a {
  color: var(--gold-dark);
}

/* ===== Modal Footer Contact Row ===== */
.modal-footer {
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  margin-top: 24px;
}
.modal-contact-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Big Contact Phone ===== */
.contact-big-phone {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
  transition: all 0.3s;
}
.contact-big-phone:hover {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.25) 0%, rgba(201, 169, 98, 0.1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}
.big-phone-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-ring 2s ease-in-out infinite;
}
.big-phone-text small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.big-phone-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 1px;
}

/* ===== Contact Items Link ===== */
.contact-item-link {
  transition: all 0.2s;
}
.contact-item-link:hover {
  background: rgba(201, 169, 98, 0.1);
  transform: translateX(4px);
}
.contact-icon-zalo {
  background: linear-gradient(135deg, #0068ff, #0099ff) !important;
  color: var(--white) !important;
}

/* ===== Contact Form Card ===== */
.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,98,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-form-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form select {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 14px;
  width: 100%;
  font-family: inherit;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.contact-form select option {
  color: var(--gray-900);
  background: var(--white);
}

/* ===== Floating Call Button ===== */
.floating-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.4);
  transition: all 0.3s;
}
.floating-call-btn:hover {
  transform: scale(1.1);
}
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse-animation 2s ease-out infinite;
}
.pulse-ring.delay {
  animation-delay: 1s;
}
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ===== Booking Success Modal ===== */
.modal-small {
  max-width: 440px;
  text-align: center;
}
.booking-success {
  padding: 40px 30px;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
}
.booking-success h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}
.booking-success p {
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 14px;
}
.success-contact {
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.success-contact p {
  margin-bottom: 12px;
  color: var(--gray-700);
  font-size: 13px;
}
.success-contact .btn {
  padding: 12px 28px;
}

/* ===== Modal Header Right ===== */
.modal-header-right {
  text-align: right;
}

/* ===== Hero section spacing for booking form ===== */
.hero-resort {
  padding-bottom: 60px;
}

/* ===== Compact Form (used in card modal etc) ===== */
.compact-form .booking-grid-2 {
  gap: 10px;
  margin-bottom: 10px;
}
.compact-form .form-group {
  margin-bottom: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .booking-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .booking-submit {
    grid-column: span 3;
  }
  .big-phone-number {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .hero-booking-wrap {
    position: relative;
    bottom: auto;
    padding: 0 16px;
    margin-top: -60px;
    z-index: 10;
  }
  .hero-booking-wrap .container {
    padding: 0;
  }
  .hero-booking-form {
    padding: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .booking-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .booking-field label {
    font-size: 10px;
  }
  .booking-field input,
  .booking-field select {
    padding: 8px 10px;
    font-size: 12px;
  }
  .booking-submit {
    grid-column: span 2;
  }
  .booking-submit .btn-booking {
    padding: 10px 16px;
    font-size: 13px;
  }
  .hero-resort {
    padding-bottom: 0;
  }
  .hero-hotline-badge {
    display: none;
  }
  .big-phone-number {
    font-size: 24px;
  }
  .contact-big-phone {
    padding: 18px 20px;
  }
  .big-phone-icon {
    width: 52px;
    height: 52px;
  }
  .booking-grid-2 {
    grid-template-columns: 1fr;
  }
  .modal-header-right {
    text-align: left;
    margin-top: 12px;
  }
  .modal-header {
    flex-direction: column;
  }
  .resort-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .floating-call-btn {
    width: 48px;
    height: 48px;
    bottom: 70px;
    right: 16px;
  }
}
@media (max-width: 480px) {
  .booking-row {
    grid-template-columns: 1fr;
  }
  .booking-submit {
    grid-column: span 1;
  }
  .big-phone-number {
    font-size: 20px;
  }
  .contact-form-card {
    padding: 24px;
  }
  .room-type-header {
    flex-direction: column;
  }
}

/* ===== Hero Wave ===== */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ===== Resort Hero Adjustments ===== */
.hero-resort .hero-content {
  padding: 140px 0 120px;
  max-width: 700px;
}
.hero-resort .hero-stats {
  max-width: 700px;
  gap: 24px;
}
.hero-resort .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-resort .stat-num {
  font-size: 40px;
  line-height: 1.1;
}
.hero-resort .stat-label {
  font-size: 13px;
  line-height: 1.3;
}

/* ===== Booking Section ===== */
.booking-section {
  padding: 60px 0 40px;
  background: #ffffff;
}
.booking-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(10, 22, 40, 0.08);
  padding: 32px 40px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}
.booking-eyebrow {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.booking-form-card .booking-form-title {
  text-align: center;
  margin-bottom: 24px;
}
.booking-form-card .booking-form-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
}
.booking-form-card .booking-form-title p {
  color: #666;
  font-size: 14px;
  margin: 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  align-items: end;
}
.booking-grid .booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-grid .booking-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}
.booking-grid .booking-field input,
.booking-grid .booking-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: var(--navy);
  box-sizing: border-box;
}
.booking-grid .booking-field input:focus,
.booking-grid .booking-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.booking-grid .booking-submit {
  grid-column: auto;
}
.booking-grid .btn-booking {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  font-size: 14px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== Booking Section Responsive ===== */
@media (max-width: 1200px) {
  .booking-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-form-card {
    padding: 24px 20px;
  }
  .booking-form-card .booking-form-title h2 {
    font-size: 24px;
  }
  .hero-resort .hero-content {
    padding: 100px 0 80px;
  }
  .hero-resort .stat-num {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .hero-resort .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.5) 50%, rgba(10,22,40,0.75) 100%);
  z-index: 2;
  opacity: 1;
}

/* Hero dots indicator */
.hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .hero-dots {
    bottom: 90px;
  }
}

/* ===== Hero Slider - Force Override ===== */
.hero.hero-resort .hero-slider {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.hero.hero-resort .hero-slide {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0 !important;
  transition: opacity 1.2s ease-in-out !important;
  z-index: 1 !important;
}
.hero.hero-resort .hero-slide.active {
  opacity: 1 !important;
  z-index: 2 !important;
}
.hero.hero-resort .hero-slider .hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.3) 50%, rgba(10,22,40,0.6) 100%) !important;
  z-index: 3 !important;
  opacity: 1 !important;
}

/* ===== Resort List Section - Nền sang trọng ===== */
#resorts {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 30%, #f1f4f9 100%);
  position: relative;
}
#resorts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(201,169,98,0.06) 0%, transparent 100%);
  pointer-events: none;
}

/* Resort card nâng cao - viền vàng hover nhẹ */
.resort-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 169, 98, 0.08);
}
.resort-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
  border-color: rgba(201, 169, 98, 0.3);
}

/* ===== Why Us Section - nâng cấp ===== */
.why-us {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
}

/* ===== Booking Section - nâng cao ===== */
.booking-section {
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4d 50%, #0f1f38 100%);
  position: relative;
  padding: 80px 0;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,169,98,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,169,98,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.booking-section .booking-form-card {
  position: relative;
  z-index: 2;
}
.booking-section .booking-form-title h2 {
  color: var(--white);
}
.booking-section .booking-form-title p {
  color: rgba(255,255,255,0.7);
}
.booking-section .booking-eyebrow {
  color: var(--gold);
}

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

/* ===== Booking Form - Fix căn chỉnh ===== */
.booking-section .booking-form-title {
  text-align: center !important;
  margin-bottom: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
}
.booking-section .booking-eyebrow {
  margin: 0 !important;
}
.booking-section .booking-form-title h2 {
  margin: 0 !important;
  line-height: 1.2 !important;
}
.booking-section .booking-form-title p {
  margin: 0 !important;
  color: rgba(255,255,255,0.7) !important;
}
.booking-section .booking-grid {
  align-items: stretch !important;
}
.booking-section .booking-grid .booking-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
.booking-section .booking-grid .booking-field input,
.booking-section .booking-grid .booking-field select {
  height: 42px !important;
  box-sizing: border-box !important;
}
.booking-section .booking-grid .btn-booking {
  height: 42px !important;
  width: 100% !important;
  margin-top: 22px !important;
}

/* ===== Resort List Section - Nền biển ===== */
#resorts {
  background: none;
  position: relative;
  background-image: 
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,249,252,0.92) 30%, rgba(241,244,249,0.9) 100%),
    url('images/r_centara_mirage_mui_ne.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
#resorts::before {
  display: none;
}

/* Card sáng lên trên nền biển */
#resorts .resort-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* ===== Resort list - tăng độ rõ nền biển ===== */
#resorts {
  background-image: 
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(248,249,252,0.8) 30%, rgba(241,244,249,0.75) 100%),
    url('images/r_centara_mirage_mui_ne.jpg');
}

/* ===== Fix chữ tiêu đề form đặt phòng trên nền navy ===== */
.booking-section .booking-form-title h2 {
  color: #ffffff !important;
}

/* ===== Fix nền biển section resort - force override ===== */
#resorts {
  background-image: 
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(248,249,252,0.78) 50%, rgba(241,244,249,0.82) 100%),
    url('/resort/images/r_centara_mirage_mui_ne.jpg') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}

/* ===== Fix đúng: tiêu đề trong card trắng phải màu navy ===== */
.booking-section .booking-form-card .booking-form-title h2 {
  color: var(--navy) !important;
}
.booking-section .booking-form-card .booking-form-title p {
  color: #666 !important;
}

/* ===== FORCE FIX - Nền biển section #resorts ===== */
body #resorts.section {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(248,249,252,0.7) 50%, rgba(241,244,249,0.75) 100%), url('https://sptravelvisa.com/resort/images/r_centara_mirage_mui_ne.jpg') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  background-color: transparent !important;
}
body #resorts.section::before {
  display: none !important;
}

/* ===== FORCE FIX - Tiêu đề form đặt phòng màu navy ===== */
body .booking-section .booking-form-card .booking-form-title h2 {
  color: #0a1628 !important;
}
body .booking-section .booking-form-card .booking-form-title p {
  color: #555 !important;
}

/* ===== ULTRA FORCE - Nền biển cho resort list ===== */
body section#resorts.section {
  background: none !important;
  background-color: transparent !important;
  background-image: 
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(248,249,252,0.75) 100%),
    url('https://sptravelvisa.com/resort/images/r_jw_marriott_phu_quoc_emerald_bay.jpg') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}

/* ===== FINAL - Nền biển xanh sóng cho resort list ===== */
body section#resorts.section {
  background: none !important;
  background-color: transparent !important;
  background-image: 
    linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(248,250,252,0.82) 50%, rgba(255,255,255,0.88) 100%),
    url('https://sptravelvisa.com/resort/images/bg_beach_wave.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}

/* ===== Resort section - nền ảnh bằng thẻ img (chắc chắn hiện) ===== */
#resorts {
  position: relative;
}
#resorts .section-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}
#resorts .section-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#resorts .section-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
}
#resorts .container {
  position: relative;
  z-index: 2;
}

/* ===== NỀN BIỂN - FINAL FIX ===== */
html body section#resorts.section {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)) !important;
  background-image: none !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 100px 0 !important;
}
/* overlay trắng mờ trên nền biển - dùng pseudo element */
html body section#resorts.section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(255,255,255,0.88) !important;
  z-index: 0 !important;
  display: block !important;
}
html body section#resorts.section > .container {
  position: relative !important;
  z-index: 2 !important;
}
html body #resorts > .container {
  position: relative;
  z-index: 10;
}
