@import url('variables.css');

/* ==========================================
   00. BASE RESET & HELPER UTILITIES
   ========================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-white { background-color: var(--white); }

.subheading {
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

/* UI Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--sky); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, 0.4); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1EBE57; transform: translateY(-2px); }

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  margin-top: 10px;
}

/* ==========================================
   01. NAVBAR STYLING
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(8, 13, 23, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
  padding: 2px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(8, 13, 23, 0.1);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-img {
  transform: scale(1.05) rotate(3deg);
}

.brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #080D17;
  letter-spacing: -0.5px;
}

.brand-accent {
  color: #0757A5;
  font-size: 2rem;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #1F2937;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0757A5, #2D9BEF);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #0757A5;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #0757A5;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.nav-btn:hover {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* ==========================================
   02. HOME HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  height: 720px;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 13, 23, 0.82) 0%,
    rgba(8, 13, 23, 0.55) 60%,
    rgba(7, 87, 165, 0.4) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 720px;
  color: #FFFFFF;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #E5E7EB;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-actions .btn-primary {
  background-color: #0757A5;
  border: 2px solid #0757A5;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(7, 87, 165, 0.35);
}

.hero-actions .btn-primary:hover {
  background-color: #2D9BEF;
  border-color: #2D9BEF;
  transform: translateY(-2px);
}

.hero-actions .btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  padding: 14px 32px;
  font-size: 1rem;
  backdrop-filter: blur(4px);
}

.hero-actions .btn-outline:hover {
  background-color: #FFFFFF;
  color: #080D17;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================
   03. INNER PAGE HERO SECTION & VARIANTS
   ========================================== */
.inner-hero {
  position: relative;
  min-height: 560px;
  background: url('../images/destinations/destination-hero-bg.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 20px 60px;
  margin-top: 70px;
  overflow: hidden;
}
/* ==========================================
   TRAVEL SERVICES HERO (LIGHT & CLEAR IMAGE)
   ========================================== */
.travel-services-traditional-hero {
  position: relative;
  min-height: 560px;
  background: url('../images/travelservices-hero-bg.jpeg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 70px;
  margin-top: 70px;
  overflow: hidden;
}

/* Lightened Overlay: Lets image details (camera, passport, watch) pop through cleanly */
.travel-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(15, 23, 42, 0.45) 0%, 
    rgba(15, 23, 42, 0.35) 50%, 
    rgba(15, 23, 42, 0.55) 100%
  );
  z-index: 1;
}

.travel-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Glass Badge with Darker Backdrop for Readability */
.travel-services-traditional-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF !important;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.travel-services-traditional-hero .hero-badge i {
  color: #00E5FF;
}

/* Heading with Strong Dark Drop Shadow for Crisp Readability */
.travel-hero-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF !important;
  margin-bottom: 16px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.accent-cyan {
  color: #00E5FF !important;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.6), 0 3px 12px rgba(0, 0, 0, 0.9);
}

/* Subtitle */
.travel-hero-subtitle,
.travel-hero-container .hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #FFFFFF !important;
  max-width: 740px;
  margin: 0 auto 28px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

/* Solid Glassmorphic Service Tags */
.travel-service-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.travel-service-tags span {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.travel-service-tags span:hover {
  border-color: #00E5FF;
  transform: translateY(-2px);
}

.travel-service-tags span i {
  color: #00E5FF;
  margin-right: 8px;
}

/* Action Buttons */
.travel-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.travel-hero-actions .btn-primary {
  background-color: #0757A5;
  border: 2px solid #0757A5;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(7, 87, 165, 0.35);
}

.travel-hero-actions .btn-primary:hover {
  background-color: #2D9BEF;
  border-color: #2D9BEF;
  transform: translateY(-2px);
}


/* ==========================================
   MINIMAL FULL-WIDTH ABOUT US HERO
   ========================================== */
.about-minimal-hero {
  position: relative;
  min-height: 520px;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80') center right / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  margin-top: 70px;
  overflow: hidden;
}

/* Smooth gradient overlay: Dark on left for text readability, fading completely on right */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(8, 18, 32, 0.92) 0%, 
    rgba(8, 18, 32, 0.75) 45%, 
    rgba(8, 18, 32, 0.15) 100%
  );
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-hero-content {
  max-width: 620px;
  text-align: left;
}

