/* ===================================================
   Abroad Job Portal — Premium Edition (Apex HR)
   =================================================== */

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

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-glow: rgba(37, 99, 235, 0.25);
  --accent: #6C63FF;
  --accent-gold: #F59E0B;
  
  --navy-dark: #0B132B;
  --navy: #3D4852;
  --navy-light: #4A5568;
  
  --text-main: #3D4852;
  --text-muted: #6B7280;
  --text-light: #94A3B8;
  
  --bg-body: #E0E5EC;
  --bg-card: #E0E5EC;
  --bg-soft: #E0E5EC;
  
  --line-color: transparent;
  --line-glass: transparent;
  
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  
  /* Neumorphism Shadow Tokens */
  --shadow-extruded: 9px 9px 16px rgba(163, 177, 198, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.6);
  --shadow-extruded-hover: 12px 12px 20px rgba(163, 177, 198, 0.7), -12px -12px 20px rgba(255, 255, 255, 0.7);
  --shadow-extruded-sm: 5px 5px 10px rgba(163, 177, 198, 0.6), -5px -5px 10px rgba(255, 255, 255, 0.6);
  --shadow-inset: inset 6px 6px 10px rgba(163, 177, 198, 0.6), inset -6px -6px 10px rgba(255, 255, 255, 0.6);
  --shadow-inset-deep: inset 10px 10px 20px rgba(163, 177, 198, 0.7), inset -10px -10px 20px rgba(255, 255, 255, 0.7);
  --shadow-inset-sm: inset 3px 3px 6px rgba(163, 177, 198, 0.6), inset -3px -3px 6px rgba(255, 255, 255, 0.6);

  --shadow-sm: var(--shadow-extruded-sm);
  --shadow-md: var(--shadow-extruded);
  --shadow-lg: var(--shadow-extruded-hover);
  --shadow-glow: 0 10px 30px -5px rgba(37, 99, 235, 0.3);
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography & Utility Components ---------- */
.gradient-text {
  background: linear-gradient(135deg, #2563EB 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--navy);
  border-color: var(--line-color);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  background: var(--navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; margin-top: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #E0E5EC;
  border-bottom: none;
  box-shadow: 5px 5px 15px rgba(163, 177, 198, 0.5), -5px -5px 15px rgba(255, 255, 255, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #1E40AF 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-subtext {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-light);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav a:hover { 
  color: var(--primary); 
}

.main-nav a:hover::after { 
  transform: scaleX(1); 
  transform-origin: left;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.bullet-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bullet-item i {
  color: var(--primary);
  font-size: 16px;
}

/* Hero Form Card (Apply Now Embedded Right at Start) */
.hero-right {
  position: relative;
}

.hero-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line-color);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.12);
  position: relative;
  z-index: 2;
}

.hero-form-header {
  margin-bottom: 24px;
}

.hero-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.hero-form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.hero-form-desc {
  font-size: 14px;
  color: var(--text-muted);
}


.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.5) 100%);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3.8;
  position: relative;
}

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

.hero-image-wrapper:hover .hero-image img {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-4px);
}

.float-card-1 {
  bottom: 24px;
  left: -20px;
}

.float-card-2 {
  top: 30px;
  right: -20px;
}

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.float-icon.gold {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
}

.float-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.float-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------- Jobs Section ---------- */
.jobs {
  padding: 85px 0;
  background: var(--bg-body);
}

.job-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.job-tab {
  padding: 10px 22px;
  border-radius: 30px;
  background: #FFFFFF;
  border: 1px solid var(--line-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.job-tab:hover, .job-tab.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

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

.job-card {
  background: #FFFFFF;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.job-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.job-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.job-country-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.job-category {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.job-feature-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--line-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line-color);
  gap: 12px;
}

/* Empty Jobs State (0 Active Jobs) */
.jobs-empty-box {
  background: #FFFFFF;
  border: 1px dashed var(--line-color);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.empty-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.empty-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}



/* ---------- About Section ---------- */
.about {
  padding: 80px 0;
  background: var(--bg-body);
}

.about-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--line-color);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 20px;
}

.about-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
}

.about-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-highlights {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line-color);
}

.highlight-chip i {
  color: var(--primary);
}

