/* ===== Variables ===== */
:root {
  --color-bg: #0d0d0d;
  --color-surface: #161616;
  --color-surface-2: #1e1e1e;
  --color-text: #f5f0e8;
  --color-text-muted: #a89f8f;
  --color-accent: #c9a227;
  --color-accent-light: #e5c04a;
  --color-red: #b83d3d;
  --color-green: #2d5a3d;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23c9a227' stroke-width='0.3' opacity='0.15'/%3E%3C/svg%3E");
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-light); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #a6851a);
  color: #0d0d0d;
  border-color: var(--color-accent);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover { background: rgba(201, 162, 39, 0.15); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
.wa-icon::before { content: '💬 '; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}
.logo:hover { color: var(--color-accent-light); text-decoration: none; }
.logo img.logo-img { height: 44px; width: auto; }
.reviews-link-hint { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 1rem; }
.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--color-accent); text-decoration: none; }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; }

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-surface); padding: 1rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.85) 60%, rgba(13,13,13,0.95) 100%);
  background-image: linear-gradient(180deg, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.8) 50%), var(--pattern);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--color-text);
}
.hero h1 .highlight { color: var(--color-accent-light); }
.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--color-accent), transparent); border-radius: 2px; }

/* ===== Trust strip ===== */
.trust-strip {
  padding: 2rem 0;
  background: var(--color-surface);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.trust-label { font-size: 0.95rem; color: var(--color-text-muted); }

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===== Section common ===== */
.section-tag {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}
.section-desc { color: var(--color-text-muted); margin-bottom: 1rem; max-width: 600px; }
.pricing-note {
  background: var(--color-surface);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 900px;
}
.pricing-note strong { color: var(--color-text); }
.pricing-note a { color: var(--color-accent-light); font-weight: 500; }

/* ===== About ===== */
.about { padding: 5rem 0; background: var(--color-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-images img:first-child { border-radius: 12px; }
.about-img-2 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  border-radius: 12px;
  border: 4px solid var(--color-accent);
}
.about-content .section-tag { margin-top: 0; }
.about-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.about-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}
.about-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-height: 320px; }
  .about-img-2 { right: 0; width: 50%; }
}

/* ===== Destinations ===== */
.destinations {
  padding: 5rem 0;
  background: var(--color-surface);
  background-image: var(--pattern);
}
.destinations .section-desc { margin-left: 0; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.dest-card { border-radius: 16px; overflow: hidden; }
.dest-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-image img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,13,13,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 1;
}
.dest-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.dest-overlay p { font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 1rem; }

@media (max-width: 900px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-image { aspect-ratio: 16/10; }
}

/* ===== Packages ===== */
.packages { padding: 5rem 0; background: var(--color-bg); }
.packages-destination { margin-top: 4rem; }
.packages-destination:first-child { margin-top: 2rem; }
.dest-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 2rem;
  color: var(--color-accent-light);
  text-align: center;
}
.pack-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.pack-card-detailed {
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.pack-card-detailed:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.pack-card-detailed .pack-img { aspect-ratio: 16/10; overflow: hidden; }
.pack-card-detailed .pack-img img { width: 100%; height: 100%; object-fit: cover; }
.pack-card-detailed .pack-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pack-price-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.pack-card-detailed .pack-body h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: var(--color-accent-light);
}
.pack-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.price-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
}
.price-unit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.pack-itinerary {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.pack-itinerary strong {
  color: var(--color-text);
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
}
.pack-itinerary strong:first-child { margin-top: 0; }
.pack-card-detailed .btn {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 900px) {
  .pack-grid-detailed { grid-template-columns: 1fr; }
  .dest-title { font-size: 1.5rem; }
}

/* ===== Why Us ===== */
.why-us { padding: 5rem 0; background: var(--color-surface); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-card {
  background: var(--color-surface-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.15);
}
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.why-card h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== Reviews ===== */
.reviews { padding: 5rem 0; background: var(--color-bg); }
.reviews-widget-container { margin-top: 2rem; margin-bottom: 3rem; }
.reviews-widget {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.reviews-loading { color: var(--color-text-muted); margin-bottom: 1rem; }
.reviews-note { color: var(--color-text-muted); font-size: 0.95rem; margin: 0.75rem 0; }
.reviews-note a { color: var(--color-accent-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-info h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}
.review-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.review-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.review-photos img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}
.review-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.review-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}
.reviews-cta-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.reviews-cta-section p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-photos { grid-template-columns: 1fr; }
}

/* ===== Enquiry Form ===== */
.enquiry { padding: 5rem 0; background: var(--color-bg); }
.enquiry-form {
  max-width: 900px;
  margin: 2rem auto 0;
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.2);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group-full {
  grid-column: 1 / -1;
}
.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}
.required {
  color: var(--color-red);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  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(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  text-align: center;
  margin-top: 2rem;
}
.form-submit .btn {
  min-width: 200px;
}
.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}
.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}
.form-message.success {
  background: rgba(45, 90, 61, 0.2);
  border: 1px solid var(--color-green);
  color: var(--color-green);
}
.form-message.error {
  background: rgba(184, 61, 61, 0.2);
  border: 1px solid var(--color-red);
  color: var(--color-red);
}

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .enquiry-form { padding: 1.5rem; }
}

/* ===== Contact ===== */
.contact { padding: 5rem 0; background: var(--color-surface); background-image: var(--pattern); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.contact-list li {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}
.contact-list a { color: var(--color-accent-light); }
.contact-list a:hover { text-decoration: underline; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.social-links a {
  padding: 0.5rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 0.9rem;
}
.social-links a:hover { background: rgba(201, 162, 39, 0.15); text-decoration: none; }
.book-card {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid var(--color-accent);
}
.book-card h3 { margin: 0 0 0.75rem; font-size: 1.35rem; }
.book-card p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.book-card .btn { width: 100%; margin-bottom: 0.75rem; }
.book-card .btn + .btn { margin-bottom: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0 1.5rem;
  background: var(--color-bg);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.footer-brand p { color: var(--color-text-muted); font-size: 0.9rem; margin-top: 0.5rem; }
.footer-logo { height: 40px; margin-bottom: 0.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--color-text-muted); }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact p { margin: 0 0 0.5rem; font-size: 0.9rem; color: var(--color-text-muted); }
.footer-contact a { color: var(--color-accent-light); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: var(--color-text-muted); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { flex-direction: row; justify-content: center; }
}
