/* ============================================
   SEOUL WANDERERS - Main Stylesheet
   Color Palette: Cherry Blossom Inspired
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --pink-light: #fce4ec;
  --pink-soft: #f8bbd0;
  --pink-mid: #f48fb1;
  --pink-deep: #e91e8c;
  --pink-rose: #e8a0b4;
  --blue-soft: #b3d4f5;
  --blue-light: #dbeafe;
  --blue-mid: #7eb8f7;
  --purple-soft: #e8d5f5;
  --purple-mid: #c084fc;
  --purple-deep: #9333ea;
  --purple-light: #f3e8ff;
  --cream: #fdf6f0;
  --ivory: #fef9f5;
  --warm-white: #fffbf8;
  --text-dark: #2d1b2e;
  --text-mid: #5a3a5c;
  --text-soft: #9b7d9e;
  --text-light: #c4a8c7;
  --border-soft: rgba(232, 160, 180, 0.25);
  --shadow-pink: 0 8px 32px rgba(244, 143, 177, 0.18);
  --shadow-purple: 0 8px 32px rgba(147, 51, 234, 0.12);
  --gradient-hero: linear-gradient(135deg, rgba(252, 228, 236, 0.92) 0%, rgba(232, 213, 245, 0.88) 50%, rgba(179, 212, 245, 0.85) 100%);
  --gradient-card: linear-gradient(145deg, var(--pink-light), var(--purple-light));
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'DM Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

/* ============================================
   BASE & RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: #000000;
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-mid);
  border-radius: 10px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: #ffffff !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-pink);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .brand-logo {
  width: 100%;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
}

.navbar-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.navbar-brand .brand-text span {
  color: var(--pink-deep);
}

.navbar-nav .nav-link {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-mid) !important;
  padding: 6px 14px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gradient-card);
  background: linear-gradient(90deg, var(--pink-mid), var(--purple-mid));
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-dark) !important;
}

.navbar-toggler {
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e91e8c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Buttons */
.btn-search-nav {
  background: transparent;
  border: 1.5px solid rgb(0 0 0 / 25%);
  color: black;
  padding: 7px 14px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-search-nav:hover {
  background: var(--pink-light);
  border-color: var(--pink-mid);
  color: var(--text-dark);
}

.btn-signup-nav {
  background: linear-gradient(135deg, var(--pink-mid), var(--purple-mid));
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244, 143, 177, 0.35);
}

.btn-signup-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 143, 177, 0.45);
  color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/b.jfif');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.719);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--pink-deep);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 70px);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--pink-deep);
  position: relative;
}

.hero-subtitle {
  font-family: #000000;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: white;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--pink-mid) 0%, var(--purple-mid) 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(244, 143, 177, 0.4);
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(244, 143, 177, 0.55);
  color: white;
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-dark);
  border: 1.5px solid var(--border-soft);
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--pink-mid);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-item .stat-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Floating cherry blossom elements */
.hero-floating {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: none;
}

@media (min-width: 1200px) {
  .hero-floating {
    display: block;
  }
}

.hero-floating-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 6px 4px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-pink);
  min-width: 220px;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card:nth-child(2) {
  animation-delay: -2s;
  margin-left: 30px;
}

@keyframes floatCard {

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

  50% {
    transform: translateY(-12px);
  }
}

/* ============================================
   SECTION GENERAL STYLES
   ============================================ */
section {
  padding: 40px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  border: 1px solid var(--border-soft);
  color: var(--pink-deep);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--pink-deep);
}

.section-subtitle {
  font-family: #000000;
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.divider-petal {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.divider-petal::before,
.divider-petal::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-soft), transparent);
}

.divider-petal .petal-icon {
  font-size: 1.2rem;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: '🌸';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 200px;
  opacity: 0.06;
  pointer-events: none;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pink);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--border-soft);
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: #000000;
  font-size: 1.05rem;
  color: var(--text-mid);
}

