/* ==========================================================================
   Pakistan Tours Discovery - Premium Styling
   Color Palette: White base, Emerald Green (#047857), Warm Gold (#d97706), Deep Slate
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-alt: #f1f5f9;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --emerald-dark: #064e3b;
  --emerald-main: #047857;
  --emerald-light: #10b981;
  --emerald-soft: #ecfdf5;
  --gold-main: #d97706;
  --gold-light: #f59e0b;
  --gold-soft: #fffbeb;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(4, 120, 87, 0.15);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.font-heading {
  font-family: var(--font-heading);
}

.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background-color: var(--emerald-soft);
  color: var(--emerald-main);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--emerald-main);
  position: relative;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-main) 0%, var(--emerald-dark) 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px -5px rgba(4, 120, 87, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(4, 120, 87, 0.5);
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-main) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(217, 119, 6, 0.5);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--text-dark);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--emerald-dark);
  border: 2px solid var(--emerald-main);
}

.btn-outline-dark:hover {
  background: var(--emerald-main);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Header Top Bar & Navbar
   ========================================================================== */
.top-bar {
  background-color: var(--emerald-dark);
  color: #e2e8f0;
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item i {
  color: var(--gold-light);
}

.top-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Header Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

/* Head Office Card */
.head-office-card {
  background: var(--bg-alt);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.head-office-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.head-office-desc {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--emerald-dark);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-self: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--emerald-main);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================================
   Hero Video Section (Home Page)
   ========================================================================== */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #041f17;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.65) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.4) 0%, rgba(15, 23, 42, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: 100px 0;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 720px;
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: -60px;
}

.stats-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #ffffff;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--emerald-soft);
  color: var(--emerald-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   Destinations Section
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.dest-card:hover {
  transform: none;
}

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

.dest-card:hover .dest-img {
  transform: none;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(6, 78, 59, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #ffffff;
}

.dest-badge {
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--gold-main);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.dest-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.dest-tagline {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
}

.dest-link:hover {
  gap: 12px;
  color: #ffffff;
}

/* ==========================================================================
   Packages Grid & Cards
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(4, 120, 87, 0.3);
}

.pkg-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.pkg-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--emerald-dark);
  color: #ffffff;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.pkg-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--gold-main);
  font-weight: 700;
  margin-bottom: 10px;
}

.pkg-rating span {
  color: var(--text-muted);
  font-weight: 400;
}

.pkg-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.pkg-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.pkg-location i {
  color: var(--emerald-main);
}

.pkg-description {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pkg-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.pkg-price-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
}

.pkg-price-val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--emerald-dark);
}

.pkg-price-val del {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-left: 6px;
  font-weight: 400;
}

/* ==========================================================================
   Leadership / CEO & Team Showcase
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

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

.team-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--bg-alt);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

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

.team-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-main);
  color: #ffffff;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
}

.team-body {
  padding: 26px 20px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.team-designation {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--emerald-main);
  margin-bottom: 14px;

}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.partner-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald-main);
}

.partner-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--emerald-soft);
  color: var(--emerald-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 18px;
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.partner-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Page Headers (About, Packages, Contact)
   ========================================================================== */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, #0f172a 100%);
  color: #ffffff;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/middle.jpg') center/cover no-repeat;
  opacity: 0.4;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.breadcrumb a {
  color: #ffffff;
}

/* ==========================================================================
   Package Detail & Contact Styling
   ========================================================================== */
.detail-title {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin: 8px 0;
}

.detail-card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  border: 1px solid var(--border-color);
}

.contact-map-section {
  width: 100%;
  height: 420px;
  background: #e2e8f0;
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-box {
  background: var(--emerald-dark);
  color: #ffffff;
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-details {
  min-width: 0;
  flex: 1;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  word-break: break-word;
}

.contact-details p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-form-box {
  background: #ffffff;
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--emerald-main);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #071510;
  color: #cbd5e1;
  padding-top: 80px;
  border-top: 4px solid var(--emerald-main);
}

.footer-top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--emerald-main);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-main);
  border-radius: 2px;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.925rem;
}

