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

:root {
  --primary: #E85D2C;
  --primary-dark: #D04A1E;
  --primary-light: #FFF0E8;
  --secondary: #1B2A4A;
  --secondary-light: #2A3F6A;
  --accent: #D4A848;
  --accent-light: #F5E6B8;
  --white: #FFFFFF;
  --off-white: #FFF8F5;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

.container { max-width: 1200px; }

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 93, 44, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 44, 0.4);
  color: var(--white);
}

.btn-secondary-custom {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(27, 42, 74, 0.3);
}

.btn-secondary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 42, 74, 0.4);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline-custom:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent), #C49A30);
  color: var(--secondary);
  box-shadow: 0 4px 15px rgba(212, 168, 72, 0.3);
}

.btn-accent-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 72, 0.4);
  color: var(--secondary);
}

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 93, 44, 0.1);
  outline: none;
}

.form-control::placeholder { color: var(--gray-400); }

.form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 93, 44, 0.1);
  outline: none;
}

.card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
  overflow: hidden;
}

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

.glass-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===== NAVBAR ===== */
.topbar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.topbar a { color: var(--white); }
.topbar a:hover { color: var(--accent); }
.topbar .bi { margin-right: 6px; }

.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0;
  transition: var(--transition);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  padding: 12px 0;
}

.navbar-brand img { height: 42px; width: auto; }

.navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gray-700);
  padding: 24px 16px !important;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

.navbar .nav-link:hover { color: var(--primary); }

.navbar .btn-navbar {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.navbar .btn-navbar:hover {
  background: var(--primary-dark);
  color: var(--white);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.4) 50%, rgba(232,93,44,0.3) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge .bi-star-fill { color: var(--accent); }

.hero h1 {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero h1 .text-accent { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.hero-cta .btn {
  padding: 18px 36px;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  padding: 14px 22px;
  border-radius: 12px;
  text-align: center;
}

.hero-stat h3 {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2px;
}

.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}

.hero-form-wrapper {
  position: relative;
  z-index: 2;
}

.hero-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 35px;
  box-shadow: var(--shadow-xl);
}

.hero-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.hero-form p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-form .form-control,
.hero-form .form-select { margin-bottom: 6px; }

.hero-form .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4px;
  display: block;
}

.hero-form textarea { min-height: 80px; resize: vertical; }

.hero-form .btn-submit {
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.hero-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,93,44,0.4);
}

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: var(--gray-50);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-100);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.trust-item .bi {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* ===== PACKAGES ===== */
.packages-section {
  background: var(--off-white);
}

.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

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

.package-card .card-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}

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

.package-card:hover .card-img img { transform: scale(1.08); }

.package-card .card-body { padding: 20px; }

.package-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0;
  line-height: 1.3;
}

.pkg-hr {
  margin: 6px 0;
  border: 0;
  height: 1px;
  background: var(--gray-200);
  opacity: 1;
}

.pkg-inclusions {
  margin-bottom: 12px;
}

.pkg-inclusions p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.7;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pkg-inclusions p .bi {
  color: #16A34A;
  font-size: 1rem;
  flex-shrink: 0;
}

.pkg-inclusions .pkg-hr {
  margin: 4px 0;
}

.btn-pkg {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn-pkg:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232,93,44,0.3);
}

/* ===== PACKAGE BADGES ===== */
.pkg-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1;
}

.pkg-badge-hot {
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: #fff;
}

.pkg-badge-selling {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
}