/* Badge */
.about-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF !important;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.about-hero-content .hero-badge i {
  color: #00E5FF;
}

/* Heading */
.about-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF !important;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.accent-cyan {
  color: #00E5FF !important;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* Subtitle */
.about-hero-content .hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #E2E8F0 !important;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Inline Value Chips (No Boxes) */
.about-inline-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.about-inline-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.about-inline-features span i {
  color: #00E5FF;
}


/* ==========================================
   ELEGANT 2-COLUMN SPLIT VISA HERO
   ========================================== */
.visa-split-hero {
  background: #F8FAFC;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
/* ==========================================
   ELEGANT 2-COLUMN SPLIT DESTINATIONS HERO
   ========================================== */
.destinations-split-hero {
  background: #F8FAFC;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}

.dest-split-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.dest-hero-content {
  text-align: left;
}

.dest-hero-content .hero-badge {
  background: rgba(7, 87, 165, 0.08);
  border: 1px solid rgba(7, 87, 165, 0.2);
  color: #0757A5 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.dest-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0F172A !important;
  line-height: 1.2;
  margin-bottom: 18px;
}

.dest-hero-content .hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #475569 !important;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Search Box Styling for Light Background */
.dest-hero-content .hero-search-box {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  padding: 6px 8px 6px 20px;
  border-radius: 50px;
  max-width: 100%;
  margin: 0 0 16px 0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid #E2E8F0;
}

.dest-hero-content .hero-search-box .search-icon {
  color: #64748B;
  font-size: 1.1rem;
  margin-right: 12px;
}

.dest-hero-content .hero-search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  background: transparent;
}

.dest-hero-content .hero-search-box .btn-search {
  background: #0757A5;
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dest-hero-content .hero-search-box .btn-search:hover {
  background: #2D9BEF;
  transform: translateY(-1px);
}

/* Quick Tags */
.dest-hero-content .hero-quick-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #64748B;
}

.dest-hero-content .hero-quick-tags button {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #334155;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dest-hero-content .hero-quick-tags button:hover {
  background: #0757A5;
  color: #FFFFFF;
  border-color: #0757A5;
  font-weight: 600;
}

/* Right Column Image & Framing */
.dest-hero-image-wrapper {
  position: relative;
}



.visa-split-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* Left Content */
.visa-hero-content {
  text-align: left;
}

.visa-hero-content .hero-badge {
  background: rgba(7, 87, 165, 0.08);
  border: 1px solid rgba(7, 87, 165, 0.2);
  color: #0757A5 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.visa-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0F172A !important;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: none !important;
}

.accent-blue {
  color: #0757A5 !important;
}

.visa-hero-content .hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #475569 !important;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Feature Check Pills */
.visa-hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E293B;
}

.feature-pill i {
  color: #00E5FF;
  font-size: 1.1rem;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Right Column Image & Framing */
.visa-hero-image-wrapper {
  position: relative;
}

.image-frame {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border: 4px solid #FFFFFF;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Glass Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-top-right {
  top: -20px;
  right: -20px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
}

.floating-badge i {
  font-size: 1.5rem;
  color: #0757A5;
}

.floating-badge i.icon-green {
  color: #25D366;
}

.floating-badge strong {
  display: block;
  font-size: 0.95rem;
  color: #0F172A;
  font-family: 'Poppins', sans-serif;
}

.floating-badge span {
  font-size: 0.75rem;
  color: #64748B;
}

.inner-hero-container {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

/* Glassmorphism Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF !important;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #00E5FF;
}

/* Headings */
.inner-hero-container h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF !important;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.accent-gold,
.gradient-text {
  color: #00E5FF !important;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.brand-glow {
  color: #00E5FF;
}

/* Subtitle */
.hero-subtitle,
.inner-hero-container p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #E2E8F0 !important;
  max-width: 720px;
  margin: 0 auto 28px;
}

/* Search Box */
.hero-search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 8px 6px 20px;
  border-radius: 50px;
  max-width: 680px;
  margin: 0 auto 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-search-box .search-icon {
  color: #64748B;
  font-size: 1.2rem;
  margin-right: 12px;
}

.hero-search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  background: transparent;
}

.hero-search-box .btn-search {
  background: #0052CC;
  color: #FFFFFF;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-search-box .btn-search:hover {
  background: #003D99;
  transform: translateY(-1px);
}

/* Quick Filter Chips */
.hero-quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
  font-size: 0.85rem;
  color: #94A3B8;
}

