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

:root {
  --primary: #0891B2;
  --primary-light: #06B6D4;
  --secondary: #F97316;
  --accent-green: #10B981;
  --accent-red: #EF4444;
  --dark: #0F172A;
  --dark2: #1E293B;
  --light: #F8FAFC;
  --light2: #F1F5F9;
  --light3: #E2E8F0;
  --white: #ffffff;
  --text: #1E293B;
  --text-muted: #64748B;
  --glass: rgba(255,255,255,0.7);
  --glass2: rgba(255,255,255,0.5);
  --glass-border: rgba(0,0,0,0.08);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --gradient1: linear-gradient(135deg, #0891B2, #0E7490);
  --gradient2: linear-gradient(135deg, #F97316, #EA580C);
  --gradient3: linear-gradient(135deg, #0891B2, #10B981);
  --gradient-hero: linear-gradient(135deg, #0891B2 0%, #0E7490 50%, #F97316 100%);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Poppins',sans-serif; background:var(--white); color:var(--text); overflow-x:hidden; }

/* ===== NAVBAR ===== */
.navbar {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  padding:12px 5%; display:flex; align-items:center; justify-content:space-between;
  background:rgba(255,255,255,0.85); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--glass-border);
  transition:all 0.3s ease;
}
.navbar.scrolled { padding:8px 5%; background:rgba(255,255,255,0.95); box-shadow:var(--shadow); }
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-logo img { height:50px; }
.nav-logo span { font-size:1.1rem; font-weight:700; color:var(--text); }
.nav-logo span em { font-style:normal; color:var(--secondary); }
.nav-links { display:flex; list-style:none; gap:30px; }
.nav-links a {
  color:var(--text-muted); text-decoration:none; font-weight:500; font-size:0.95rem;
  position:relative; padding:5px 0; transition:color 0.3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:2px;
  background:var(--gradient2); transition:width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color:var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta {
  padding:10px 24px; border:none; border-radius:50px; font-family:inherit;
  font-weight:600; font-size:0.9rem; cursor:pointer; color:var(--white);
  background:var(--gradient2); transition:transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 5px 20px rgba(249,115,22,0.35); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
.hamburger span { width:25px; height:2px; background:var(--text); transition:0.3s; }

/* ===== BOOKING NAV BUTTON ===== */
.nav-links .nav-booking {
  background:linear-gradient(135deg, #C9A84C, #A67C2E, #C9A84C);
  background-size:200% 200%;
  color:#fff !important;
  padding:8px 20px;
  border-radius:50px;
  font-weight:600;
  position:relative;
  overflow:hidden;
  animation:shimmerGold 3s ease infinite, pulseGlow 2s ease-in-out infinite;
  box-shadow:0 2px 15px rgba(201,168,76,0.4);
  transition:all 0.3s ease;
}
.nav-links .nav-booking::after {
  display:none !important;
}
.nav-links .nav-booking::before {
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:100%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation:lightSweep 2.5s ease-in-out infinite;
}
.nav-links .nav-booking:hover {
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 6px 25px rgba(201,168,76,0.6);
  color:#fff !important;
}
@keyframes shimmerGold {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow:0 2px 15px rgba(201,168,76,0.4); }
  50% { box-shadow:0 4px 25px rgba(201,168,76,0.65), 0 0 40px rgba(201,168,76,0.15); }
}
@keyframes lightSweep {
  0% { left:-100%; }
  50%, 100% { left:100%; }
}

/* ===== B2B LOGIN NAV BUTTON ===== */
.nav-links .nav-b2b {
  background:linear-gradient(135deg, #0891B2, #0E7490, #0891B2);
  background-size:200% 200%;
  color:#fff !important;
  padding:8px 20px;
  border-radius:50px;
  font-weight:600;
  position:relative;
  overflow:hidden;
  animation:shimmerTeal 3s ease infinite, pulseGlowTeal 2.5s ease-in-out infinite;
  box-shadow:0 2px 15px rgba(8,145,178,0.35);
  transition:all 0.3s ease;
}
.nav-links .nav-b2b::after {
  display:none !important;
}
.nav-links .nav-b2b::before {
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:100%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation:lightSweepB2B 3s ease-in-out infinite;
}
.nav-links .nav-b2b:hover {
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 6px 25px rgba(8,145,178,0.55);
  color:#fff !important;
}
@keyframes shimmerTeal {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}
@keyframes pulseGlowTeal {
  0%, 100% { box-shadow:0 2px 15px rgba(8,145,178,0.35); }
  50% { box-shadow:0 4px 25px rgba(8,145,178,0.6), 0 0 35px rgba(8,145,178,0.12); }
}
@keyframes lightSweepB2B {
  0% { left:-100%; }
  60%, 100% { left:100%; }
}

/* ===== HERO ===== */
.hero {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden; padding:100px 5% 60px;
}
.hero-bg {
  position:absolute; inset:0; background-size:cover; background-position:center;
  filter:brightness(0.4);
}
.hero-video-bg {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:brightness(0.4);
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,145,178,0.5) 0%, rgba(15,23,42,0.7) 100%);
}
.hero-content {
  position:relative; z-index:2; text-align:center; max-width:850px;
  animation:fadeUp 1s ease;
}
.hero-badge {
  display:inline-block; padding:8px 20px; border-radius:50px;
  background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.25);
  font-size:0.85rem; color:var(--white); margin-bottom:20px;
  backdrop-filter:blur(10px);
}
.hero-content h1 { font-size:3.2rem; font-weight:800; line-height:1.2; margin-bottom:20px; color:var(--white); }
.hero-content h1 .highlight {
  background:var(--gradient2); -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.hero-content p { font-size:1.1rem; color:rgba(255,255,255,0.85); margin-bottom:35px; line-height:1.7; }
.hero-buttons { display:flex; gap:15px; justify-content:center; flex-wrap:wrap; }
.btn-primary {
  padding:14px 35px; border:none; border-radius:50px; font-family:inherit;
  font-weight:600; font-size:1rem; cursor:pointer; color:var(--white);
  background:var(--gradient2); transition:all 0.3s; text-decoration:none;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(249,115,22,0.4); }
.btn-outline {
  padding:14px 35px; border:2px solid var(--white); border-radius:50px;
  font-family:inherit; font-weight:600; font-size:1rem; cursor:pointer;
  color:var(--white); background:transparent; transition:all 0.3s; text-decoration:none;
}
.btn-outline:hover { background:var(--white); color:var(--primary); transform:translateY(-3px); }

/* ===== STATS ===== */
.stats-bar {
  display:flex; justify-content:center; gap:50px; flex-wrap:wrap;
  padding:45px 5%; background:var(--white); position:relative;
  border-bottom:1px solid var(--light3);
}
.stat-item { text-align:center; }
.stat-number { font-size:2.5rem; font-weight:800; background:var(--gradient1); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.stat-label { font-size:0.85rem; color:var(--text-muted); margin-top:5px; }

/* ===== SECTIONS ===== */
.section { padding:80px 5%; }
.section-alt { background:var(--light); }
.section-header { text-align:center; margin-bottom:50px; }
.section-badge {
  display:inline-block; padding:6px 18px; border-radius:50px; font-size:0.8rem;
  font-weight:600; color:var(--primary); background:rgba(8,145,178,0.08);
  border:1px solid rgba(8,145,178,0.15); margin-bottom:15px; text-transform:uppercase;
  letter-spacing:1px;
}
.section-header h2 { font-size:2.3rem; font-weight:700; margin-bottom:15px; color:var(--text); }
.section-header h2 .highlight { background:var(--gradient2); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.section-header p { color:var(--text-muted); max-width:600px; margin:0 auto; line-height:1.7; }

/* ===== CARDS ===== */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:25px; max-width:1200px; margin:0 auto; }
.cards-grid-4 { grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); }

/* Custom layout for home page services */
.services-custom-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-custom-grid .card {
  flex: 0 1 calc((100% - 50px) / 3);
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.services-custom-grid .card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 968px) {
  .services-custom-grid .card {
    flex: 0 1 calc((100% - 25px) / 2);
    min-width: 280px;
  }
}
@media (max-width: 640px) {
  .services-custom-grid .card {
    flex: 0 1 100%;
    min-width: 100%;
  }
}

.card {
  background:var(--white); border:1px solid var(--light3); border-radius:20px;
  overflow:hidden; transition:all 0.4s; box-shadow:var(--shadow);
}
.card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:var(--primary-light); }
.card-img { width:100%; height:220px; object-fit:cover; }
.card-body { padding:25px; }
.card-body h3 { font-size:1.2rem; margin-bottom:10px; color:var(--text); }
.card-body p { color:var(--text-muted); font-size:0.9rem; line-height:1.7; }
.card-icon {
  width:60px; height:60px; border-radius:15px; display:flex; align-items:center;
  justify-content:center; font-size:1.5rem; margin-bottom:15px;
  background:var(--gradient1); color:var(--white);
}

/* ===== ABOUT PAGE ===== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; max-width:1200px; margin:0 auto; }
.about-img { border-radius:20px; width:100%; box-shadow:var(--shadow-lg); }
.about-text h3 { font-size:1.5rem; margin-bottom:15px; color:var(--primary); }
.about-text p { color:var(--text-muted); line-height:1.8; margin-bottom:15px; }
.timeline { position:relative; padding-left:30px; margin-top:30px; }
.timeline::before { content:''; position:absolute; left:0; top:0; height:100%; width:2px; background:var(--gradient1); }
.timeline-item { margin-bottom:25px; position:relative; }
.timeline-item::before {
  content:''; position:absolute; left:-35px; top:5px; width:12px; height:12px;
  border-radius:50%; background:var(--primary); border:3px solid var(--white); box-shadow:0 0 0 2px var(--primary);
}
.timeline-item h4 { color:var(--secondary); font-size:0.9rem; margin-bottom:5px; }
.timeline-item p { color:var(--text-muted); font-size:0.9rem; }

/* Directors */
.directors-grid { display:grid; grid-template-columns:1fr 1fr; gap:30px; max-width:800px; margin:40px auto 0; }
.director-card {
  background:var(--white); border:1px solid var(--light3); border-radius:20px;
  padding:30px; text-align:center; transition:all 0.4s; box-shadow:var(--shadow);
}
.director-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--primary-light); }
.director-avatar {
  width:80px; height:80px; border-radius:50%; background:var(--gradient1);
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; font-weight:700; margin:0 auto 15px; color:var(--white);
}
.director-card h3 { font-size:1.1rem; margin-bottom:5px; color:var(--text); }
.director-card p { color:var(--primary); font-size:0.85rem; }

/* ===== CONTACT ===== */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; max-width:1200px; margin:0 auto; }
.contact-info-cards { display:flex; flex-direction:column; gap:20px; }
.contact-card {
  display:flex; align-items:flex-start; gap:15px; padding:20px;
  background:var(--white); border:1px solid var(--light3);
  border-radius:15px; transition:all 0.3s; box-shadow:var(--shadow);
}
.contact-card:hover { border-color:var(--primary-light); transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.contact-card-icon {
  width:45px; height:45px; border-radius:12px; display:flex; align-items:center;
  justify-content:center; flex-shrink:0; background:var(--gradient1); font-size:1.1rem;
}
.contact-card h4 { font-size:0.95rem; margin-bottom:5px; color:var(--text); }
.contact-card p, .contact-card a { color:var(--text-muted); font-size:0.85rem; text-decoration:none; line-height:1.6; }
.contact-form {
  background:var(--white); border:1px solid var(--light3);
  border-radius:20px; padding:35px; box-shadow:var(--shadow);
}
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:0.85rem; font-weight:500; margin-bottom:6px; color:var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:12px 16px; border:1px solid var(--light3);
  border-radius:10px; background:var(--light); color:var(--text);
  font-family:inherit; font-size:0.9rem; transition:border 0.3s; outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(8,145,178,0.1); }
.form-group textarea { resize:vertical; min-height:100px; }
.form-group select option { background:var(--white); }
.form-submit {
  width:100%; padding:14px; border:none; border-radius:50px; font-family:inherit;
  font-weight:600; font-size:1rem; cursor:pointer; color:var(--white);
  background:var(--gradient2); transition:all 0.3s;
}
.form-submit:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(249,115,22,0.35); }
.map-container { margin-top:30px; border-radius:20px; overflow:hidden; border:1px solid var(--light3); height:350px; box-shadow:var(--shadow); }
.map-container iframe { width:100%; height:100%; border:none; }

