/* ============================================
   TRIPWALEY – style.css
   Color palette from logo: Red #E8232A, Orange #F7941D, Black #1A1A1A
   ============================================ */

:root {
  --red: #E8232A;
  --orange: #F7941D;
  --dark: #1A1A1A;
  --darker: #0D0D0D;
  --white: #FFFFFF;
  --off-white: #F9F5F0;
  --bg-warm: #FFF8F0;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --border: #E8E0D8;
  --gradient: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 48px; width: auto; }
.logo-text { display: flex; align-items: baseline; gap: 2px; }
.logo-trip { font-family: 'Dancing Script', cursive; font-size: 2rem; font-weight: 700; color: var(--red); line-height: 1; }
.logo-waley { font-family: 'Dancing Script', cursive; font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.footer-logo .logo-trip, .footer-logo .logo-waley { font-size: 2.4rem; }
.header.scrolled .logo-trip { color: var(--red); }
.header.scrolled .logo-waley { color: var(--dark); }
.header:not(.scrolled) .logo-trip { color: var(--white); text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.header:not(.scrolled) .logo-waley { color: var(--white); text-shadow: 0 2px 8px rgba(0,0,0,0.4); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap; color: var(--white);
}
.header.scrolled .nav-link { color: var(--dark); }
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }
.arrow { font-size: 0.7rem; }
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 180px; padding: 8px; z-index: 100;
  border: 1px solid var(--border);
}
.dropdown-menu a {
  display: block; padding: 10px 16px; font-size: 0.88rem; color: var(--dark);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--bg-warm); color: var(--red); }
.nav-dropdown:hover .dropdown-menu { display: block; }
.btn-book {
  background: var(--gradient); color: white !important; padding: 10px 24px !important;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(232,35,42,0.35); transition: var(--transition);
  margin-left: 8px;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,35,42,0.5); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); display: block; }
.header.scrolled .hamburger span { background: var(--dark); }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: absolute; left: 8%; top: 50%; transform: translateY(-50%);
  max-width: 640px; color: white;
}
.hero-tag {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; color: var(--orange); -webkit-text-fill-color: var(--orange); }
.hero-sub { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gradient); color: white; padding: 14px 32px;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  box-shadow: 0 4px 24px rgba(232,35,42,0.4); transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(232,35,42,0.55); color: white; }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.8); color: white; padding: 12px 32px;
  border-radius: 50px; font-weight: 600; font-size: 1rem; transition: var(--transition);
  display: inline-block; backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }

/* Hero dots */
.hero-dots { position: absolute; bottom: 80px; left: 8%; display: flex; gap: 10px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4);
  border: none; cursor: pointer; transition: var(--transition);
}
.dot.active { width: 32px; border-radius: 5px; background: var(--orange); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.8rem; display: flex; flex-direction: column;
  align-items: center; gap: 8px; letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px; background: var(--orange); border-radius: 2px;
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:0.3} }

/* ===== SEARCH BAR ===== */
.search-bar-section { padding: 0 24px; margin-top: -50px; position: relative; z-index: 100; }
.search-bar-card {
  max-width: 1100px; margin: 0 auto; background: white;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 32px 36px;
  border: 1px solid var(--border);
}
.search-title {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 20px;
  color: var(--dark); text-align: center;
}
.search-row { display: grid; grid-template-columns: repeat(4,1fr) auto; gap: 16px; align-items: end; }
.search-field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 8px; }
.search-field select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  color: var(--dark); background: var(--off-white); cursor: pointer; transition: var(--transition);
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.search-field select:focus { outline: none; border-color: var(--orange); }
.btn-search {
  background: var(--gradient); color: white; border: none; padding: 14px 28px;
  border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: 1rem;
  font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap;
  box-shadow: 0 4px 20px rgba(232,35,42,0.35);
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,35,42,0.5); }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; position: relative; }
.section-label {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--dark); line-height: 1.2;
}
.view-all {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 0.9rem; font-weight: 600; color: var(--red); transition: var(--transition);
}
.view-all:hover { color: var(--orange); }