.hero-quick-tags button {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-quick-tags button:hover {
  background: #00E5FF;
  color: #0F172A;
  border-color: #00E5FF;
  font-weight: 600;
}

/* Glassmorphic Stats Container */
.hero-stats-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 16px 36px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.stat-box i {
  font-size: 1.7rem;
  color: #00E5FF;
}

.stat-box strong {
  display: block;
  font-size: 1.15rem;
  color: #FFFFFF;
  line-height: 1.1;
  font-weight: 700;
}

.stat-box span {
  font-size: 0.78rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   04. TRUST & FEATURES GRID
   ========================================== */
.trust-highlights {
  background: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid #E5E7EB;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(7, 87, 165, 0.08);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-info h3 { font-size: 0.98rem; font-weight: 600; color: var(--navy); }
.trust-info p { font-size: 0.85rem; color: var(--text-muted); }

/* Why Fly2World / About Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
}

.why-content h2 { font-size: 2.3rem; margin-bottom: 16px; color: var(--navy); }

.benefits-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item { display: flex; gap: 16px; }
.benefit-item i { color: var(--blue); font-size: 1.2rem; margin-top: 2px; }
.benefit-item h4 { font-size: 1.05rem; color: var(--navy); }
.benefit-item p { font-size: 0.9rem; color: var(--text-muted); }
.why-desc-muted { margin-top: 12px; color: var(--text-muted); }

/* Core Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card-padding { padding: 40px 24px; }
.value-icon-margin { margin: 0 auto 20px; }

/* ==========================================
   05. SERVICES SECTION
   ========================================== */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-light);
  padding: 36px 28px;
  border-radius: var(--radius-card);
  position: relative;
  transition: var(--transition);
  border: 1px solid #E5E7EB;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky);
}

.service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(8, 13, 23, 0.12);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

/* Travel Services Detailed List */
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.service-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-detail-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.service-features i {
  color: var(--blue);
  font-size: 0.9rem;
}

/* ==========================================
   06. DESTINATIONS & FILTERS
   ========================================== */
.filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--bg-light);
  border: 1px solid #E5E7EB;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 48px 0;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-sm);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.destination-card:hover img { transform: scale(1.05); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(8,13,23,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.region-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 4px;
}

/* Custom Unlisted Country Grid Card */
.custom-card-inner {
  padding: 30px;
  background-color: #F3F4F6;
  border-radius: var(--radius-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px dashed var(--blue);
  transition: var(--transition);
}

.custom-card-inner:hover {
  background-color: var(--white);
  border-color: var(--sky);
  box-shadow: var(--shadow-hover);
}

.custom-card-icon {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.custom-card-inner h3 { color: var(--navy); margin-bottom: 8px; }
.custom-card-inner p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }

/* ==========================================
   07. VISA ASSISTANCE & BANNERS
   ========================================== */
.visa-section { background: var(--navy); }
.visa-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0; }

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--radius-card);
  text-align: left;
}
.card-dark h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.card-dark p { color: #9CA3AF; font-size: 0.9rem; }

/* Global Visa Banner */
.global-banner-section {
  background-color: var(--navy);
  color: var(--white);
  margin-top: 40px;
}

.global-banner-container { max-width: 800px; }

.global-banner-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--sky);
}

