/* ============================================
   AJMALI OVERSEAS SERVICES — DESIGN SYSTEM
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --primary: #0F4C75;
  --primary-light: #1B6CA8;
  --primary-dark: #0A3A5C;
  --accent: #D4A843;
  --accent-dark: #B8922E;
  --accent-light: #E8C76A;
  --bg-dark: #0A1628;
  --bg-darker: #060F1D;
  --bg-light: #F5F7FA;
  --bg-white: #FFFFFF;
  --text-primary: #1A1A2E;
  --text-secondary: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;
  --border: #E5E7EB;
  --border-light: rgba(255,255,255,0.1);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #0F4C75 50%, #1B6CA8 100%);
  --gradient-gold: linear-gradient(135deg, #D4A843 0%, #E8C76A 50%, #D4A843 100%);
  --gradient-dark: linear-gradient(180deg, #0A1628 0%, #0F2035 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(15,76,117,0.5) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(212,168,67,0.3);
  --shadow-primary: 0 4px 20px rgba(15,76,117,0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

input, textarea, select, button {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  outline: none;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

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

.section-dark {
  background: var(--gradient-dark);
  color: var(--text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: rgba(255,255,255,0.75);
}

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header .label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  position: relative;
  padding: 0 var(--space-lg);
}

.section-header .label::before,
.section-header .label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.section-header .label::before { left: -10px; }
.section-header .label::after { right: -10px; }

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark .section-header .label {
  color: var(--accent-light);
}

.section-dark .section-header .label::before,
.section-dark .section-header .label::after {
  background: var(--accent-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.45);
  background: var(--accent-light);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
}

.btn i {
  font-size: 0.9em;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

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

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15,76,117,0.1), rgba(15,76,117,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.6rem;
  color: var(--primary);
  transition: all var(--transition-base);
}

.card:hover .card-icon {
  background: var(--primary);
  color: var(--text-white);
  transform: scale(1.08);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.card-link:hover {
  color: var(--accent);
  gap: var(--space-sm);
}

/* Glass Card */
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  padding: var(--space-sm) 0;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(212, 168, 67, 0.4);
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-logo img {
  height: 42px;
  width: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta {
  color: var(--bg-dark) !important;
  background: var(--gradient-gold);
  border-radius: var(--radius-full) !important;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.nav-auth-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(8px);
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem !important;
  padding: 0.45rem 1.1rem !important;
}

.nav-auth-btn:hover {
  background: var(--gradient-gold) !important;
  color: var(--bg-dark) !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-gold) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(15,76,117,0.7) 50%,
    rgba(27,108,168,0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 100px;
}

.hero-content .hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-content h1 {
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  font-weight: 800;
}

.hero-content h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: var(--space-2xl);
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Page hero (smaller, for inner pages) */
.hero-page {
  min-height: 50vh;
  padding-top: 80px;
}

.hero-page .hero-content {
  padding-top: 60px;
}

/* Floating hero elements */
.hero-float {
  position: absolute;
  z-index: 1;
  opacity: 0.12;
  font-size: 4rem;
  color: var(--accent);
  animation: float 6s ease-in-out infinite;
}

.hero-float:nth-child(1) { top: 20%; right: 10%; animation-delay: 0s; }
.hero-float:nth-child(2) { top: 60%; right: 20%; animation-delay: 2s; font-size: 3rem; }
.hero-float:nth-child(3) { bottom: 20%; right: 35%; animation-delay: 4s; font-size: 2.5rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--gradient-hero);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 var(--space-xl);
}

.testimonial-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-content::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

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

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 2px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* ---------- Destination Cards ---------- */
.destinations-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding: var(--space-md) 0 var(--space-xl);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.destinations-scroll::-webkit-scrollbar {
  display: none;
}

.destination-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 320px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  background: var(--bg-dark);
}

.destination-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.destination-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-card:hover .destination-card-bg {
  transform: scale(1.1);
}

.destination-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 40%;
  padding: 24px 16px 70px;
  z-index: 0;
  transition: transform var(--transition-slow);
}

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

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.05) 0%, rgba(10,22,40,0.15) 40%, rgba(10,22,40,0.85) 85%, rgba(10,22,40,0.95) 100%);
  z-index: 1;
}

.destination-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 2;
}

.destination-card-content h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.destination-card-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 0;
}

