/* ============================================
   VrioTours - Main Stylesheet
   Premium Gold & Deep Navy Theme
   ============================================ */

/* ── CSS Variables (Design Tokens) ── */
:root {
  --navy: #0a0e1a;
  --navy-mid: #111827;
  --navy-light: #1c2540;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-pale: rgba(201, 168, 76, .12);
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-main: #e2ddd4;
  --text-muted: #8a8fa8;
  --danger: #e05c5c;
  --success: #4caf80;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 8px 32px rgba(0, 0, 0, .45);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, .25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --nav-h: 70px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Utility ── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold-pale);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-color: rgba(255, 255, 255, .2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}

.btn-danger:hover {
  opacity: .85;
}

.btn-icon {
  padding: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-light);
  background: var(--navy-mid);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-size: .85rem;
}

.btn-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-icon.edit:hover {
  color: var(--gold);
}

.btn-icon.delete:hover {
  color: var(--danger);
  border-color: var(--danger);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.accent {
  color: var(--gold);
}

/* ============================================
   NAVIGATION — WHITE PREMIUM NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

/* Scrolled — tighter + stronger shadow */
#navbar.scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 32px;
}

/* Dark text on white background */
.nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: #3a3a3a;
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.3px;
  padding: 4px 0;
}

/* Gold underline on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Book Now button — gold outline on white navbar */
.nav-cta {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

/* Hamburger — dark lines on white bg */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #3a3a3a;
  border-radius: 2px;
  transition: var(--transition);
}

.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);
}

/* Navbar logo — NO invert on white background */
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: filter var(--transition), transform var(--transition);
}

#navbar.scrolled .logo-img {
  height: 36px;
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 14, 26, .92) 0%,
      rgba(10, 14, 26, .75) 60%,
      rgba(10, 14, 26, .55) 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb2 {
  width: 300px;
  height: 300px;
  background: #6b8fd4;
  bottom: 80px;
  left: 5%;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -40px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 92vw);
  margin-left: max(4vw, calc((100vw - 1200px)/2));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp .8s .1s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeUp .8s .2s both;
}

.hero-accent {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp .8s .3s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp .8s .4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp .8s .5s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUp .8s .7s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.destinations-section {
  background: var(--navy-mid);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, .9) 0%, transparent 55%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
}

.dest-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
}

.dest-info p {
  font-size: .8rem;
  color: var(--text-muted);
}

.dest-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================
   TRIPS SECTION
   ============================================ */
.trips-section {
  background: var(--navy);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.trip-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--text-muted);
  transition: border-color var(--transition);
}

.trip-search:focus-within {
  border-color: var(--gold);
}

.trip-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: .9rem;
  width: 220px;
}

.trip-search input::placeholder {
  color: var(--text-muted);
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.trip-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201, 168, 76, .3);
}

.trip-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.trip-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.trip-card:hover .trip-card-img img {
  transform: scale(1.05);
}

.trip-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.trip-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trip-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}

.trip-meta {
  display: flex;
  gap: 16px;
  font-size: .8rem;
  color: var(--text-muted);
}

.trip-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trip-meta i {
  color: var(--gold);
}

.trip-desc {
  font-size: .85rem;
  color: var(--text-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--navy-light);
  flex-wrap: wrap;
  gap: 12px;
}

.trip-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: .7rem;
  color: var(--text-muted);
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.trip-actions {
  display: flex;
  gap: 8px;
}

.trip-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  color: var(--gold);
}

.trip-rating span {
  color: var(--text-muted);
}

.no-trips {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  grid-column: 1/-1;
}

.no-trips i {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--navy-light);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--navy-mid);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 480px;
}

.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
}

.about-img-main {
  width: 75%;
  height: 100%;
}

.about-img-small {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 48%;
  height: 55%;
  border: 4px solid var(--navy-mid);
}

.about-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-gold);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: .7rem;
  font-weight: 600;
  text-align: center;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item>i {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

.feature-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, .3);
}

.testimonial-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 14px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: .9rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-name {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

.author-trip {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--navy-mid);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
}

.contact-info .about-text {
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: .9rem;
}

.contact-item i {
  color: var(--gold);
  width: 18px;
}

.contact-item-link {
  text-decoration: none;
  background: var(--navy-light);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  justify-content: space-between;
  transition: var(--transition);
}

.contact-item-link:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--white);
  transform: translateX(4px);
}

.contact-item-link:hover i {
  color: var(--gold-light);
}

.contact-item-whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, .1);
}

.contact-item-whatsapp i {
  color: #25d366 !important;
}

.contact-action-tag {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity var(--transition);
}

.contact-item-link:hover .contact-action-tag {
  opacity: 1;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

.contact-form-wrap {
  background: var(--navy);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ── Form Styles (shared) ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--navy-mid);
  border: 1.5px solid var(--navy-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group small {
  font-size: .75rem;
  color: var(--text-muted);
}

.form-group select option {
  background: var(--navy-mid);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-light);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 240px;
}

.footer-links h4,
.footer-newsletter h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-newsletter p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.newsletter-input {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--navy-light);
}

.newsletter-input input {
  flex: 1;
  background: var(--navy-mid);
  border: none;
  padding: 10px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: .85rem;
  outline: none;
}

.newsletter-input .btn {
  border-radius: 0;
  padding: 10px 18px;
  font-size: .82rem;
}

.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: .8rem;
}

/* ===== WHATSAPP FLOAT ===== */
#wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

#wa:hover {
  transform: scale(1.08);
}

#wa svg {
  width: 30px;
  fill: white;
}

.wa-tip {
  position: absolute;
  right: 75px;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

#wa:hover .wa-tip {
  opacity: 1;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 16, .85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(.97);
  transition: transform var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-sm {
  width: min(400px, 100%);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--navy-light);
}

