/*
Theme Name:  Dream Holiday Destinations
Theme URI:   https://dreamholidaydestinations.com/
Author:      Shady Holidays Pvt Ltd
Author URI:  https://www.shadyholidays.com
Description: Custom travel website theme for Shady Holidays — premium multinational design with animations.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shady-holidays
Tags:        travel, custom, responsive, animations
*/

/* ════════════════════════════════════════
   TABLE OF CONTENTS
   1.  CSS Variables
   2.  Reset & Base
   3.  Custom Cursor
   4.  Progress Bar
   5.  Navigation
   6.  Mobile Menu
   7.  Hero Section
   8.  Ticker
   9.  Section Commons
   10. Scroll Reveal
   11. Destinations
   12. Packages
   13. Themes
   14. Why Us
   15. Testimonials
   16. Contact
   17. Footer
   18. Floating Buttons
   19. Responsive — 1100px
   20. Responsive — 900px
   21. Responsive — 640px
════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ── */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim:   #8B6914;
  --deep:       #0A0F1C;
  --deep2:      #111827;
  --dark:       #1A2235;
  --cream:      #F5F0E8;
  --text:       #E8E4DC;
  --muted:      #9AA3B5;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--deep);
  color: var(--text);
  overflow-x: hidden;
}

/* ── 3. CUSTOM CURSOR ── */
@media (hover: hover) { body { cursor: none; } }
.cursor,
.cursor-trail {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
}
@media (hover: hover) {
  .cursor,
  .cursor-trail { display: block; }
}
.cursor {
  width: 12px;
  height: 12px;
  background: var(--gold);
  mix-blend-mode: screen;
  transition: width .3s, height .3s;
}
.cursor-trail {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, .4);
  transition: width .3s, height .3s;
}

/* ── 4. PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9997;
  width: 0;
  box-shadow: 0 0 10px rgba(201, 168, 76, .6);
}

/* ── 5. NAVIGATION ── */
nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
}
nav.scrolled {
  background: rgba(10, 15, 28, .96);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, .15);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}
.logo span {
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--deep) !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 28, .98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  background: var(--gold);
  color: var(--deep) !important;
  padding: 14px 40px;
  border-radius: 3px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px !important;
  font-weight: 700;
}

/* ── 7. HERO SECTION ── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0F1C 0%, #1a1040 40%, #0A2040 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C9A84C, transparent);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #4A90D9, transparent);
  bottom: -50px; left: 10%;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #43BF8E, transparent);
  top: 40%; left: 40%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}
.hero-badge::before { content: '✦'; font-size: 10px; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  animation: fadeUp .8s ease .15s both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  color: var(--muted);
  margin: 20px 0 36px;
  line-height: 1.8;
  animation: fadeUp .8s ease .3s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .45s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--deep);
  padding: 15px 36px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201, 168, 76, .4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 15px 36px;
  border-radius: 3px;
  border: 1px solid rgba(232, 228, 220, .3);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  position: absolute;
  bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 80px);
  flex-wrap: wrap;
  padding: 0 24px;
  animation: fadeUp .8s ease .6s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 8. TICKER ── */