.destination-flag {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

/* ---------- Job Cards ---------- */
.job-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.job-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.job-card-company {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.job-card-flag {
  font-size: 1.8rem;
}

.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.job-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(15,76,117,0.08);
  color: var(--primary);
}

.job-tag.salary {
  background: rgba(16,185,129,0.1);
  color: var(--success);
}

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

.job-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.filter-select {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition-fast);
  min-width: 180px;
}

.filter-select:focus {
  border-color: var(--primary);
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  border: 4px solid var(--accent);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-base);
}

.process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(212,168,67,0.4);
}

.process-step h4 {
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Forms ---------- */
.form-container {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-group label .required {
  color: var(--error);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,76,117,0.1);
}

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

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

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8.825L0.575 3.4l.85-.85L6 7.125 10.575 2.55l.85.85L6 8.825z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

.form-control.error {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(239,68,68,0.1);
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 4px;
  display: none;
}

.form-control.error + .form-error {
  display: block;
}

.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.file-upload:hover {
  border-color: var(--primary);
  background: rgba(15,76,117,0.03);
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.file-upload p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.file-upload .file-name {
  font-weight: 600;
  color: var(--primary);
  margin-top: var(--space-sm);
}

/* ---------- Success Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

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

.modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  max-width: 460px;
  width: 100%;
  animation: modalSlideUp 0.4s ease;
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 2.2rem;
  color: var(--success);
}

.modal-content h3 {
  margin-bottom: var(--space-sm);
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gradient-hero);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A843' fill-opacity='0.05'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}

.cta-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-darker);
  padding: var(--space-4xl) 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .footer-logo {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(212, 168, 67, 0.4);
  margin-bottom: var(--space-lg);
}

.footer-about p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.footer-col ul li a i {
  font-size: 0.75rem;
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 4px;
  min-width: 16px;
}

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--accent);
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* ---------- Package Table ---------- */
.package-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.package-table thead th {
  background: var(--gradient-hero);
  color: var(--text-white);
  padding: var(--space-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
}

.package-table thead th:first-child {
  width: 30%;
}

.package-table tbody td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.package-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.package-table tbody tr:hover {
  background: rgba(15,76,117,0.04);
}

.package-table .check {
  color: var(--success);
  font-weight: 700;
}

.package-table .highlight-col {
  background: rgba(212,168,67,0.08);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.package-table thead .highlight-col {
  background: var(--accent);
  color: var(--bg-dark);
}

/* ---------- Tabs ---------- */
.tabs-container {
  margin-bottom: var(--space-2xl);
}

.tabs-nav {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

/* Scroll-reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Gold shimmer effect */
.gold-shimmer {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ---------- Visa Card ---------- */
.visa-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

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

.visa-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.visa-card-body {
  padding: var(--space-xl);
}

.visa-card-body h4 {
  margin-bottom: var(--space-sm);
}

.visa-card-body .visa-types {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.visa-type-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(15,76,117,0.08);
  color: var(--primary);
  font-weight: 500;
}

.visa-card-body .processing-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

/* ---------- Values Grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.value-item {
  text-align: center;
  padding: var(--space-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212,168,67,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.8rem;
  color: var(--accent);
  transition: all var(--transition-base);
}

.value-item:hover .value-icon {
  background: var(--accent);
  color: var(--bg-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.value-item h4 {
  margin-bottom: var(--space-sm);
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Contact Page ---------- */
.contact-info-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(15,76,117,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-info-text a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info-text a:hover {
  color: var(--accent);
}

/* Map container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

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

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

/* ============================================
   FOUNDER & MANAGING DIRECTOR MESSAGE SECTION
   ============================================ */
.md-message {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
  align-items: start;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: 0 10px 40px rgba(15,76,117,0.08);
  border: 1px solid rgba(212,168,67,0.25);
  position: relative;
  overflow: hidden;
}

.md-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-accent);
}

.md-photo-wrapper {
  position: relative;
  text-align: center;
  position: sticky;
  top: 100px;
}

.md-photo {
  width: 100%;
  max-width: 270px;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,76,117,0.15);
  border: 3px solid var(--accent);
  margin: 0 auto;
  position: relative;
  background: var(--gradient-hero);
}

.md-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.md-photo:hover img {
  transform: scale(1.03);
}

.md-photo-badge {
  margin-top: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15,76,117,0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(15,76,117,0.15);
}

.md-photo-badge i {
  color: var(--accent);
}

.md-message-content {
  position: relative;
}

.md-message-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
}

.md-message-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.md-message-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.md-message-body p {
  margin-bottom: var(--space-md);
}

.md-message-body p:last-child {
  margin-bottom: 0;
}

.md-commitments-box {
  background: rgba(15,76,117,0.03);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(15,76,117,0.1);
  border-left: 3px solid var(--accent);
}

.md-commitments-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.md-commitments-label i {
  color: var(--accent);
}

.md-commitments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.md-commitment-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  color: var(--text-primary);
  border: 1px solid rgba(15,76,117,0.15);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.md-commitment-pill:hover {
  border-color: var(--accent);
  background: rgba(212,168,67,0.08);
  transform: translateY(-1px);
}

.md-commitment-pill i {
  color: var(--accent);
  font-size: 0.8rem;
}

.md-signature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.md-sign-info .md-name {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.md-sign-info .md-role {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.md-sign-info .md-company {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 2px;
}

.md-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.08);
  color: var(--success);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================
   COMPACT LEGAL ADVISOR CARD (Subtle Secondary Profile)
   ============================================ */
.legal-advisor-compact {
  max-width: 860px;
  margin: var(--space-xl) auto 0;
  background: var(--bg-white);
  border: 1px solid rgba(15, 76, 117, 0.12);
  border-left: 4px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: 0 4px 18px rgba(15, 76, 117, 0.04);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legal-advisor-compact:hover {
  box-shadow: 0 6px 24px rgba(15, 76, 117, 0.08);
  transform: translateY(-2px);
}

.legal-compact-photo-wrapper {
  text-align: center;
}

.legal-compact-photo {
  width: 115px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(15, 76, 117, 0.15);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  background: #f0f4f8;
}

.legal-compact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.legal-compact-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(15, 76, 117, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.legal-compact-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-compact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid rgba(15, 76, 117, 0.08);
  padding-bottom: 6px;
}

.legal-compact-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.legal-compact-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  margin-left: 6px;
}

.legal-compact-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(50, 130, 184, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.legal-compact-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.legal-compact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.legal-compact-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #f6f8fb;
  border: 1px solid rgba(15, 76, 117, 0.08);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
}

.legal-compact-pill i {
  color: var(--primary-light);
  font-size: 0.68rem;
}

@media (max-width: 640px) {
  .legal-advisor-compact {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-md);
  }
  .legal-compact-header {
    justify-content: center;
  }
  .legal-compact-pills {
    justify-content: center;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  .container, .container-wide {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  /* Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--space-xl) var(--space-xl);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    gap: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: var(--space-md) var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: var(--space-md);
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  /* Grids */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .process-steps::before {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-page {
    min-height: 45vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-float {
    display: none;
  }

  /* Forms */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: var(--space-xl);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  /* Filter bar */
  .filter-bar {
    flex-direction: column;
  }

  .filter-select {
    width: 100%;
  }

  /* Values */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  /* MD Message */
  .md-message {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-xl);
    gap: var(--space-xl);
  }

  .md-photo-wrapper {
    margin-bottom: var(--space-md);
  }

  .md-commitments-list {
    justify-content: center;
  }

  .md-signature-block {
    justify-content: center;
    text-align: center;
  }

  /* CTA */
  .cta-contacts {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  /* Tabs */
  .tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Package table */
  .package-table {
    display: block;
    overflow-x: auto;
  }
}

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

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

  .destination-card {
    flex: 0 0 240px;
    height: 260px;
  }
}

/* ---------- Utility classes ---------- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }

/* Verified badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(16,185,129,0.1);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16,185,129,0.2);
}

.verified-badge i {
  font-size: 0.9rem;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  color: white;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 998;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: none;
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   AUTH PAGES (Login / Register)
   ============================================ */

.auth-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.auth-logo {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(15, 76, 117, 0.35);
  border: 2px solid rgba(212, 168, 67, 0.5);
  margin: 0 auto var(--space-lg);
  display: block;
}

.auth-header h2 {
  margin-bottom: var(--space-xs);
}

.auth-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.auth-footer {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.auth-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

.auth-footer a:hover {
  color: var(--accent);
}

.auth-alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: rgba(239,68,68,0.08);
  color: var(--error);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(239,68,68,0.15);
}

.auth-alert-success {
  background: rgba(16,185,129,0.08);
  color: var(--success);
  border-color: rgba(16,185,129,0.15);
}

.input-icon-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.92rem;
  pointer-events: none;
}

.form-control-icon {
  padding-left: 44px !important;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  font-size: 0.92rem;
}

.password-toggle:hover {
  color: var(--primary);
}

/* ============================================
   USER BANNER
   ============================================ */

.user-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
}

.user-banner-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.user-banner-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.user-banner-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.user-banner-email {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   DASHBOARD
   ============================================ */

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-pending {
  background: rgba(245,158,11,0.12);
  color: #D97706;
}

.status-reviewed {
  background: rgba(59,130,246,0.12);
  color: #2563EB;
}

.status-shortlisted {
  background: rgba(16,185,129,0.12);
  color: #059669;
}

.status-rejected {
  background: rgba(239,68,68,0.12);
  color: #DC2626;
}

/* Submission Card (User View) */
.submission-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: var(--space-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.submission-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.submission-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.submission-card-body {
  padding: var(--space-lg) var(--space-xl);
}

.submission-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--border);
  background: var(--bg-light);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */

.admin-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.admin-stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.admin-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.stat-total::before { background: var(--primary); }
.stat-pending::before { background: #D97706; }
.stat-reviewed::before { background: #2563EB; }
.stat-shortlisted::before { background: #059669; }
.stat-rejected::before { background: #DC2626; }

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

.admin-stat-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.stat-total .admin-stat-icon { color: var(--primary); }
.stat-pending .admin-stat-icon { color: #D97706; }
.stat-reviewed .admin-stat-icon { color: #2563EB; }
.stat-shortlisted .admin-stat-icon { color: #059669; }
.stat-rejected .admin-stat-icon { color: #DC2626; }

.admin-stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.admin-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Admin Filter Bar */
.admin-filter-bar {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.admin-search-box {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.admin-search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.admin-search-box input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  background: var(--bg-light);
}

.admin-search-box input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(15,76,117,0.1);
}

/* Admin Table */
.admin-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table thead {
  background: var(--bg-dark);
  color: var(--text-white);
}

.admin-table thead th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.admin-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast);
}

.admin-table tbody tr:hover {
  background: rgba(15,76,117,0.03);
}

.admin-table tbody td {
  padding: var(--space-md) var(--space-lg);
  vertical-align: middle;
}

.admin-table tbody tr:last-child {
  border-bottom: none;
}

/* Container wide for dashboard */
.container-wide {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE: Auth / Dashboard
   ============================================ */

@media (max-width: 1024px) {
  .admin-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .auth-card {
    padding: var(--space-xl);
    margin: 0 var(--space-md);
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-filter-bar {
    flex-direction: column;
  }

  .admin-search-box {
    min-width: 100%;
  }

  .user-banner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .user-banner-info {
    flex-direction: column;
  }

  .dashboard-header {
    flex-direction: column;
    text-align: center;
  }

  .submission-card-header {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

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

/* ============================================
   ADMIN CMS — TABS & NAVIGATION
   ============================================ */
.admin-nav-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  padding-bottom: 2px;
}

.admin-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.admin-tab-btn:hover {
  color: var(--primary);
  background: rgba(15,76,117,0.04);
}

.admin-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(15,76,117,0.06);
}

.admin-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.admin-tab-btn.active .admin-tab-badge {
  background: var(--primary);
  color: #ffffff;
}

/* Top bar with Add Button */
.admin-section-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.admin-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0;
}

/* CMS Modals */
.cms-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.cms-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cms-modal-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  transform: translateY(20px) scale(0.98);
  transition: all var(--transition-normal);
}

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

.cms-modal-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.cms-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cms-modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.cms-modal-close:hover {
  color: var(--danger);
  background: rgba(220, 38, 38, 0.1);
}

.cms-modal-body {
  padding: var(--space-xl);
}

.cms-modal-footer {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
  background: var(--bg-light);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.cms-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.cms-form-full {
  grid-column: 1 / -1;
}

/* Status Badges */
.badge-active {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-inactive {
  background: rgba(156, 163, 175, 0.15);
  color: #4b5563;
  border: 1px solid rgba(156, 163, 175, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Action Icon Buttons */
.action-btn-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  transform: translateY(-1px);
}

.btn-icon-edit:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-icon-toggle:hover {
  background: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
}

.btn-icon-delete:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
}

/* Toggle Switch */
.cms-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.cms-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cms-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

.cms-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cms-switch input:checked + .cms-slider {
  background-color: #10b981;
}

.cms-switch input:checked + .cms-slider:before {
  transform: translateX(20px);
}

/* ============================================
   FRONTEND: DYNAMIC JOBS SECTION
   ============================================ */
.jobs-filter-container {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  background: var(--bg-white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.jobs-search-input {
  flex: 1;
  min-width: 240px;
  position: relative;
}

.jobs-search-input i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.jobs-search-input input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--bg-light);
  transition: all var(--transition-fast);
}

.jobs-search-input input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(15,76,117,0.1);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--space-xl);
}

.job-card-modern {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.job-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #3282b8);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.job-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,76,117,0.3);
}

.job-card-modern:hover::before {
  opacity: 1;
}

.job-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
}

.job-country-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15,76,117,0.08);
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.job-vacancies-badge {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.job-title-h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.job-trade-tag {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-salary-banner {
  background: linear-gradient(135deg, rgba(15,76,117,0.06), rgba(50,130,184,0.06));
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px dashed rgba(15,76,117,0.2);
}

.job-salary-val {
  font-weight: 700;
  color: #0f766e;
  font-size: 0.95rem;
}

.job-exp-val {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.job-desc-p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.job-req-list {
  background: var(--bg-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.4;
}

.job-apply-action {
  margin-top: auto;
}

/* ============================================
   FRONTEND: DYNAMIC TOUR PACKAGES
   ============================================ */
.pkg-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.pkg-card-modern {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.pkg-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15,76,117,0.3);
}

.pkg-card-banner {
  background: linear-gradient(135deg, #0f4c75, #1b262c);
  color: #ffffff;
  padding: var(--space-lg) var(--space-xl);
  position: relative;
}

.pkg-card-category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(255,255,255,0.18);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.pkg-card-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.3;
}

.pkg-card-dest {
  font-size: 0.88rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.pkg-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.pkg-duration-badge {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.pkg-price-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.pkg-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  flex-grow: 1;
}

.pkg-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.pkg-highlights-list li i {
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Empty State Box */
.cms-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border);
  color: var(--text-muted);
}

.cms-empty-state i {
  font-size: 3rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: var(--space-md);
}

.cms-empty-state h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.cms-empty-state p {
  font-size: 0.9rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   VISA DESTINATIONS & FLAG STYLES
   ============================================ */
.visa-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.visa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15,76,117,0.3);
}

.visa-card-flag-header {
  height: 160px;
  background: linear-gradient(135deg, #071324 0%, #0f2744 50%, #1a3c61 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.visa-card-flag-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, rgba(7, 19, 36, 0.6) 100%);
  pointer-events: none;
}

.visa-flag-wrapper {
  width: 150px;
  height: 95px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45), 0 3px 10px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1523;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 1;
}

.visa-card:hover .visa-flag-wrapper {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.visa-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.visa-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.visa-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.visa-types {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.visa-type-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(15,76,117,0.08);
  color: var(--primary);
}

.processing-time {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 6px;
}

.processing-time i {
  color: var(--accent);
}

/* ============================================
   LIFECYCLE STATUS BADGES & CERTIFICATES
   ============================================ */
.status-badge.status-enrolled {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-badge.status-in_training {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-badge.status-completed {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.status-cancelled {
  background: rgba(156, 163, 175, 0.15);
  color: #4b5563;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

/* Travel Enquiries Status */
.status-badge.status-new {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.status-badge.status-contacted {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-badge.status-confirmed {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.status-closed {
  background: rgba(107, 114, 128, 0.15);
  color: #4b5563;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

/* Contact Messages Status */
.status-badge.status-unread {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  font-weight: 700;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge.status-read {
  background: rgba(107, 114, 128, 0.12);
  color: #4b5563;
  border: 1px solid rgba(107, 114, 128, 0.25);
}

.status-badge.status-replied {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Verified Training Certificate Badge */
.training-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(212, 168, 67, 0.05));
  border: 1px solid var(--accent);
  color: #92400e;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}

.batch-tag {
  background: rgba(15, 76, 117, 0.08);
  color: var(--primary);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Candidate Portal Navigation Tabs */
.candidate-nav-tabs {
  display: flex;
  gap: var(--space-sm);
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--space-2xl);
  overflow-x: auto;
}

.candidate-tab-btn {
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.candidate-tab-btn:hover {
  color: var(--primary);
}

.candidate-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.candidate-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.candidate-item-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.candidate-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 76, 117, 0.2);
}

.candidate-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
}

.candidate-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.candidate-card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.candidate-card-footer {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Motivation banner for CV submission */
.training-cert-banner {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.15), rgba(15, 76, 117, 0.08));
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* ============================================
   OFFICIAL DELUXE UMRAH PACKAGE (2026-27 / 1448 HIJRI)
   ============================================ */

.umrah-showcase {
  background: var(--bg-white);
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(15, 76, 117, 0.08), 0 2px 10px rgba(212, 168, 67, 0.15);
  overflow: hidden;
  margin-bottom: var(--space-3xl);
}

.umrah-header-banner {
  background: linear-gradient(135deg, #071324 0%, #0B2545 40%, #0F4C75 100%);
  color: var(--text-white);
  padding: var(--space-2xl) var(--space-2xl);
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--accent);
}

.umrah-arabic-greeting {
  font-family: 'Amiri', 'Traditional Arabic', 'Scheherazade New', serif;
  font-size: 1.6rem;
  color: var(--accent-light);
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.umrah-season-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4a843, #e8c76a);
  color: #0a1628;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.umrah-route-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.umrah-main-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin: var(--space-xs) 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.umrah-main-title span {
  background: linear-gradient(135deg, #d4a843 0%, #ffe494 50%, #d4a843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hotels Section */
.umrah-hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.umrah-hotel-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.umrah-hotel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.umrah-hotel-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15, 76, 117, 0.1), rgba(212, 168, 67, 0.15));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.umrah-hotel-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-dark);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.umrah-hotel-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.umrah-hotel-distance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Schedule Batches Table */
.umrah-schedule-container {
  padding: var(--space-xl);
}

.umrah-schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.umrah-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.umrah-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 780px;
}

.umrah-table th {
  background: #0b2545;
  color: #ffffff;
  padding: 14px 16px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.5px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.umrah-table th.center, .umrah-table td.center {
  text-align: center;
}

.umrah-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.umrah-table tr:nth-child(even) {
  background: #f8fafc;
}

.umrah-table tr:hover {
  background: rgba(212, 168, 67, 0.08);
}

.umrah-table td {
  padding: 14px 16px;
  color: var(--text-secondary);
}

.umrah-batch-date {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.umrah-batch-price {
  font-weight: 800;
  color: #b45309;
  font-size: 1.05rem;
}

.umrah-batch-days {
  display: inline-block;
  font-weight: 700;
  padding: 2px 10px;
  background: rgba(15, 76, 117, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

.umrah-flight-pill {
  display: inline-block;
  background: #eef2f6;
  border: 1px solid #d1d5db;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-family: monospace;
  color: #1f2937;
  font-weight: 600;
  margin: 1px 0;
}

.umrah-seats-badge {
  display: inline-block;
  font-weight: 700;
  padding: 3px 10px;
  background: #dcfce7;
  color: #15803d;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

/* Inclusions & Highlights Grid */
.umrah-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-xl);
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.umrah-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.umrah-feature-item:hover {
  border-color: var(--accent);
  background: #fffdf5;
}

.umrah-feature-item i {
  color: var(--accent-dark);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.umrah-feature-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.umrah-feature-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hadiya & Ziyarat Split */
.umrah-extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

.umrah-extra-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.umrah-extra-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid rgba(212, 168, 67, 0.3);
  padding-bottom: 6px;
}

.umrah-extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.umrah-extra-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed #f1f5f9;
}

.umrah-extra-list li:last-child {
  border-bottom: none;
}

.umrah-extra-list li i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* Policy Footer inside Showcase */
.umrah-showcase-footer {
  padding: var(--space-lg) var(--space-xl);
  background: #071324;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.85rem;
}

.umrah-policy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
}

.umrah-policy-note i {
  color: #f59e0b;
}

.umrah-btn-gold {
  background: linear-gradient(135deg, #d4a843 0%, #e8c76a 100%);
  color: #071324;
  font-weight: 700;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.35);
}

.umrah-btn-gold:hover {
  background: #e8c76a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.45);
}

@media (max-width: 900px) {
  .umrah-hotels-grid, .umrah-features-grid, .umrah-extras-grid {
    grid-template-columns: 1fr;
  }
  .umrah-showcase-footer {
    flex-direction: column;
    text-align: center;
  }
}


.training-cert-banner-icon {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   RECRUITMENT UPDATES & INTERVIEW DATE HIGHLIGHTS
   ============================================ */

/* Live Marquee / Breaking Ticker for Homepage */
.recruitment-ticker-bar {
  background: linear-gradient(90deg, #071324 0%, #0f2b48 50%, #071324 100%);
  border-bottom: 2px solid #d4a843;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.recruitment-ticker-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ticker-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
  animation: pulse-red 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.85); transform: scale(1.02); }
}

.ticker-content-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-text {
  display: inline-block;
  animation: ticker-scroll 32s linear infinite;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e2e8f0;
}

.ticker-text a {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 5px;
}

.ticker-text span.ticker-item-sep {
  margin: 0 20px;
  color: rgba(212, 168, 67, 0.6);
}

@keyframes ticker-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.ticker-content-track:hover .ticker-text {
  animation-play-state: paused;
}

/* Interview Date Highlight Box on Job Cards */
.interview-highlight-box {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.12) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1.5px solid rgba(212, 168, 67, 0.45);
  border-left: 4px solid #d4a843;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 12px 0 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.interview-highlight-box:hover {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.18) 0%, rgba(245, 158, 11, 0.12) 100%);
  border-color: #d4a843;
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.2);
}

.interview-calendar-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #d4a843 0%, #b88628 100%);
  color: #071324;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(212, 168, 67, 0.35);
}

.interview-calendar-icon i {
  font-size: 1.15rem;
}

.interview-info-body {
  flex: 1;
}

.interview-label-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #d97706;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.interview-date-val {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.interview-location-val {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Featured / Highlighted Job Card Ribbon & Glow */
.job-card-modern.is-highlighted-card {
  border: 2px solid rgba(212, 168, 67, 0.7);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.22);
  position: relative;
  background: #ffffff;
}

.job-card-modern.is-highlighted-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a843 0%, #ef4444 50%, #d4a843 100%);
}

.featured-job-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #d4a843 0%, #b88628 100%);
  color: #071324;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(212, 168, 67, 0.35);
}

.urgent-hiring-badge {
  background: #ef4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}

/* Homepage Recruitment Section Styling */
.home-recruitment-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef4f9 100%);
  position: relative;
  padding: 80px 0;
}

.home-recruitment-header-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.live-indicator-pill {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: live-blink 1.5s infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.home-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.home-recruitment-footer-cta {
  text-align: center;
  margin-top: 45px;
}

/* Admin Table Highlight Toggle Button */
.btn-icon-star {
  color: #94a3b8;
  transition: all 0.2s;
}

.btn-icon-star.is-starred {
  color: #eab308;
  text-shadow: 0 0 8px rgba(234, 179, 8, 0.5);
}

.btn-icon-star:hover {
  transform: scale(1.2);
}

/* ============================================
   JOB RICH-TEXT EDITOR & BULLET STYLING
   ============================================ */
.job-editor-wrapper {
  margin-top: 4px;
}

.job-editor-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 6px 10px;
  flex-wrap: wrap;
}

.job-toolbar-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s ease;
  user-select: none;
}

.job-toolbar-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.job-toolbar-btn:active {
  transform: translateY(1px);
}

.job-toolbar-tag-info {
  font-size: 0.75rem;
  color: #64748b;
  margin-left: auto;
}

.job-editor-textarea {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  font-family: inherit;
  line-height: 1.5;
}

.job-preview-box {
  display: none;
  background: #f8fafc;
  border: 1.5px dashed #94a3b8;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-top: 8px;
  font-size: 0.88rem;
  color: #1e293b;
}

.job-preview-box-header {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Bullet list and text formatting styles in job cards */
.job-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 10px 0;
}

.job-bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
  line-height: 1.45;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.job-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 2px;
  top: -1px;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.2;
}

.job-bullet-list.job-numbered-list {
  list-style-type: decimal;
  padding-left: 20px;
}

.job-bullet-list.job-numbered-list li {
  padding-left: 4px;
}

.job-bullet-list.job-numbered-list li::before {
  content: none;
}

.job-text-line {
  margin: 0 0 6px 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.45;
}

.job-req-list strong, .job-desc-p strong, .job-text-line strong, .job-bullet-list strong {
  font-weight: 700;
  color: #0f172a;
}

.job-req-list u, .job-desc-p u, .job-text-line u, .job-bullet-list u {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 1.5px;
}