/* ===== CATEGORIES ===== */
.categories-section { padding-top: 80px; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 320px; background-size: cover; background-position: center;
  display: block; transition: var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card:hover .cat-overlay { opacity: 0.75; }
.cat-overlay {
  position: absolute; inset: 0; opacity: 0.6;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
  transition: var(--transition);
}
.cat-content { position: absolute; bottom: 28px; left: 28px; color: white; }
.cat-icon { font-size: 2rem; margin-bottom: 10px; }
.cat-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.cat-content p { font-size: 0.85rem; opacity: 0.85; }

/* ===== PACKAGES GRID ===== */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-img-wrap { position: relative; overflow: hidden; height: 240px; }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.08); }
.pkg-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gradient); color: white;
  font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.pkg-badge-new { background: linear-gradient(135deg, #10b981, #059669) !important; }
.pkg-badge-hot { background: linear-gradient(135deg, #f59e0b, #d97706) !important; }
.pkg-type {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); color: white;
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 20px;
}
.pkg-body { padding: 24px; }
.pkg-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.pkg-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.pkg-info { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; }
.pkg-price { font-size: 0.9rem; color: var(--dark); }
.pkg-price .from { font-size: 0.75rem; color: var(--text-muted); display: block; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--red); }
.pkg-price .per { font-family: 'Outfit', sans-serif; font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.btn-pkg {
  background: var(--gradient); color: white; padding: 10px 20px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.btn-pkg:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,35,42,0.4); }

/* ===== AD BANNER ===== */
.ad-banner {
  position: relative; min-height: 440px; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.ad-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,35,42,0.8) 0%, rgba(0,0,0,0.6) 100%);
}
.ad-content { position: relative; z-index: 1; color: white; padding: 0 24px; max-width: 700px; }
.ad-tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 18px; border-radius: 20px; display: inline-block; margin-bottom: 20px;
}
.ad-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 16px; }
.ad-sub { font-size: 1.1rem; opacity: 0.92; margin-bottom: 32px; line-height: 1.6; }

/* ===== HONEYMOON FEATURE ===== */
.honeymoon-feature {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.hm-left { overflow: hidden; }
.hm-left img { width: 100%; height: 100%; object-fit: cover; }
.hm-right {
  background: var(--bg-warm); padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.hm-right p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 28px; }
.hm-perks { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.hm-perks li { font-size: 0.95rem; font-weight: 500; color: var(--dark); }

/* ===== FESTIVAL ===== */
.festivals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 380px;
  background-size: cover; background-position: center; cursor: pointer;
  transition: var(--transition);
}
.fest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
}
.fest-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; color: white; }
.fest-date {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 10px;
}
.fest-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.fest-content p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 20px; }
.btn-fest {
  font-size: 0.85rem; font-weight: 600; color: var(--orange);
  border: 1.5px solid var(--orange); padding: 8px 20px;
  border-radius: 50px; display: inline-block; transition: var(--transition);
}
.btn-fest:hover { background: var(--orange); color: white; }

/* ===== AD BANNER 2 ===== */
.ad-banner-2 { background: var(--gradient); padding: 56px 24px; }
.ad-b2-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ad-b2-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: white; margin-bottom: 10px; }
.ad-b2-text p { font-size: 1rem; color: rgba(255,255,255,0.9); max-width: 520px; line-height: 1.6; }
.ad-b2-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-whatsapp {
  background: #25D366; color: white; padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 10px;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); color: white; }
.btn-call {
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.6);
  color: white; padding: 12px 28px; border-radius: 50px; font-weight: 600;
  font-size: 1rem; transition: var(--transition); backdrop-filter: blur(4px);
}
.btn-call:hover { background: rgba(255,255,255,0.3); transform: translateY(-3px); }