/* ===== POPUP ===== */
.popup-overlay {
  position:fixed; inset:0; z-index:9999; background:rgba(15,23,42,0.5);
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(8px); opacity:0; visibility:hidden; transition:all 0.4s;
}
.popup-overlay.active { opacity:1; visibility:visible; }
.popup {
  background:var(--white); border:1px solid var(--light3); border-radius:24px;
  padding:40px; max-width:480px; width:90%; position:relative;
  transform:scale(0.8) translateY(30px); transition:all 0.4s;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}
.popup-overlay.active .popup { transform:scale(1) translateY(0); }
.popup-close {
  position:absolute; top:15px; right:15px; width:35px; height:35px;
  border-radius:50%; border:1px solid var(--light3); background:var(--light);
  color:var(--text); font-size:1.2rem; cursor:pointer; display:flex;
  align-items:center; justify-content:center; transition:all 0.3s;
}
.popup-close:hover { background:var(--accent-red); color:var(--white); border-color:var(--accent-red); }
.popup h2 { font-size:1.5rem; margin-bottom:5px; color:var(--text); }
.popup .popup-sub { color:var(--text-muted); font-size:0.85rem; margin-bottom:25px; }

/* ===== PARTNERS & VENDORS ===== */
.partners-section { padding:60px 5%; text-align:center; }
.partners-grid {
  display:flex; justify-content:center; align-items:center; gap:50px; flex-wrap:wrap;
  max-width:1000px; margin:30px auto 0;
}
.partner-item {
  padding:20px 30px; background:var(--white); border:1px solid var(--light3);
  border-radius:15px; box-shadow:var(--shadow); transition:all 0.3s;
  font-weight:700; font-size:1.1rem; color:var(--text);
}
.partner-item:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:var(--primary-light); }
.partner-item span { display:block; font-size:0.75rem; font-weight:400; color:var(--text-muted); margin-top:3px; }