/* ---------- Destinations ---------- */
.destinations {
  padding: 90px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

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

.dest-card {
  background: #FFFFFF;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.dest-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -10px rgba(37, 99, 235, 0.18);
}

.dest-flag-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dest-flag {
  font-size: 42px;
  line-height: 1;
}

.dest-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dest-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.dest-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.dest-footer {
  margin-top: auto;
}

.dest-action {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.dest-card:hover .dest-action {
  gap: 10px;
}

/* ---------- Why Choose Us ---------- */
.why {
  padding: 100px 0;
  background: var(--bg-body);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-item {
  background: #FFFFFF;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(56, 189, 248, 0.1) 100%);
  color: var(--primary);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 24px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.why-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- CTA Section ---------- */
.cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ---------- Reference Style Dark Footer ---------- */
.site-footer {
  background: #090C15;
  color: #94A3B8;
  padding: 70px 0 0 0;
  border-top: 1px solid #1E293B;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-heading {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-offering-text {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: #94A3B8;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Business Info Table Styling (Matching Reference Photo) */
.biz-info-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.biz-info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  font-size: 13px;
}

.biz-info-key {
  color: #94A3B8;
  font-weight: 500;
}

.biz-info-val {
  color: #E2E8F0;
  font-weight: 600;
}

.biz-info-val a {
  color: #E2E8F0;
  transition: color 0.2s ease;
}

.biz-info-val a:hover {
  color: #38BDF8;
}

.biz-info-sub {
  display: block;
  font-size: 11px;
  color: #64748B;
  font-weight: 400;
  margin-top: 2px;
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  background: #060910;
}

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

.footer-copy-text {
  font-size: 13px;
  color: #64748B;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-icons a {
  color: #94A3B8;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-social-icons a:hover {
  color: #FFFFFF;
}

.back-to-top-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.back-to-top-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.admin-link {
  color: #64748B;
  transition: color 0.2s ease;
  font-size: 13px;
}

.admin-link:hover {
  color: #FFFFFF;
}

/* ---------- Modals ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 43, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--navy);
  color: #FFFFFF;
}

.modal-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 18px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  background: #E0E5EC;
  box-shadow: var(--shadow-inset);
  transition: all 0.25s ease;
}

.form-control:focus {
  box-shadow: var(--shadow-inset-deep);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.text-center { text-align: center; }

.success-icon-wrap {
  font-size: 56px;
  color: #10B981;
  margin-bottom: 16px;
}

/* Admin Dashboard Modal Styling */
.admin-modal-box {
  max-width: 820px;
}

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

.admin-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-soft);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--line-color);
}

.admin-table-container {
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid var(--line-color);
  border-radius: var(--radius-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}

.admin-table th {
  background: var(--bg-soft);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 14px;
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--line-color);
  z-index: 1;
}

.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-color);
}

/* ---------- Top Utility Bar for Verification & Quick Contact ---------- */
.top-utility-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-bar-item i {
  color: var(--accent);
}

.top-bar-item a {
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.top-bar-badge {
  background: rgba(37, 99, 235, 0.3);
  color: #60A5FA;
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Business Verification Section ---------- */
.verification-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.verification-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.verification-main-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.verification-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.verified-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-color);
}

.verified-title-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.verified-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verified-seal-badge {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.legal-details-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.legal-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-body);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-color);
}

.legal-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.legal-detail-content {
  display: flex;
  flex-direction: column;
}

.legal-detail-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.legal-detail-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.legal-detail-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact Grid Enhancements */
.contact-section {
  padding: 80px 0;
  background: #FFFFFF;
}

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

.contact-info-card {
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line-color);
  box-shadow: var(--shadow-sm);
}

.contact-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-channel-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-color);
  transition: all 0.2s ease;
}

.contact-channel-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-channel-info {
  display: flex;
  flex-direction: column;
}

.contact-channel-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-channel-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.contact-channel-val a {
  color: var(--navy);
  transition: color 0.2s ease;
}
.contact-channel-val a:hover {
  color: var(--primary);
}

/* Legal Modals (Privacy & Terms) */
.legal-modal-box {
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.legal-modal-header {
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-color);
}

.legal-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.legal-modal-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.legal-content-body {
  overflow-y: auto;
  padding-right: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--navy-light);
}

.legal-content-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 18px 0 8px 0;
}

.legal-content-body p {
  margin-bottom: 12px;
}

.legal-content-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content-body li {
  margin-bottom: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .verification-card-grid, .contact-grid { grid-template-columns: 1fr; }
  .top-bar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .top-bar-left, .top-bar-right { flex-wrap: wrap; gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 600px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 64px; }
  .about, .destinations, .why, .cta { padding: 60px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .trust-divider { display: none; }
  .btn { justify-content: center; }
  .floating-card { display: none; }
  .footer-links-wrapper { grid-template-columns: 1fr; }
  .footer-bottom-flex { flex-direction: column; text-align: center; }
}

/* ---------- Enhanced Image Styling ---------- */
.hero-image-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-strip-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-strip-text {
  display: flex;
  flex-direction: column;
}

.hero-strip-text strong {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}

.hero-strip-text span {
  font-size: 12px;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line-color);
  box-shadow: var(--shadow-md);
}

.about-image-card {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-extruded);
  border: 4px solid #FFFFFF;
}

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

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

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-img-badge i {
  font-size: 24px;
  color: #2563EB;
}

.about-img-badge strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}

.about-img-badge span {
  font-size: 12px;
  color: var(--text-muted);
}

.dest-card {
  padding: 0;
}

.dest-card-media {
  position: relative;
  height: 160px;
  width: 100%;
  overflow: hidden;
}

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

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, transparent 60%);
}

.dest-card-media .dest-flag {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 28px;
  z-index: 2;
}

.dest-card-media .dest-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.dest-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* ---------- Redesigned Modern Footer Styling ---------- */
.footer-cta-banner {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.2);
  color: #38BDF8;
  display: grid;
  place-items: center;
  font-size: 22px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  flex-shrink: 0;
}

.footer-cta-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-cta-desc {
  font-size: 13px;
  color: #94A3B8;
}

.footer-brand-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #38BDF8;
  background: rgba(56, 189, 248, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  width: fit-content;
}

.footer-nav-list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  font-size: 13px;
  transition: all 0.25s ease;
}

.footer-nav-list li a i {
  font-size: 10px;
  color: #38BDF8;
  transition: transform 0.25s ease;
}

.footer-nav-list li a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-dest-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-dest-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.footer-dest-chip:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #38BDF8;
  color: #FFFFFF;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .footer-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}