/* ===== WHY SECTION ===== */
.why-section { background: var(--bg-warm); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  border: 1px solid var(--border); transition: var(--transition); text-align: center;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.why-icon { font-size: 2.8rem; margin-bottom: 16px; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ===== STATS ===== */
.stats-section { background: var(--darker); padding: 72px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { padding: 28px; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 10px; font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: white; border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gradient);
  color: white; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; color: var(--dark); }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== INSTAGRAM ===== */
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
.insta-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 1; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.12); }
.insta-hover {
  position: absolute; inset: 0; background: rgba(232,35,42,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.insta-hover span { font-size: 1.5rem; }
.insta-item:hover .insta-hover { opacity: 1; }

/* ===== CONTACT ===== */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-sm); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  color: var(--dark); transition: var(--transition); background: var(--off-white);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); background: white; }
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%; background: var(--gradient); color: white; border: none; padding: 16px;
  border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); box-shadow: 0 4px 24px rgba(232,35,42,0.35);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(232,35,42,0.5); }
.contact-info-card {
  background: var(--dark); border-radius: var(--radius); padding: 40px; color: white; height: fit-content;
}
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 28px; color: white; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: white; font-size: 0.95rem; font-weight: 500; line-height: 1.5; display: block; }
.contact-item a:hover { color: var(--orange); }
.social-links { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.soc-btn {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; transition: var(--transition);
}
.soc-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.soc-fb { background: #1877F2; color: white; }
.soc-yt { background: #FF0000; color: white; }
.soc-li { background: #0A66C2; color: white; }
.soc-btn:hover { transform: scale(1.15); }

/* ===== FOOTER ===== */
.footer { background: #0D0D0D; color: rgba(255,255,255,0.75); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-tagline { font-family: 'Dancing Script', cursive; font-size: 1.05rem; color: var(--orange); margin: 4px 0 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; font-size: 1.4rem; }
.footer-social a { transition: var(--transition); }
.footer-social a:hover { transform: scale(1.2); }
.footer-links h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.05em; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5); transition: var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  height: 50vh; min-height: 360px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
  margin-top: 72px;
}
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.page-hero-content { position: relative; z-index: 1; color: white; padding: 0 24px; }
.page-hero-content .hero-tag { -webkit-text-fill-color: white; color: white; opacity: 0.8; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero-content p { font-size: 1.1rem; opacity: 0.88; }

/* ===== DESTINATION CARDS (India/International pages) ===== */
.dest-filter { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 22px; border-radius: 50px; border: 1.5px solid var(--border);
  background: white; font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: var(--dark); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--gradient); color: white; border-color: transparent; }
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--bg-warm); padding: 14px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--red); }
.breadcrumb-inner a:hover { color: var(--orange); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 999;
  width: 46px; height: 46px; background: var(--gradient); color: white;
  border: none; border-radius: 50%; cursor: pointer; font-size: 1.2rem;
  box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; pointer-events: none; display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .search-row { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .view-all { position: static; transform: none; margin-top: 12px; display: block; }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: white; flex-direction: column; align-items: flex-start; padding: 24px; gap: 0; overflow-y: auto; z-index: 999; }
  .nav.open { display: flex; }
  .nav-link { color: var(--dark) !important; font-size: 1.1rem; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .dropdown-menu { display: none; position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .btn-book { margin: 20px 0 0; width: 100%; text-align: center; }
  .hamburger { display: flex; }
  .hero-content { left: 5%; right: 5%; }
  .hero-title { font-size: 2.2rem; }
  .search-bar-card { padding: 24px; }
  .search-row { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card { height: 200px; }
  .packages-grid { grid-template-columns: 1fr; }
  .festivals-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .honeymoon-feature { grid-template-columns: 1fr; }
  .hm-left { height: 300px; }
  .hm-right { padding: 48px 28px; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .ad-b2-inner { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