.global-banner-container h2 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.global-banner-container p { color: #9CA3AF; font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.global-banner-btn { padding: 14px 28px; font-size: 1rem; }

/* Split Banners */
.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.banner-card {
  padding: 50px;
  border-radius: var(--radius-card);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.banner-custom {
  background: linear-gradient(rgba(8, 13, 23, 0.75), rgba(8, 13, 23, 0.75)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=800&auto=format&fit=crop') center/cover;
}

.banner-umrah {
  background: linear-gradient(rgba(8, 13, 23, 0.75), rgba(8, 13, 23, 0.75)), url('https://images.unsplash.com/photo-1565552070098-0073a8ad65a7?q=80&w=800&auto=format&fit=crop') center/cover;
}

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.step-card {
  background: var(--white);
  padding: 32px 20px;
  border-radius: var(--radius-card);
  border: 1px solid #E5E7EB;
  position: relative;
}
.step-num { font-size: 2rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; }

/* Accordion FAQ */
.accordion { max-width: 800px; margin: 40px auto 0; }
.accordion-item {
  background: var(--white);
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #E5E7EB;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-body { padding: 0 24px 20px; display: none; color: var(--text-muted); font-size: 0.95rem; }
.accordion-item.active .accordion-body { display: block; }

/* ==========================================
   08. CONTACT & FORM STYLING
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-card);
  border: 1px solid #E5E7EB;
  box-shadow: var(--shadow-sm);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.method-icon {
  width: 48px;
  height: 48px;
  background: rgba(7, 87, 165, 0.08);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.method-item a { color: var(--blue); text-decoration: none; font-weight: 500; font-size: 0.95rem; }

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-card);
  border: 1px solid #E5E7EB;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 6px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 87, 165, 0.1);
}

/* Custom Unlisted Country Dynamic Input Container */
#customCountryWrap {
  animation: fadeInDown 0.25s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   09. DESTINATION QUICK-VIEW MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-card, 16px);
  width: 100%;
  max-width: 580px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close-btn:hover { background: rgba(0, 0, 0, 0.8); }

.modal-header-banner {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.modal-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.85) 100%);
}

.modal-title-wrap {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.modal-region-badge {
  display: inline-block;
  background-color: var(--blue, #0284c7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-title-wrap h2 { font-size: 1.75rem; margin: 0; color: #ffffff; }
.modal-body { padding: 24px; }

.modal-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  background-color: #f8fafc;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
}

.stat-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted, #64748b);
  margin-bottom: 4px;
}

.stat-item strong {
  font-size: 0.95rem;
  color: var(--navy, #0f172a);
}

.modal-requirements-title {
  font-size: 1rem;
  color: var(--navy, #0f172a);
  margin-bottom: 10px;
}

.modal-requirements-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.modal-requirements-list li {
  font-size: 0.88rem;
  color: #334155;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-requirements-list li i { color: var(--blue, #0284c7); }

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 12px;
}

/* ==========================================
   10. FLOATING WIDGETS & FOOTER STYLING
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

.footer {
  background-color: #04070D;
  color: #9CA3AF;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--blue);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.logo-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--blue);
  transform: translateY(-3px);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--sky);
  padding-left: 4px;
}

.contact-list {
  list-style: none;
  margin-bottom: 20px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.contact-list i { color: var(--blue); width: 16px; }

.contact-list a {
  color: #9CA3AF;
  text-decoration: none;
  transition: var(--transition);
}

.contact-list a:hover { color: var(--white); }
.footer-btn { width: 100%; padding: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom p { margin-bottom: 8px; }

.disclaimer {
  max-width: 900px;
  margin: 12px auto 0;
  color: #6B7280;
  font-size: 0.8rem;
  line-height: 1.5;
}

