/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: hsl(0 0% 98%);
  color: hsl(222 47% 11%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ========== TOKENS ========== */
:root {
  --primary: hsl(224 76% 33%);
  --primary-light: hsl(224 76% 48%);
  --primary-dark: hsl(224 76% 22%);
  --primary-fg: #fff;
  --gold: hsl(43 96% 56%);
  --gold-dark: hsl(35 92% 50%);
  --gold-fg: hsl(222 47% 11%);
  --bg: hsl(0 0% 98%);
  --fg: hsl(222 47% 11%);
  --muted: hsl(220 14% 96%);
  --muted-fg: hsl(220 9% 46%);
  --border: hsl(220 13% 91%);
  --card-bg: hsl(0 0% 100%);
  --radius: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 40px -12px hsla(224,76%,33%,0.15);
}

/* ========== UTILITIES ========== */
.text-gold {
  background: linear-gradient(135deg, var(--gold), hsl(35 80% 45%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow);
}
.glass-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-2xl);
}
.gradient-royal { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.gradient-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container-sm { max-width: 768px; }
.container-md { max-width: 960px; }
.section { padding: 64px 16px; }
.section-muted { background: var(--muted); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h1, .section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.section-header p { color: var(--muted-fg); max-width: 540px; margin: 0 auto; }
.icon-primary { color: var(--primary); }

/* Buttons */
.btn-royal {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--primary-fg); font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: var(--radius); border: none;
  transition: opacity 0.3s;
}
.btn-royal:hover { opacity: 0.9; }
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--gold-fg); font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: var(--radius); border: none;
  transition: opacity 0.3s;
}
.btn-gold:hover { opacity: 0.9; }
.btn-full { width: 100%; }
.btn-lg { height: 48px; font-size: 15px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.brand-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
}
.brand-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted-fg); transition: color 0.3s; }
.nav-links a:hover { color: var(--fg); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 16px;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .hamburger { display: flex; }
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, hsla(224,76%,33%,0.85) 0%, hsla(224,76%,22%,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; padding: 0 16px; text-align: center; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: #fff; margin-bottom: 24px; line-height: 1.15; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.8); margin-bottom: 40px; }

.search-box { padding: 16px; max-width: 900px; margin: 0 auto; }
.search-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: end; }
.search-field label { display: block; font-size: 11px; font-weight: 600; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.field-input {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 12px; background: var(--card-bg); font-size: 14px; color: var(--fg);
}
.field-input input, .field-input select {
  border: none; outline: none; background: transparent; font-size: 14px; color: var(--fg); width: 100%;
}
.search-btn { height: 44px; }

@media (max-width: 1024px) {
  .search-grid { grid-template-columns: repeat(2, 1fr); }
  .search-btn { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .search-grid { grid-template-columns: 1fr; }
}

/* ========== PACKAGE CARDS ========== */
.hotel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hotel-card {
  border-radius: var(--radius-2xl); overflow: hidden;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hotel-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.hotel-card-img { position: relative; height: 208px; overflow: hidden; }
.hotel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hotel-card:hover .hotel-card-img img { transform: scale(1.1); }
.hotel-rating {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px; padding: 4px 12px;
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
}
.hotel-duration {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px; padding: 4px 12px;
  font-size: 12px; font-weight: 700;
}
.star-icon { color: var(--gold); }
.hotel-card-body { padding: 20px; }
.hotel-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.hotel-location { display: flex; align-items: center; gap: 4px; color: var(--muted-fg); font-size: 14px; margin-bottom: 16px; }
.hotel-footer { display: flex; align-items: center; justify-content: space-between; }
.hotel-price { font-size: 24px; font-weight: 700; }
.hotel-price span { font-size: 14px; font-weight: 400; color: var(--muted-fg); }

@media (max-width: 1024px) { .hotel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .hotel-grid { grid-template-columns: 1fr; } }

/* ========== FEATURES ========== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 32px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.feature-icon {
  width: 56px; height: 56px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--muted-fg); line-height: 1.7; }

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

/* ========== REVIEWS ========== */
.review-card { padding: 40px; text-align: center; }
.review-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: #fff; font-weight: 700; font-size: 18px;
}
.review-stars { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 16px; }
.review-comment { font-size: 18px; font-style: italic; line-height: 1.7; margin-bottom: 20px; color: var(--fg); }
.review-name { font-weight: 600; color: var(--fg); }
.review-hotel { font-size: 14px; color: var(--muted-fg); }
.review-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.review-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.review-btn:hover { background: rgba(255,255,255,0.9); }
.review-dots { display: flex; gap: 8px; }
.review-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--border); transition: all 0.3s; cursor: pointer; border: none;
}
.review-dot.active { background: var(--primary); width: 24px; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--radius-2xl); overflow: hidden;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4); box-shadow: var(--shadow-lg);
}
.faq-question {
  width: 100%; padding: 20px 24px; text-align: left;
  font-weight: 600; font-size: 15px; color: var(--fg);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
}
.faq-question::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--muted-fg);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px; color: var(--muted-fg); font-size: 14px; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: var(--radius-xl); flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
}
.contact-item h4 { font-weight: 600; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.contact-item p { font-size: 14px; color: var(--muted-fg); }
.map-container { border-radius: var(--radius-2xl); overflow: hidden; height: 208px; }
.contact-form { padding: 32px; display: flex; flex-direction: column; gap: 16px; }

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

/* ========== FORMS ========== */
.form-input {
  width: 100%; padding: 10px 14px; font-size: 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); color: var(--fg); outline: none;
  transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--primary); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: var(--muted-fg); margin-bottom: 4px; }

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; padding: 48px 0 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.brand-icon-gold {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-fg); font-weight: 700; font-size: 13px;
}
.footer-brand-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.footer-grid h4 { font-weight: 600; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.footer-grid a, .footer-grid p { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 8px; transition: color 0.3s; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px; padding: 24px 0; text-align: center;
  font-size: 14px; color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-content { width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; padding: 24px; }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.modal-header h2 { font-size: 24px; font-weight: 700; }
.modal-close { font-size: 28px; color: var(--muted-fg); transition: color 0.3s; background: none; border: none; }
.modal-close:hover { color: var(--fg); }
.modal-hotel-info { border-radius: var(--radius); padding: 12px; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.modal-hotel-info img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; }
.modal-hotel-info .hotel-meta h4 { font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
.modal-hotel-info .hotel-meta p { font-size: 12px; color: var(--muted-fg); }
.modal-content form { display: flex; flex-direction: column; gap: 12px; }

.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.payment-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px; border-radius: var(--radius); border: 1px solid var(--border);
  font-size: 13px; color: var(--muted-fg); transition: all 0.3s; background: none;
}
.payment-btn:hover { border-color: hsla(224,76%,33%,0.3); }
.payment-btn.active { border-color: var(--primary); background: hsla(224,76%,33%,0.05); color: var(--primary); }

/* Success */
.success-content { text-align: center; padding: 32px 0; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: hsl(152 69% 45%); color: #fff;
  font-size: 40px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; animation: scaleIn 0.5s ease;
}
.success-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.success-content > p { color: var(--muted-fg); margin-bottom: 16px; }
.booking-id-box { border-radius: var(--radius); padding: 16px; display: inline-block; margin-bottom: 24px; }
.booking-id-label { display: block; font-size: 12px; color: var(--muted-fg); margin-bottom: 4px; }
.booking-id { font-family: monospace; font-size: 20px; font-weight: 700; color: var(--primary); }

@keyframes scaleIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ========== WORDPRESS CONTENT ========== */
.entry-content p { margin-bottom: 16px; }
.entry-content h2, .entry-content h3 { margin-top: 24px; margin-bottom: 12px; }
.entry-content img { border-radius: var(--radius); margin: 16px 0; }
.entry-content ul, .entry-content ol { margin-left: 24px; margin-bottom: 16px; }