.ticker {
  background: var(--gold);
  color: var(--deep);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
}
.ticker-track span { font-size: 13px; font-weight: 600; letter-spacing: 1px; }
.ticker-track span::before { content: '✦ '; opacity: .5; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 9. SECTION COMMONS ── */
section { padding: clamp(60px, 8vw, 120px) 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 60px);
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.section-title strong { font-weight: 600; color: var(--gold); }

/* ── 10. SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── 11. DESTINATIONS ── */
.destinations { background: var(--deep2); }
.dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.dest-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, .04);
  border-radius: 5px;
  padding: 4px;
  width: fit-content;
  flex-wrap: wrap;
}
.dest-tab {
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  transition: all .3s;
  border: none;
  background: none;
  font-family: 'Outfit', sans-serif;
}
.dest-tab.active  { background: var(--gold); color: var(--deep); font-weight: 700; }
.dest-tab:hover:not(.active) { color: var(--cream); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s, opacity .4s;
}
.dest-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.dest-card:nth-child(2) { grid-column: span 2; }
.dest-card:nth-child(3) { grid-column: span 2; }
.dest-card:nth-child(4) { grid-column: span 1; }
.dest-card:nth-child(5) { grid-column: span 1; }
.dest-card:nth-child(6) { grid-column: span 2; }
.dest-card-img {
  width: 100%; height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  transition: transform .6s;
}
.dest-card:nth-child(1) .dest-card-img { min-height: 340px; font-size: 100px; }
.dest-card:hover { transform: scale(1.02); z-index: 5; }
.dest-card:hover .dest-card-img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 28, .9) 0%, rgba(10, 15, 28, .05) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.dest-card-tag  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.dest-card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--cream); }
.dest-card:nth-child(1) .dest-card-name { font-size: 32px; }
.dest-card-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── 12. PACKAGES ── */
.packages { background: var(--deep); }
.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 16px;
}
.pkg-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pkg-chip {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: var(--muted);
  transition: all .3s;
  font-family: 'Outfit', sans-serif;
}
.pkg-chip.active,
.pkg-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 168, 76, .08); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pkg-card {
  background: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  cursor: pointer;
  transition: transform .4s, box-shadow .4s, border-color .4s;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  border-color: rgba(201, 168, 76, .4);
}
.pkg-thumb { height: 180px; position: relative; overflow: hidden; flex-shrink: 0; }
.pkg-thumb-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  transition: transform .5s;
}
.pkg-card:hover .pkg-thumb-bg { transform: scale(1.1); }
.pkg-duration {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(10, 15, 28, .85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .5px;
}
.pkg-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--dark);
}
.pkg-region  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.pkg-name    { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--cream); margin-bottom: 10px; line-height: 1.25; }
.pkg-features { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.pkg-feat    { font-size: 11px; color: var(--muted); }
.pkg-footer  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.pkg-price        { font-size: 12px; color: var(--muted); line-height: 1; }
.pkg-price strong { font-size: 20px; font-family: 'Cormorant Garamond', serif; color: var(--gold); font-weight: 600; display: block; line-height: 1.3; }
.pkg-btn {
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.pkg-btn:hover { background: var(--gold); color: var(--deep); }

/* ── 13. THEMES ── */
.themes { background: var(--deep2); }
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 50px;
}
.theme-card { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.theme-card-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: padding .4s;
}
.theme-card:hover .theme-card-inner { padding-bottom: 44px; }
.theme-icon  { font-size: 50px; margin-bottom: 12px; }
.theme-name  { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.5vw, 30px); font-weight: 600; color: var(--cream); }
.theme-count { font-size: 13px; color: rgba(232, 228, 220, .5); margin-top: 4px; }
.theme-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 28, .4);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-card:hover .theme-overlay { opacity: 1; }
.theme-cta {
  background: var(--gold);
  color: var(--deep);
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transform: translateY(14px);
  transition: transform .3s .1s;
  font-family: 'Outfit', sans-serif;
}
.theme-card:hover .theme-cta { transform: translateY(0); }
.t-hills   { background: linear-gradient(160deg, #1B3A4B, #0D2137); }
.t-wildlife{ background: linear-gradient(160deg, #1A3320, #0D2010); }
.t-beach   { background: linear-gradient(160deg, #1B3545, #0A2535); }
.t-pilgrim { background: linear-gradient(160deg, #3A2010, #1A0E08); }
.t-honey   { background: linear-gradient(160deg, #3A1A2A, #200D1A); }
.t-historic{ background: linear-gradient(160deg, #2A2A10, #1A1808); }

/* ── 14. WHY US ── */
.why { background: var(--deep); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual { position: relative; height: 580px; }
.why-card-float {
  position: absolute;
  background: var(--dark);
  border-radius: 12px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}
.wfc-1 { top: 30px;   left: 10px; width: 230px; animation: floatCard 5s ease-in-out infinite; }
.wfc-2 { top: 200px;  right: 0;   width: 270px; animation: floatCard 5s ease-in-out infinite; animation-delay: -2s; }
.wfc-3 { bottom: 80px;left: 30px; width: 250px; animation: floatCard 5s ease-in-out infinite; animation-delay: -4s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.wc-icon  { font-size: 32px; margin-bottom: 10px; }
.wc-title { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 2px; }
.wc-val   { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--gold); font-weight: 600; }
.wc-desc  { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.6; }
.why-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: linePulse 3s ease-in-out infinite;
}
.wl-1 { height: 160px; left: 50%;  top: 110px; }
.wl-2 { height: 100px; right: 20%; bottom: 60px; }
@keyframes linePulse {
  0%, 100% { opacity: .2; }
  50%       { opacity: .8; }
}
.why-points  { display: flex; flex-direction: column; gap: 26px; margin-top: 40px; }
.why-point   { display: flex; gap: 18px; align-items: flex-start; }
.wp-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all .3s;
}
.why-point:hover .wp-icon { background: var(--gold); transform: rotate(10deg); }
.wp-title { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 5px; }
.wp-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── 15. TESTIMONIALS ── */
.testimonials { background: var(--deep2); }
.testi-header  { text-align: center; margin-bottom: 50px; }
.testi-slider-wrap { overflow: hidden; position: relative; }
.testi-track   { display: flex; transition: transform .5s cubic-bezier(.25, .46, .45, .94); }
.testi-card {
  background: var(--dark);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .07);
  position: relative;
  flex-shrink: 0;
  transition: border-color .3s;
  box-sizing: border-box;
}
.testi-card:hover { border-color: rgba(201, 168, 76, .25); }
.testi-quote  { font-family: 'Cormorant Garamond', serif; font-size: 80px; color: var(--gold); opacity: .15; line-height: 1; position: absolute; top: 8px; right: 16px; }
.testi-stars  { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text   { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  color: var(--deep);
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 600; color: var(--cream); }
.testi-loc  { font-size: 12px; color: var(--muted); }
.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .3);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}
.testi-btn:hover { background: var(--gold); color: var(--deep); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── 16. CONTACT ── */
.contact { background: var(--deep); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.c-office {
  background: var(--dark);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .07);
}
.c-office-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.c-office p  { font-size: 14px; color: var(--muted); line-height: 2.1; }
.c-office a  { color: var(--text); text-decoration: none; transition: color .2s; }
.c-office a:hover { color: var(--gold); }
.contact-form {
  background: var(--dark);
  border-radius: 10px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, .07);
}
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--cream); margin-bottom: 24px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 5px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: all .3s;
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%239AA3B5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .08);
}
.form-group select option { background: var(--dark); color: var(--text); }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--deep);
  padding: 16px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Outfit', sans-serif;
}
.form-submit:hover    { box-shadow: 0 10px 40px rgba(201, 168, 76, .35); transform: translateY(-2px); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-msg {
  display: none;
  text-align: center;
  color: var(--gold);
  margin-top: 14px;
  font-size: 14px;
  padding: 12px;
  background: rgba(201, 168, 76, .08);
  border-radius: 5px;
  border: 1px solid rgba(201, 168, 76, .2);
}

/* ── 17. FOOTER ── */
footer {
  background: var(--deep2);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: clamp(40px, 5vw, 60px) 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-top: 14px; }
.footer-social  { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}
.social-btn:hover { border-color: var(--gold); background: rgba(201, 168, 76, .1); transform: translateY(-3px); }
.footer-col h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a  { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy       { font-size: 13px; color: var(--muted); }
.footer-copy span  { color: var(--gold); }
.footer-phone      { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); text-decoration: none; transition: color .2s; }
.footer-phone:hover{ color: var(--gold); }

/* ── 18. FLOATING BUTTONS ── */
.float-contact {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--deep);
  padding: 11px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(201, 168, 76, .4);
  transition: transform .3s, box-shadow .3s, opacity .4s;
  opacity: 0;
  transform: translateX(80px);
}
.float-btn.show { opacity: 1; transform: translateX(0); }
.float-btn:nth-child(2) { transition-delay: .12s; }
.float-btn:hover { transform: scale(1.06) !important; box-shadow: 0 10px 36px rgba(201, 168, 76, .5) !important; }
.float-icon { font-size: 16px; }

/* ════ 19. RESPONSIVE — 1100px ════ */
@media (max-width: 1100px) {
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .why-inner { gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ════ 20. RESPONSIVE — 900px ════ */
@media (max-width: 900px) {
  nav        { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-subtitle { display: none; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-card:nth-child(1) { grid-column: span 3; grid-row: span 1; }
  .dest-card:nth-child(1) .dest-card-img { min-height: 200px; }
  .dest-card:nth-child(2),
  .dest-card:nth-child(3),
  .dest-card:nth-child(4),
  .dest-card:nth-child(5),
  .dest-card:nth-child(6) { grid-column: span 1; }
  .pkg-grid   { grid-template-columns: repeat(2, 1fr); }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .why-visual { display: none; }
  .why-inner  { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

/* ════ 21. RESPONSIVE — 640px ════ */
@media (max-width: 640px) {
  nav   { padding: 14px 16px; }
  .logo { font-size: 22px; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dest-card:nth-child(1) { grid-column: span 2; }
  .dest-card:nth-child(2),
  .dest-card:nth-child(3),
  .dest-card:nth-child(4),
  .dest-card:nth-child(5),
  .dest-card:nth-child(6) { grid-column: span 1; }
  .pkg-grid   { grid-template-columns: 1fr; }
  .pkg-thumb  { height: 160px; }
  .theme-grid { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .dest-header,
  .pkg-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { bottom: 28px; gap: 16px; }
  .hero-actions .btn-secondary { display: none; }
  .float-btn .float-label { display: none; }
  .float-btn  { padding: 11px 14px; }
}