.about-features li .feat-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--warm-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-soft);
  transform: translateY(-2px);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  user-select: none;
}

.faq-question .q-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--pink-mid);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  font-family: #000000;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ============================================
   TRIP CARDS
   ============================================ */
.trips-section {
  background: var(--cream);
}

.trip-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 400px;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.trip-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.trip-card:hover .card-bg {
  transform: scale(1.06);
}

.trip-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 35%) 50%, #000000b0 100%);
}

.trip-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: white;
}

.trip-card .card-badge {
  display: inline-block;
  background: rgba(244, 143, 177, 0.3);
  border: 1px solid rgba(244, 143, 177, 0.5);
  backdrop-filter: blur(8px);
  color: #fce4ec;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.trip-card .card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.trip-card .card-dates {
  font-family: var(--font-ui) 'DM Sans', sans-serif;
  font-size: 16px;
  color: rgb(255 255 255 / 80%);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-weight: 600;
}

.trip-card .card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.trip-card .card-btn:hover {
  background: var(--pink-light);
}

/* ============================================
   ITINERARY SECTION
   ============================================ */
.itinerary-section {
  background: var(--warm-white);
}

.day-card {
  background: white;
  border: 1px solid rgb(229 158 178 / 77%);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.day-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--pink-mid), var(--purple-mid));
  border-radius: 4px 0 0 4px;
}

.day-card:hover {
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-soft);
  transform: translateX(4px);
}

.day-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  color: var(--text-mid);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.day-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.activity-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: #000000;
  font-size: 0.98rem;
  color: #1e1d1e;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
}

.activity-list li::before {
  content: '✦';
  color: var(--pink-mid);
  font-size: 0.65rem;
}

/* ============================================
   TEAM / ABOUT US PAGE
   ============================================ */
.about-hero {
  padding: 160px 0 30px;
  position: relative;
  overflow: hidden;

  background: linear-gradient(rgb(0 0 0 / 74%), rgb(0 0 0 / 75%), rgb(0 0 0 / 70%)), url(../trips-images/oback.jpg);
  /* 👈 apni image path daal */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Text color fix */
.about-hero h1,
.about-hero p,
.about-hero span {
  color: #fff;
}

.about-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 143, 177, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.team-card {
  background: white;
  border: 1px solid rgb(237 141 168 / 65%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
}

.team-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.team-card-body {
  padding: 28px;
}

.team-card-role {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 6px;
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.team-card-tagline {
  font-family: #000000;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.team-card-desc {
  font-family: #000000;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.team-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-soft);
}

.team-highlights li:last-child {
  border-bottom: none;
}

.team-highlights .hi-icon {
  color: var(--pink-deep);
}

/* ============================================
   VALUES SECTION
   ============================================ */
.value-card {
  background: white;
  border: 1px solid rgb(235 126 156 / 75%);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-soft);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-desc {
  font-family: #000000;
  font-size: 1rem;
  color: #5d4a5e;
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--purple-soft) 0%, var(--pink-light) 50%, var(--blue-light) 100%);
  padding: 140px 0 90px;
}

.contact-info-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-pink);
  border-color: var(--pink-soft);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.contact-info-value {
  font-family: #000000;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-form-wrap {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-pink);
}

.form-label-custom {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: #000000;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-control-custom::placeholder {
  color: var(--text-light);
}

.form-control-custom:focus {
  border-color: var(--pink-mid);
  background: white;
  box-shadow: 0 0 0 4px rgba(244, 143, 177, 0.12);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  filter: brightness(1.1);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.footer-desc {
  font-family: #000000;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: #000000;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--pink-soft);
  padding-left: 4px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copy span {
  color: var(--pink-soft);
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--pink-deep);
  color: white;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Background Image */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../trips-images/oback.jpg') center/cover no-repeat;
  /* 👈 image yaha lagani hai */
  z-index: 0;
}

/* Gradient Overlay (ONLY ONE overlay use karo) */
.page-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.699),
      rgba(0, 0, 0, 0.651),
      rgba(0, 0, 0, 0.678));
}

