/*
Theme Name: Trip Temptations PRO
Author: Trip Temptations
Version: 3.0
Description: Luxury High-Conversion Travel Theme for India's Premium Travel Brand
*/

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --ocean: #0ea5e9;
  --royal: #7c3aed;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --dark: #080c18;
  --dark2: #0d1224;
  --dark3: #111827;
  --glass: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --grad: linear-gradient(135deg, #0ea5e9, #7c3aed, #f59e0b);
  --grad-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
  --shadow: 0 25px 60px rgba(0,0,0,0.5);
  --radius: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 50px;
}
.badge {
  display: inline-block;
  background: var(--grad-gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: #000;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(245,158,11,0.4); }

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  font-family: 'DM Sans', sans-serif;
}
.btn-glass:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* ===== HEADER / NAV ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
#site-header.scrolled {
  background: rgba(8,12,24,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 10;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.2;
}
.nav-logo span { color: var(--gold); }

/* Desktop nav links */
.nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: visible;
  min-width: 0;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-menu a:hover { color: #fff; }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-menu a:hover::after { width: 100%; }

/* Right CTA area */
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Call Us button */
.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.btn-call:hover { background: rgba(255,255,255,0.15); }
.call-icon { font-size: 0.9rem; }

/* Plan My Trip button in nav */
.nav-plan-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* Hamburger — 3 lines style */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  padding-top: 90px; /* offset for fixed header */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #080c18 0%, #0d1224 40%, #1a0533 70%, #080c18 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: #0ea5e9; top: -100px; left: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: #7c3aed; bottom: -50px; right: -50px; animation-delay: 3s; }
.hero-orb-3 { width: 300px; height: 300px; background: #f59e0b; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 5s; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 20px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.8s ease both;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== BOOKING ENGINE ===== */
#booking {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0 20px 80px;
}
.booking-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px;
}
.booking-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 7px;
}
.tab-btn.active {
  background: var(--grad-gold);
  color: #000;
  border-color: transparent;
  font-weight: 700;
}
.booking-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; align-items: end; }
.form-group label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: #1a1a2e; }
.btn-search {
  background: var(--grad);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(124,58,237,0.4); }

/* ===== OFFERS SECTION ===== */
#offers { background: linear-gradient(135deg, rgba(14,165,233,0.05), rgba(124,58,237,0.05)); }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.offer-card {
  padding: 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.offer-card:hover { transform: translateY(-8px); }
.offer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.offer-icon { font-size: 2.5rem; margin-bottom: 16px; }
.offer-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.offer-price { font-size: 2rem; font-weight: 700; color: var(--gold); }
.offer-price span { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.offer-desc { color: var(--text-muted); font-size: 0.9rem; margin: 10px 0 20px; }
.timer-box { display: flex; gap: 10px; margin: 15px 0; }
.timer-unit { text-align: center; background: rgba(0,0,0,0.3); border-radius: 8px; padding: 8px 12px; min-width: 52px; }
.timer-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); display: block; }
.timer-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; }
.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.2);
  border: 1px solid rgba(239,68,68,0.4);
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.pulse-dot { width: 6px; height: 6px; background: #ef4444; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

/* ===== PACKAGES SECTION ===== */
.packages-filter { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.88rem;
}
.filter-btn.active, .filter-btn:hover { background: var(--glass); color: #fff; border-color: var(--gold); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.pkg-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
  position: relative;
}
.pkg-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0,0,0,0.6); border-color: rgba(245,158,11,0.3); }
.pkg-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.pkg-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.pkg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.1); transition: background 0.3s; }
.pkg-card:hover .pkg-overlay { background: rgba(245,158,11,0.1); }
.pkg-badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.pkg-rating { position: absolute; top: 14px; right: 14px; z-index: 2; background: rgba(0,0,0,0.5); border-radius: 20px; padding: 4px 10px; font-size: 0.8rem; color: var(--gold); backdrop-filter: blur(4px); }
.pkg-body { padding: 22px; }
.pkg-location { font-size: 0.8rem; color: var(--gold); margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.pkg-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.pkg-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pkg-highlight { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 4px 10px; font-size: 0.75rem; color: var(--text-muted); }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--glass-border); }
.pkg-price { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.pkg-price small { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; display: block; }
.btn-sm { padding: 9px 20px; border-radius: 30px; background: var(--grad-gold); color: #000; font-weight: 700; font-size: 0.85rem; border: none; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
.btn-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,158,11,0.3); }