.pkg-badge-popular {
  background: linear-gradient(135deg, #16A34A, #15803D);
  color: #fff;
}

.pkg-badge-value {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: #fff;
}

.pkg-badge-rated {
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
}

.pkg-badge-budget {
  background: linear-gradient(135deg, #0D9488, #0F766E);
  color: #fff;
}

.pkg-badge-seller {
  background: linear-gradient(135deg, #EA580C, #C2410C);
  color: #fff;
}

.pkg-badge-premium {
  background: linear-gradient(135deg, #D4A848, #B8860B);
  color: #1B2A4A;
}

.pkg-badge-ultimate {
  background: linear-gradient(135deg, #DB2777, #BE185D);
  color: #fff;
}

.pkg-badge-winter {
  background: linear-gradient(135deg, #06B6D4, #0891B2);
  color: #fff;
}

.pkg-badge-classic {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: #fff;
}

/* ===== SPECIAL PACKAGES (BY THEME) ===== */
.special-packages-section {
  background: var(--off-white);
}

.special-card {
  text-align: center;
  padding: 40px 20px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.special-card:hover::before {
  transform: scaleX(1);
}

.special-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.special-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #FFD5C0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.special-card:hover .special-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.special-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.special-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-special {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-special:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232,93,44,0.3);
  transform: translateY(-2px);
}

/* ===== WHY CHOOSE US ===== */
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover::before { transform: scaleX(1); }

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

.why-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .icon-wrap {
  background: var(--primary);
  color: var(--white);
}

.why-card h5 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== DESTINATIONS ===== */
.destinations-section {
  background: var(--off-white);
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 320px;
  display: block;
}

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

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

.dest-card .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.1) 60%, transparent 100%);
  transition: var(--transition);
}

.dest-card .dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  z-index: 2;
}

.dest-card .dest-info h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.dest-card .dest-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}

.dest-card .dest-info .btn-explore {
  background: var(--white);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.dest-card .dest-info .btn-explore:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== TOUR HIGHLIGHTS ===== */
.highlights-section {
  background: var(--secondary);
  color: var(--white);
}

.highlights-section .section-title { color: var(--white); }
.highlights-section .section-subtitle { color: rgba(255,255,255,0.7); }

.highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
  height: 100%;
}

.highlight-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(5px);
}

.highlight-card .highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}

.highlight-card .highlight-text h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.highlight-card .highlight-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

/* ===== USP ===== */
.usp-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.usp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.usp-card .usp-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.usp-card h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.usp-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== GOOGLE REVIEWS ===== */
.testimonials-section {
  background: var(--off-white);
}

.g-review {
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  font-family: 'Google Sans', Arial, Helvetica, sans-serif;
  transition: all 0.3s ease;
}

.g-review:hover {
  box-shadow: 0 4px 16px rgba(60,64,67,0.18);
  transform: translateY(-3px);
}

.g-review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.g-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1A73E8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
  font-family: 'Google Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
}

.g-user {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.g-name {
  font-size: 1rem;
  font-weight: 600;
  color: #202124;
  line-height: 1.3;
  font-family: 'Google Sans', Arial, Helvetica, sans-serif;
}

.g-source {
  font-size: 0.82rem;
  color: #5F6368;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Google Sans', Arial, Helvetica, sans-serif;
}

.g-source .bi-google {
  color: #4285F4;
  font-size: 1rem;
}

.g-stars {
  color: #FBBC04;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1;
}

.g-text {
  font-size: 1rem;
  color: #3C4043;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: 'Google Sans', Arial, Helvetica, sans-serif;
}

.hl {
  background: #FEF08A;
  padding: 0 4px;
  font-weight: 500;
  border-radius: 2px;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gallery-item {
    border-radius: 8px;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }
}

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

.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  padding: 20px 24px;
  background: var(--white);
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.accordion-button::after {
  background-size: 16px;
  transition: var(--transition);
}

.accordion-body {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--off-white);
}

.contact-info-card {
  background: var(--secondary);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item .contact-detail h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-item .contact-detail a,
.contact-item .contact-detail span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  display: block;
}

.contact-item .contact-detail a:hover { color: var(--accent); }

.contact-map {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.contact-form-card .form-control,
.contact-form-card .form-select { margin-bottom: 6px; }

.contact-form-card .form-label,
.modal-body .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4px;
  display: block;
}

.contact-form-card textarea { min-height: 100px; resize: vertical; }

.contact-form-card .btn-submit {
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.contact-form-card .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,93,44,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.footer p { font-size: 0.9rem; line-height: 1.7; }

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.footer-links .bi { font-size: 0.75rem; }

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
}

.sticky-cta-desktop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta-desktop .btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  justify-content: center;
  min-width: 180px;
}

.sticky-cta-desktop .btn-call {
  background: #22C55E;
  color: var(--white);
}

.sticky-cta-desktop .btn-call:hover {
  background: #16A34A;
  color: var(--white);
  transform: translateX(-4px);
}

.sticky-cta-desktop .btn-enquire {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 1.05rem;
  padding: 16px 32px;
}

.sticky-cta-desktop .btn-enquire:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232,93,44,0.4);
}

.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  padding: 8px 10px;
  gap: 8px;
}

.sticky-cta-mobile .btn {
  flex: 1;
  padding: 12px 12px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  justify-content: center;
  min-width: 0;
}

.sticky-cta-mobile .btn-call {
  background: #22C55E;
  color: var(--white);
}