.modal-header h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.25rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color var(--transition);
  padding: 4px;
}

.modal-close:hover {
  color: var(--white);
}

.modal-body {
  padding: 24px 28px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--navy-light);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  color: var(--text-main);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .9rem;
  z-index: 1100;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  border-color: var(--success);
  color: var(--success);
}

.toast.error {
  border-color: var(--danger);
  color: var(--danger);
}

.toast.info {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE – Tablet (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav drawer — WHITE background to match navbar */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    padding: 28px 24px 36px;
    gap: 20px;
    border-bottom: 1px solid #e8e5de;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open .nav-link {
    font-size: 1.1rem;
    padding: 6px 0;
    color: #3a3a3a;
  }

  .nav-links.open .nav-link:hover,
  .nav-links.open .nav-link.active {
    color: var(--gold);
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .dest-card {
    aspect-ratio: 4/5;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 320px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ============================================
   RESPONSIVE – Mobile (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-img-small {
    display: none;
  }

  .about-badge {
    right: 8px;
    top: 8px;
  }

  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .trip-search {
    width: 100%;
  }

  .trip-search input {
    width: 100%;
  }

  .hero-content {
    margin-left: 4vw;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dest-card {
    aspect-ratio: 16/9;
  }

  .dest-info h3 {
    font-size: 1.1rem;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE – Large Mobile (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dest-card {
    aspect-ratio: 16/9;
    border-radius: var(--radius-sm);
  }

  .dest-info h3 {
    font-size: 1rem;
  }

  .dest-info p {
    font-size: .75rem;
  }

  .dest-tag {
    font-size: .65rem;
    padding: 3px 10px;
  }

  .logo-img {
    height: 32px;
  }

  .logo-img-footer {
    height: 28px;
  }
}

/* ============================================
   LOGO IMAGE (replaces text logo)
   ============================================ */
.logo-img2 {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* Footer logo — slightly smaller, inverted for dark bg */
.logo-img-footer {
  /* height: 36px;
  filter: brightness(0) invert(1);
  opacity: .85; */
  height: 200px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
}


.packages-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.package-box {
  flex: 1;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.package-box i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ff6b35;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.pay-box {
  padding: 12px 20px;
  background: #f5f5f5;
  border-radius: 8px;
  font-weight: 500;
}

/* CSS (Flip Animation + Form Styling) */
.trip-card {
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.trip-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}

.card-back {
  transform: rotateY(180deg);
  background: #fff;
  padding: 15px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-form input,
.booking-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking-form button {
  background: #25D366;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* Google Reviews Widget Fix */
.elfsight-app-94c37e88-d734-46c0-a298-a398a3c05dbc {
  color: white !important;
}

/* Review Text */
[class*="Review"] {
  color: white !important;
}

/* Paragraphs */
[class*="review"] p,
[class*="Review"] p,
[class*="review"] span,
[class*="Review"] span,
[class*="review"] div,
[class*="Review"] div {
  color: white !important;
}

/* Reviewer Name */
[class*="Author"] {
  color: white !important;
}

/* Summary Text */
[class*="Summary"] {
  color: white !important;
}

/* ════════════════════════════════════════════════
   CONTACT FORM — WhatsApp Integration Styles
   ════════════════════════════════════════════════ */

/* Required field asterisk */
.req {
  color: var(--danger);
  margin-left: 2px;
}

/* Optional label badge */
.optional {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
}

/* ── Inline field error message ── */
.field-error {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--danger);
  font-size: .78rem;
  font-weight: 500;
  margin-top: 5px;
  animation: fadeUp 0.2s ease both;
}

.field-error::before {
  content: '\26A0';
  /* ⚠ */
  font-size: .85rem;
}

/* ── Red border on invalid input ── */
.form-group input.input-error,
.form-group textarea.input-error {
  border-color: var(--danger) !important;
  background: rgba(224, 92, 92, 0.06);
  animation: shake 0.35s ease;
}

/* ── Character counter for message textarea ── */
.char-count {
  display: block;
  text-align: right;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 4px;
  transition: color 0.2s;
}

/* ── Success banner (shown after WhatsApp opens) ── */
.form-success-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-size: .9rem;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  /* Hidden by default */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.form-success-banner i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.form-success-banner.visible {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 20px;
}

/* ── Loading spinner for submit button ── */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fa-spin {
  display: inline-block;
  animation: spin 0.75s linear infinite;
}

/* ── Shake animation for invalid fields ── */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-7px);
  }

  40% {
    transform: translateX(7px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

/* ===========================
   FOOTER
=========================== */

.footer {
  background: #0b1120;
  color: #fff;
  padding: 70px 0 25px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.footer-brand p {
  color: #b8bfd1;
  line-height: 1.8;
  margin-top: 15px;
  max-width: 280px;
}

.footer h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  color: #b8bfd1;
  text-decoration: none;
  margin-bottom: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.newsletter-input {
  display: flex;
  margin: 20px 0 30px;
}

.newsletter-input input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: #111827;
  color: #fff;
  border-radius: 30px 0 0 30px;
  outline: none;
}

.newsletter-input button {
  border-radius: 0 30px 30px 0;
  padding: 14px 22px;
}

.footer-newsletter p,
.footer-vision-mission p {
  color: #b8bfd1;
  line-height: 1.8;
}

.footer-vision-mission {
  margin-top: 10px;
}

.footer-vision-mission h4 {
  margin: 20px 0 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  color: #b8bfd1;
}

/* Responsive */

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-newsletter {
    align-items: center;
  }

  .footer-brand p,
  .footer-vision-mission p {
    max-width: 100%;
    text-align: center;
  }

  .newsletter-input {
    width: 100%;
    max-width: 420px;
  }
}