/* ===== FOOTER ===== */
.footer { background:var(--dark); color:var(--white); border-top:1px solid var(--glass-border); padding:50px 5% 20px; }
.footer .nav-logo span { color:var(--white); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; max-width:1200px; margin:0 auto; }
.footer-brand p { color:rgba(255,255,255,0.5); font-size:0.85rem; line-height:1.7; margin-top:15px; }
.footer h4 { font-size:0.95rem; margin-bottom:15px; color:var(--primary-light); }
.footer ul { list-style:none; }
.footer ul li { margin-bottom:8px; }
.footer ul a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.85rem; transition:color 0.3s; }
.footer ul a:hover { color:var(--white); }
.footer-bottom {
  text-align:center; padding-top:25px; margin-top:40px;
  border-top:1px solid rgba(255,255,255,0.1); color:rgba(255,255,255,0.4); font-size:0.8rem;
}
.footer-bottom a { color:var(--primary-light); text-decoration:none; font-weight:600; }

/* ===== PAGE BANNER ===== */
.page-banner {
  min-height:45vh; display:flex; align-items:center; justify-content:center;
  position:relative; text-align:center; padding:120px 5% 60px;
}
.page-banner .hero-bg { filter:brightness(0.3); }
.page-banner h1 { font-size:2.8rem; font-weight:800; position:relative; z-index:2; color:var(--white); }
.page-banner p { color:rgba(255,255,255,0.8); position:relative; z-index:2; margin-top:10px; }