.sticky-cta-mobile .btn-enquire {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

@media (min-width: 992px) {
  .sticky-cta-mobile { display: none !important; }
}

/* ===== MICRO ELEMENTS ===== */
.micro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
}

.micro-badge-hot {
  background: #FEF2F2;
  color: #DC2626;
}

.micro-badge-rating {
  background: #FFFBEB;
  color: #D97706;
}

.micro-badge-confirm {
  background: #F0FDF4;
  color: #16A34A;
}

.micro-badge-offer {
  background: #FFF7ED;
  color: #EA580C;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2.25rem; }
}

/* ===== VFIX-STYLE BANNER ===== */
.vfix-banner {
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 50%, #1d4ed8 100%);
  padding: 32px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .vfix-banner { text-align: left; padding: 48px 20px; }
}
.vfix-banner h1 {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .vfix-banner h1 { font-size: 3.75rem; font-weight: 900; }
}
.vfix-banner-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  margin: 20px 0 12px;
  opacity: 0.9;
  max-width: 800px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .vfix-banner-sub { font-size: 1.5rem; }
}
.vfix-banner-stats {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .vfix-banner-stats { font-size: 1.25rem; justify-content: flex-start; }
}
.vfix-banner-stats .stat-underline {
  border-bottom: 4px solid #4ADE80;
  display: inline-block;
  padding-bottom: 2px;
}
.vfix-banner-stats i { margin-right: 6px; }

/* ===== OFFER BAR ===== */
.offer-bar {
  background: linear-gradient(135deg, var(--secondary) 0%, #0F1D3A 100%);
  padding: 10px 0;
  border-bottom: 2px solid var(--accent);
  position: relative;
  z-index: 1020;
}
.offer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.offer-bar-icon { font-size: 1.1rem; line-height: 1; }
.offer-bar-text {
  color: var(--gray-200);
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.offer-bar-text strong { color: var(--accent); }
.offer-bar-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.offer-bar-text a:hover { color: var(--accent); }
.offer-bar-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.offer-bar-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== WHAT'S INCLUDED BAR ===== */
.included-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
}
.included-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.included-item:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.included-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), #FFD5C0);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}
.included-item:hover .included-icon {
  background: var(--primary);
  color: var(--white);
}
.included-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.included-item p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .hero { min-height: auto; }
  .hero-content { padding: 100px 0 50px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-form { margin-top: 40px; }
  .navbar .nav-link { padding: 12px 16px !important; }
  .navbar .nav-link::after { display: none; }
  .section-padding { padding: 70px 0; }
  .section-title { font-size: 2rem; }
  .sticky-cta-desktop { display: none !important; }
  .sticky-cta-mobile { display: flex; }
}

@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-cta .btn { padding: 14px 24px; font-size: 0.95rem; flex: 1; }
  .hero-stats { gap: 16px; }
  .hero-stat h3 { font-size: 1.4rem; }
  .section-padding { padding: 50px 0; }
  .section-padding-sm { padding: 40px 0; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
  .trust-bar .row { gap: 12px; }
  .trust-item { justify-content: flex-start; }
  .dest-card { height: 250px; }
  .contact-info-card { padding: 28px; }
  .contact-form-card { padding: 28px; }
  .hero-form { padding: 24px; }
  .footer { padding: 40px 0 80px; }
  .offer-bar-text { font-size: 0.8rem; }
  .offer-bar-btn { font-size: 0.7rem; padding: 4px 12px; }
  .included-bar { padding: 20px 0; }
  .included-item { padding: 14px 8px; }
  .included-icon { width: 46px; height: 46px; font-size: 1.1rem; }
  .included-item h4 { font-size: 0.85rem; }
  .included-item p { font-size: 0.75rem; }
}

@media (max-width: 575px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-content { padding: 80px 0 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .section-title { font-size: 1.5rem; }
  .package-card .card-img { height: 180px; }
  .testimonial-card { padding: 24px; }
  .vfix-banner { padding: 30px 16px; }
  .vfix-banner h1 { font-size: 1.5rem; }
  .vfix-banner-sub { font-size: 0.95rem; }
  .vfix-banner-stats { font-size: 0.9rem; gap: 12px; }
}
/* coustom Css */
.package-card .card-img {
  height: auto;
  overflow: hidden;
  position: relative;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: auto;
  display: block;
}


.navbar-brand img {
    height: 60px !important;
    width: auto;
}

@media (max-width:568px) {
  .navbar-brand img {
    height: 40px !important;
    width: auto;
}
}