/* ===== CATEGORY SECTION ===== */
#categories { background: var(--dark2); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.cat-card {
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 20px;
}
.cat-card:hover::before { opacity: 0.15; }
.cat-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(245,158,11,0.15); }
.cat-icon { font-size: 2.5rem; margin-bottom: 14px; position: relative; z-index: 1; }
.cat-name { font-weight: 700; font-size: 1rem; margin-bottom: 6px; position: relative; z-index: 1; }
.cat-desc { font-size: 0.78rem; color: var(--text-muted); position: relative; z-index: 1; }

/* ===== VISA SECTION ===== */
.visa-filter { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.visa-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.visa-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}
.visa-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.visa-flag { font-size: 2.2rem; margin-bottom: 8px; }
.visa-country { font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.visa-type { font-size: 0.72rem; padding: 3px 10px; border-radius: 20px; display: inline-block; }
.visa-free { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.visa-evisa { background: rgba(14,165,233,0.15); color: #38bdf8; border: 1px solid rgba(14,165,233,0.3); }
.visa-on-arrival { background: rgba(245,158,11,0.15); color: var(--gold); border: 1px solid rgba(245,158,11,0.3); }

/* ===== HIDDEN GEMS ===== */
#gems { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }
.gems-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.gem-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 340px;
  cursor: pointer;
}
.gem-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.gem-card:hover .gem-bg { transform: scale(1.08); }
.gem-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.gem-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.gem-tag { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.gem-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.gem-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ===== HOW TO REACH ===== */
#reach { background: var(--dark2); }
.reach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.reach-card { padding: 32px 24px; border-radius: 20px; text-align: center; border: 1px solid var(--glass-border); background: var(--glass); transition: all 0.3s; }
.reach-card:hover { transform: translateY(-6px); border-color: var(--ocean); }
.reach-icon { font-size: 3rem; margin-bottom: 16px; }
.reach-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.reach-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== WHY CHOOSE US ===== */
#why { background: linear-gradient(135deg, rgba(14,165,233,0.04), rgba(124,58,237,0.04)); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.why-card { padding: 32px; border-radius: 20px; border: 1px solid var(--glass-border); background: var(--glass); position: relative; overflow: hidden; }
.why-card::after { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--grad); border-radius: 20px 0 0 20px; }
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.why-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
#reviews { background: var(--dark2); overflow: hidden; }
.reviews-track { display: flex; gap: 24px; animation: slide 30s linear infinite; width: max-content; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card { min-width: 340px; padding: 28px; border-radius: 20px; background: var(--glass); border: 1px solid var(--glass-border); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.review-text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-trip { font-size: 0.78rem; color: var(--gold); }

/* ===== LIVE NOTIFICATIONS ===== */
.booking-notification {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 999;
  max-width: 300px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(13,18,36,0.95);
  border: 1px solid rgba(245,158,11,0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-400px);
  transition: transform 0.5s ease;
  box-shadow: var(--shadow);
}
.booking-notification.show { transform: translateX(0); }
.notif-icon { font-size: 1.5rem; }
.notif-text { font-size: 0.82rem; }
.notif-text strong { color: var(--gold); }
.notif-time { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* ===== LEAD FORM ===== */
#lead { background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(14,165,233,0.08)); }
.lead-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lead-info h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.lead-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 30px; }
.lead-perks { display: flex; flex-direction: column; gap: 14px; }
.lead-perk { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.lead-perk-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(245,158,11,0.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.lead-form-wrap { padding: 40px; }
.lead-form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.lead-form-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.lead-form .form-group { margin-bottom: 16px; }
.lead-form .form-group input, .lead-form .form-group select, .lead-form .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.lead-form .form-group input:focus, .lead-form .form-group select:focus, .lead-form .form-group textarea:focus { outline: none; border-color: var(--gold); }
.lead-form .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.service-card { padding: 28px 20px; border-radius: 18px; text-align: center; background: var(--glass); border: 1px solid var(--glass-border); transition: all 0.3s; }
.service-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-name { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.service-desc { color: var(--text-muted); font-size: 0.8rem; }

/* ===== BLOG ===== */
#blog { background: var(--dark2); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { border-radius: 20px; overflow: hidden; background: var(--dark3); border: 1px solid var(--glass-border); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(14,165,233,0.3); }
.blog-img { height: 200px; background-size: cover; background-position: center; }
.blog-body { padding: 22px; }
.blog-tag { font-size: 0.72rem; color: var(--ocean); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; line-height: 1.6; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted); padding-top: 14px; border-top: 1px solid var(--glass-border); }

/* ===== FOOTER ===== */
#footer {
  background: rgba(0,0,0,0.6);
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.footer-brand-name span { color: var(--gold); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; background: var(--glass); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s; cursor: pointer; }
.social-btn:hover { background: var(--grad-gold); color: #000; border-color: transparent; }
.footer-col h4 { font-weight: 700; font-size: 1rem; margin-bottom: 20px; color: var(--gold); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 16px; }
.footer-copy { color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
}
@keyframes waPulse { 0%,100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 0; transform: scale(1.4); } }

/* ===== EXIT POPUP ===== */
#exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
#exit-popup.show { display: flex; }
.exit-popup-card { max-width: 500px; width: 90%; padding: 50px; text-align: center; position: relative; }
.exit-popup-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; }
.exit-popup-badge { margin-bottom: 20px; }
.exit-popup-h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.exit-popup-sub { color: var(--text-muted); margin-bottom: 30px; }
.exit-coupon { background: rgba(245,158,11,0.1); border: 2px dashed var(--gold); border-radius: 12px; padding: 16px; margin-bottom: 24px; font-size: 1.2rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .nav-menu { gap: 14px; }
  .nav-menu a { font-size: 0.80rem; }
  .nav-plan-btn { padding: 9px 16px; font-size: 0.82rem; }
  .btn-call { padding: 9px 14px; font-size: 0.82rem; }
}

@media (max-width: 1024px) {
  .nav-menu { gap: 16px; }
  .nav-menu a { font-size: 0.82rem; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lead-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Hide desktop nav links */
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: rgba(8,12,24,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 20px 30px;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--glass-border); }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu a { display: block; padding: 14px 4px; font-size: 1rem; color: var(--text); }
  .nav-menu a::after { display: none; }

  /* Show hamburger, hide Call Us text on mobile */
  .hamburger { display: flex; }
  .call-text { display: none; }
  .btn-call { padding: 10px 12px; border-radius: 50%; width: 44px; height: 44px; justify-content: center; }
  .call-icon { font-size: 1.1rem; }
  .nav-plan-btn { padding: 10px 16px; font-size: 0.82rem; }

  /* Layout fixes */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 1.5rem; }

  /* MOBILE BOOKING WIDGET */
  #booking { padding: 0 12px 40px; margin-top: -40px; }
  .booking-card { padding: 20px 16px; }

  .booking-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .booking-tabs::-webkit-scrollbar { display: none; }
  .tab-btn {
    flex-shrink: 0;
    padding: 9px 16px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
  }
  .form-group input, .form-group select {
    padding: 10px 12px;
    font-size: 0.88rem;
    border-radius: 10px;
  }
  .form-group label { font-size: 0.72rem; margin-bottom: 5px; }

  .booking-form .form-group:last-child { grid-column: 1 / -1; }
  .btn-search { padding: 11px 20px; font-size: 0.9rem; }
}

@media (max-width: 420px) {
  .nav-logo { font-size: 1.25rem; }
  .nav-plan-btn { display: none; }  /* Only show on slightly larger phones */
  .btn-call { width: 40px; height: 40px; padding: 8px; }
}