/* ===== FEATURES LIST ===== */
.features-list { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; max-width:1200px; margin:0 auto; }

/* Custom layout for Travel with Confidence features on home page */
.features-custom-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-custom-grid .feature-item {
  flex: 0 1 calc((100% - 40px) / 3);
  min-width: 280px;
}
@media (max-width: 968px) {
  .features-custom-grid .feature-item {
    flex: 0 1 calc((100% - 20px) / 2);
    min-width: 250px;
  }
}
@media (max-width: 600px) {
  .features-custom-grid .feature-item {
    flex: 0 1 100%;
    min-width: 100%;
  }
}

.feature-item {
  display:flex; align-items:flex-start; gap:15px; padding:20px;
  background:var(--white); border:1px solid var(--light3);
  border-radius:15px; transition:all 0.3s; box-shadow:var(--shadow);
}
.feature-item:hover { border-color:var(--primary-light); transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.feature-icon { font-size:1.5rem; flex-shrink:0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.7); } to { opacity:1; transform:scale(1); } }
@keyframes bounceIn { 0% { opacity:0; transform:scale(0.3); } 50% { transform:scale(1.08); } 70% { transform:scale(0.95); } 100% { opacity:1; transform:scale(1); } }
@keyframes gradientShift { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }

.animate-on-scroll { opacity:0; transform:translateY(30px); transition:all 0.7s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }

/* Staggered card animations */
.cards-grid .card:nth-child(1), .services-custom-grid .card:nth-child(1) { transition-delay:0.1s; }
.cards-grid .card:nth-child(2), .services-custom-grid .card:nth-child(2) { transition-delay:0.25s; }
.cards-grid .card:nth-child(3), .services-custom-grid .card:nth-child(3) { transition-delay:0.4s; }
.cards-grid .card:nth-child(4), .services-custom-grid .card:nth-child(4) { transition-delay:0.55s; }
.cards-grid .card:nth-child(5), .services-custom-grid .card:nth-child(5) { transition-delay:0.7s; }

/* Hero badge floating animation */
.hero-badge { animation:float 3s ease-in-out infinite, fadeIn 1s ease; }

/* Hero h1 gradient text animation */
.hero-content h1 .highlight {
  background:linear-gradient(135deg, #F97316, #FB923C, #FBBF24, #F97316);
  background-size:300% 300%;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  animation:gradientShift 4s ease infinite;
}

/* Stats bounce on visible */
.stat-item { transition:all 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.stat-item:hover { transform:translateY(-8px); }
.stats-bar .stat-item:nth-child(1) { animation:bounceIn 0.8s ease 0.2s both; }
.stats-bar .stat-item:nth-child(2) { animation:bounceIn 0.8s ease 0.4s both; }
.stats-bar .stat-item:nth-child(3) { animation:bounceIn 0.8s ease 0.6s both; }
.stats-bar .stat-item:nth-child(4) { animation:bounceIn 0.8s ease 0.8s both; }

/* Feature items stagger */
.features-list .feature-item:nth-child(odd).visible, .features-custom-grid .feature-item:nth-child(odd).visible { animation:slideInLeft 0.7s ease both; }
.features-list .feature-item:nth-child(even).visible, .features-custom-grid .feature-item:nth-child(even).visible { animation:slideInRight 0.7s ease both; }

/* Button ripple effect */
.btn-primary, .btn-search, .form-submit, .btn-book, .btn-pay {
  position:relative; overflow:hidden;
}
.btn-primary::after, .btn-search::after, .form-submit::after {
  content:''; position:absolute; top:50%; left:50%;
  width:0; height:0; border-radius:50%;
  background:rgba(255,255,255,0.25);
  transform:translate(-50%,-50%);
  transition:width 0.5s, height 0.5s, opacity 0.5s;
  opacity:0;
}
.btn-primary:active::after, .btn-search:active::after, .form-submit:active::after {
  width:300px; height:300px; opacity:1; transition:0s;
}

/* Section badge pulse */
.section-badge { animation:pulse 3s ease-in-out infinite; }

/* Footer company name glow */
.footer-brand .company-glow {
  background:linear-gradient(135deg, #0891B2, #06B6D4, #F97316, #0891B2);
  background-size:300% 300%;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  animation:gradientShift 3s ease infinite;
  font-weight:700;
  font-size:1rem;
  letter-spacing:0.5px;
}

/* Floating particles */
.particles { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.particle {
  position:absolute; border-radius:50%; background:rgba(255,255,255,0.3); opacity:0.4;
  animation:float 6s ease-in-out infinite;
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg { display:none; text-align:center; padding:30px; }
.success-msg.show { display:block; animation:fadeUp 0.5s ease; }
.success-msg .checkmark { font-size:3rem; margin-bottom:10px; }
.success-msg h3 { color:var(--accent-green); margin-bottom:10px; }
.success-msg p { color:var(--text-muted); font-size:0.9rem; }

/* ===== VISA GRID & TOOLTIPS ===== */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 25px;
}
.visa-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--light3);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 10;
}
.visa-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.visa-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.visa-card:hover .visa-icon {
  transform: scale(1.15) rotate(5deg);
}
.visa-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.visa-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.visa-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.95);
  width: 240px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(8, 145, 178, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  color: #fff;
  text-align: left;
}
.visa-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.96) transparent transparent transparent;
}
.visa-card:hover .visa-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.tooltip-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
}
.tooltip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tooltip-list li {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tooltip-list li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .visa-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .visa-tooltip {
    width: 90vw;
    max-width: 280px;
    bottom: calc(100% + 10px);
  }
}
/* ===== FOOTER COUNTRIES WE SERVE ===== */
.footer-countries {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}
.footer-countries h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FBBF24;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}
.countries-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.countries-list span img {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  display: inline-block;
}
.countries-list span::after {
  content: '|';
  color: rgba(255, 255, 255, 0.2);
  margin-left: 14px;
}
.countries-list span:last-child::after {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:968px) {
  .nav-links { display:none; position:fixed; top:0; left:0; width:100%; height:100vh; background:var(--white); flex-direction:column; align-items:center; justify-content:center; gap:25px; }
  .nav-links.active { display:flex; z-index:999; }
  .nav-links a { color:var(--text); font-size:1.1rem; }
  .hamburger { display:flex; z-index:1000; }
  .hero-content h1 { font-size:2.2rem; }
  .about-grid, .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .directors-grid { grid-template-columns:1fr; }
  .stats-bar { gap:25px; }
  .stat-number { font-size:1.8rem; }
}
@media(max-width:480px) {
  .hero-content h1 { font-size:1.7rem; }
  .section-header h2 { font-size:1.6rem; }
  .footer-grid { grid-template-columns:1fr; }
  .popup { padding:25px; }
}