/* Content upar */
.page-hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.search-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 27, 46, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.search-modal-overlay.active {
  display: flex;
}

.search-modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 560px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

.search-input-wrap {
  position: relative;
}

.search-input-wrap input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  font-family: #000000;
  font-size: 1.1rem;
  color: var(--text-dark);
  outline: none;
  background: var(--cream);
}

.search-input-wrap input:focus {
  border-color: var(--pink-mid);
  background: white;
}

.search-input-wrap .s-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-soft);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* Petal animation for hero */
.sakura-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -20px;
  animation: petalFall linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes petalFall {
  0% {
    transform: translateY(-20px) rotate(0deg) translateX(0);
    opacity: 0.8;
  }

  25% {
    transform: translateY(25vh) rotate(90deg) translateX(30px);
  }

  50% {
    transform: translateY(50vh) rotate(180deg) translateX(-20px);
    opacity: 0.6;
  }

  75% {
    transform: translateY(75vh) rotate(270deg) translateX(40px);
  }

  100% {
    transform: translateY(110vh) rotate(360deg) translateX(0);
    opacity: 0;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.text-pink {
  color: var(--pink-deep) !important;
}

.text-purple {
  color: var(--purple-deep) !important;
}

.bg-cream {
  background-color: var(--cream);
}

.bg-ivory {
  background-color: var(--ivory);
}

.rounded-custom {
  border-radius: var(--radius-md);
}

.rounded-pill-custom {
  border-radius: var(--radius-xl);
}

.fw-300 {
  font-weight: 300;
}

.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: #000000;
}

.font-ui {
  font-family: var(--font-ui);
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }

  .hero-stats {
    gap: 24px;
  }

  .navbar-collapse {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-pink);
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .trip-card {
    height: 380px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .about-img-wrap img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TRIPS PAGE SPECIFIC
   ============================================ */
.trips-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=1920&q=80');
}

/* ============================================
   SHIMMER / SKELETON LOADER
   ============================================ */
.shimmer {
  background: linear-gradient(90deg, var(--cream) 25%, var(--pink-light) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ============================================
   HIGHLIGHT BANNER
   ============================================ */
.highlight-banner {
  background: linear-gradient(135deg, var(--pink-light), var(--purple-soft), var(--blue-light));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  border: 1px solid var(--border-soft);
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink-mid), var(--purple-mid));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(244, 143, 177, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(244, 143, 177, 0.55);
}





html,
body {
  overflow-x: hidden;
}




.gallery-section {
  padding: 60px 0;
}

.gallery-title {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 600;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Desktop: 4 images */
  gap: 15px;
}

/* Image style */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* Hover effect */
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Mobile: 2 images per row */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* Floating Icon */
.floating-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.float-call {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.float-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-icons a:hover {
  transform: scale(1.12);
}

.float-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ============================================
   ITINERARY IMAGE LAYOUT
   ============================================ */
.itinerary-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pink);
  height: 280px;
}

.itinerary-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.itinerary-img-wrap:hover img {
  transform: scale(1.05);
}

.itinerary-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(45, 27, 46, 0.80), transparent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 24px 16px 12px;
  text-align: center;
}

/* Day card: remove bottom margin when inside itinerary row */
.itinerary-row .day-card {
  height: 100%;
  margin-bottom: 0;
}

/* Alternating background stripes for itinerary rows */
.itinerary-row:nth-child(odd) {
  background: transparent;
}

/* Mobile: stack image below card */
@media (max-width: 767px) {
  .itinerary-img-wrap {
    height: 220px;
    margin-top: 8px;
  }

  .itinerary-row .order-md-1,
  .itinerary-row .order-md-2 {
    order: unset !important;
  }
}