.footer-contact-item i {
  color: var(--gold-light);
  margin-top: 4px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

.footer-bottom strong {
  color: #e2e8f0;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background-color: #128c7e;
  box-shadow: 0 15px 30px rgba(18, 140, 126, 0.6);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Helper Utilities */
.grid-2col-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

/* ==========================================================================
   Responsive Design (Ultra Mobile Responsive)
   ========================================================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-content {
    padding: 80px 0;
  }
  .stats-card-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 30px;
  }
  .destinations-grid, .packages-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: clip;
  }
  .top-bar {
    display: none;
  }
  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
  }
  .brand-logo {
    gap: 12px;
  }
  .brand-logo img {
    height: 48px;
  }
  .brand-title {
    font-size: 1.28rem;
    line-height: 1.15;
  }
  .brand-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.8px;
  }
  .mobile-menu-btn {
    display: block;
    font-size: 1.6rem;
    color: var(--text-dark);
    padding: 6px 10px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--border-color);
    display: none;
    z-index: 9999;
    margin: 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-link {
    width: 100%;
    padding: 8px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .mobile-menu-btn {
    display: block;
    font-size: 1.4rem;
    color: var(--text-dark);
    padding: 6px;
  }

  .hero-video-section {
    min-height: 75vh;
  }
  .hero-content {
    padding: 60px 0;
  }
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .hero-text {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .hero-stats {
    margin-top: 20px;
  }
  .stats-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .section-padding {
    padding: 40px 0 60px 0;
  }
  .whatsapp-float {
    bottom: 16px;
    right: 14px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    z-index: 999;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }

  .page-banner {
    padding: 50px 0;
  }
  .page-title {
    font-size: 1.85rem;
  }

  .destinations-grid, .packages-grid, .team-grid, .partners-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dest-card {
    height: 300px;
  }

  .pkg-footer {
    flex-direction: column;
    gap: 10px;
    align-items: stretch !important;
  }
  .pkg-footer .btn {
    width: 100%;
    text-align: center;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 16px;
  }
  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn {
    white-space: nowrap;
    padding: 6px 14px;
    font-size: 0.85rem;
  }
  .search-box {
    max-width: 100%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-info-box, .contact-form-box {
    padding: 24px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .contact-info-title {
    font-size: 1.5rem !important;
    margin-bottom: 16px !important;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    flex-shrink: 0;
  }

  .contact-details {
    min-width: 0;
    flex: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-details h4 {
    font-size: 1rem;
    word-break: break-word;
  }

  .contact-details p {
    font-size: 0.88rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-form-box h3 {
    font-size: 1.45rem !important;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-control {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-map-section {
    height: 260px;
  }

  .detail-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
  }
  .detail-card h3 {
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
  }
  .detail-card p {
    font-size: 0.95rem !important;
  }
  .detail-title {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
  }

  .head-office-card {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }
  .head-office-card i.fa-building {
    font-size: 2.2rem !important;
    margin-bottom: 12px !important;
  }
  .head-office-title {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  .head-office-desc {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
    word-break: break-word;
  }
  .head-office-btn {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 0.88rem !important;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .detail-header {
    padding: 20px;
  }
  .detail-img-banner {
    height: 250px;
    margin-bottom: 20px;
  }
  .detail-header-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
  .detail-header-flex > div, .detail-cta-wrap {
    width: 100%;
  }
  .detail-cta-wrap .btn {
    width: 100%;
  }
  .booking-card {
    position: static;
    padding: 24px 20px;
  }

  .grid-2col-mobile {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .brand-logo img {
    height: 45px;
  }
  .brand-title {
    font-size: 1.18rem;
  }
  .brand-subtitle {
    font-size: 0.64rem;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .page-title {
    font-size: 1.55rem;
  }
  .team-img-wrap {
    height: 280px;
  }
  .partner-card {
    padding: 20px 16px;
  }
}

/* ==========================================================================
   Gallery Section Styling (Clean & Fully Responsive)
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 3;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000000;
}

/* Lightbox Image Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-modal-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
  transition: color 0.2s;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.gallery-modal-close:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  padding-left: 3px;
  border: 2px solid #ffffff;
  pointer-events: none;
  transition: background 0.2s ease;
}

.video-wrap:hover .video-play-icon {
  background: var(--gold-main);
}

/* ==========================================================================
   Brochure Services Section Styling
   ========================================================================== */
.services-brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-main);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--emerald-dark), #047857);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.trekking-badges-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.badge-diamond-tag {
  background: #ffffff;
  border: 1px solid var(--emerald-main);
  color: var(--emerald-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.925rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.badge-diamond-tag i {
  color: var(--gold-main);
}

.badge-diamond-tag:hover {
  background: var(--emerald-dark);
  color: #ffffff;
}

@media (max-width: 768px) {
  .services-brochure-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card-item {
    padding: 20px 18px;
  }
}