/* ===== HAJJ & UMRAH ===== */
.hajj-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 60px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Fallback */
}
.hajj-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #032111; /* Deep Islamic Green */
  background-image: 
    linear-gradient(rgba(3, 33, 17, 0.8), rgba(3, 33, 17, 0.6)),
    url('../images/hajj-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hajj-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d4af37" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
  z-index: 2;
  opacity: 0.6;
}
.hajj-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.hajj-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bismillah {
  font-family: 'Amiri', serif;
  font-size: 2.8rem;
  color: #d4af37; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(212, 175, 55, 0.3);
  animation: fadeUp 1s ease;
}
.hajj-title {
  font-family: 'Aref Ruqaa', serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #fff;
}
.hajj-highlight {
  color: #d4af37;
}
.hajj-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
}
.processing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.05);
  animation: scaleIn 0.8s ease 0.3s both;
  max-width: 600px;
}
.processing-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}
.processing-card h2 {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}
.processing-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
}
.hajj-loader {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hajj-loader span {
  width: 12px;
  height: 12px;
  background: #d4af37;
  border-radius: 50%;
  animation: hajjPulse 1.5s infinite ease-in-out;
}
.hajj-loader span:nth-child(1) { animation-delay: 0s; }
.hajj-loader span:nth-child(2) { animation-delay: 0.2s; }
.hajj-loader span:nth-child(3) { animation-delay: 0.4s; }

@keyframes hajjPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
}

.hajj-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hajj-btn-primary {
  padding: 14px 35px;
  background: linear-gradient(135deg, #d4af37, #b5952f);
  color: #032111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}
.hajj-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  color: #000;
}
.hajj-btn-outline {
  padding: 14px 35px;
  background: transparent;
  color: #d4af37;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #d4af37;
  transition: all 0.3s;
}
.hajj-btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

@media(max-width: 768px) {
  .bismillah { font-size: 2rem; }
  .hajj-title { font-size: 3rem; }
  .processing-card { padding: 30px 20px; }
}
