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

:root {
  --primary-color: #10b981;
  --secondary-color: #059669;
  --accent-color: #fbbf24;
  --dark-color: #1f2937;
  --light-color: #f9fafb;
  --text-color: #374151;
  --border-color: #e5e7eb;
  --pk-green: #01411C;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo i {
  font-size: 1.5rem;
}

.logo .logo-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 70px 20px 80px;
  text-align: center;
}

.hero-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-subtext {
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.badge i {
  font-size: 2rem;
}

.badge span {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent-color);
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

/* Notice banner */
.notice-banner {
  background: #fff7ed;
  border-bottom: 1px solid #fed7aa;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #9a3412;
}

.notice-banner strong {
  color: #7c2d12;
}

/* Quick Guide Section */
.quick-guide {
  padding: 80px 20px;
  background: var(--light-color);
}

.quick-guide h2,
.pk-requirements h2,
.packages h2,
.booking-process h2,
.why-choose h2,
.faq h2,
.contact h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.quick-guide h2 {
  margin-bottom: 50px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.guide-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.guide-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Pakistani Passport Requirements Section */
.pk-requirements {
  padding: 80px 20px;
  background: white;
}

.pk-requirements .section-subtitle {
  margin-bottom: 40px;
}

.pk-notice {
  max-width: 900px;
  margin: 0 auto 40px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 22px 26px;
}

.pk-notice h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.pk-notice ul {
  padding-left: 20px;
}

.pk-notice li {
  margin-bottom: 6px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.doc-card {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
}

.doc-card i {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.doc-card h3 {
  font-size: 1.05rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.doc-card p {
  font-size: 0.92rem;
  color: var(--text-color);
}

.doc-card.mandatory {
  border: 2px solid var(--accent-color);
  position: relative;
}

.mandatory-tag {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--accent-color);
  color: var(--dark-color);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Packages Section */
.packages {
  padding: 80px 20px;
  background: var(--light-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 50px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.package-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
  border: 3px solid var(--accent-color);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 8px 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.package-header {
  padding: 40px 30px;
  color: white;
  text-align: center;
}

.package-header.economy {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.package-header.standard {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.package-header.luxury {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.package-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 15px 0;
}

.package-features {
  list-style: none;
  padding: 30px;
}

.package-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.package-button {
  display: block;
  margin: 0 30px 30px;
  padding: 15px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.3s;
}

.package-button:hover {
  background: var(--secondary-color);
}

/* Booking Process Section */
.booking-process {
  padding: 80px 20px;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  background: var(--light-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 20px;
  background: var(--light-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
  background: white;
}

.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--light-color);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.15rem;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--dark-color);
}

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

.contact-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item strong {
  display: block;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.whatsapp-button,
.call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-button {
  background: #25D366;
  color: white;
}

.call-button {
  background: var(--primary-color);
  color: white;
}

.whatsapp-button:hover,
.call-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer p {
  margin-bottom: 10px;
}

.footer-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, text-decoration 0.3s;
}

.footer-link:hover {
  color: #fcd34d;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .packages h2,
  .quick-guide h2,
  .pk-requirements h2,
  .booking-process h2,
  .why-choose h2,
  .faq h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .hero-badges {
    flex-direction: column;
    gap: 10px;
  }

  .badge {
    width: 100%;
  }

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

  .price {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .logo span {
    font-size: 1rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* ── Floating WhatsApp Button ─────────────────────────────── */
.wa-float{
  position:fixed;bottom:80px;right:18px;z-index:9998;
  background:#25D366;color:#fff;border-radius:50%;
  width:58px;height:58px;display:flex;align-items:center;
  justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.55);
  text-decoration:none;font-size:28px;
  animation:wa-pulse 2.2s infinite;
  transition:transform .2s;
}
.wa-float:hover{transform:scale(1.12);}
@keyframes wa-pulse{
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.55);}
  50%{box-shadow:0 4px 32px rgba(37,211,102,.85),0 0 0 10px rgba(37,211,102,.12);}
}
.wa-float-tooltip{
  position:fixed;bottom:148px;right:16px;z-index:9997;
  background:#1a1a1a;color:#fff;font-size:12px;padding:6px 10px;
  border-radius:6px;white-space:nowrap;pointer-events:none;
  opacity:0;transition:opacity .3s;
}
.wa-float:hover ~ .wa-float-tooltip{opacity:1;}

/* ── Mobile Sticky Bottom Bar ─────────────────────────────── */
.mobile-cta-bar{
  position:fixed;bottom:0;left:0;right:0;z-index:9990;
  display:flex;background:#1a1a1a;
  box-shadow:0 -3px 16px rgba(0,0,0,.35);
  padding-bottom:env(safe-area-inset-bottom);
}
.mobile-cta-bar a{
  flex:1;display:flex;flex-direction:column;align-items:center;
  justify-content:center;padding:11px 6px 9px;font-size:11px;
  font-weight:700;text-decoration:none;letter-spacing:.3px;
  gap:4px;text-transform:uppercase;
}
.mobile-cta-bar .bar-wa{background:#25D366;color:#fff;}
.mobile-cta-bar .bar-wa:active{background:#1ea855;}
.mobile-cta-bar .bar-call{background:#1a73e8;color:#fff;}
.mobile-cta-bar .bar-call:active{background:#1558b0;}
.mobile-cta-bar a i{font-size:18px;}
@media(min-width:768px){.mobile-cta-bar{display:none;}}

/* ── Body bottom padding so content not hidden by bar ─────── */
body{padding-bottom:64px;}
@media(min-width:768px){body{padding-bottom:0;}}

/* ── WhatsApp CTA buttons ─────────────────────────────────── */
.wa-cta-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:#25D366;color:#fff;font-weight:700;
  border-radius:8px;padding:13px 22px;font-size:15px;
  text-decoration:none;border:none;cursor:pointer;
  box-shadow:0 3px 12px rgba(37,211,102,.35);
  transition:background .2s,transform .15s,box-shadow .2s;
}
.wa-cta-btn:hover{
  background:#1ea855;transform:translateY(-1px);
  box-shadow:0 5px 18px rgba(37,211,102,.5);
}
.wa-cta-btn i{font-size:18px;}

/* ── Mobile touch targets ─────────────────────────────────── */
@media(max-width:767px){
  a[href^="tel:"],a[href^="https://wa.me"]{
    min-height:44px;display:inline-flex;align-items:center;
  }
  button,input[type=submit],input[type=button]{
    min-height:44px;font-size:16px!important;
  }
  input,select,textarea{
    font-size:16px!important;
    border-radius:8px!important;
    padding:12px!important;
  }
  h1{font-size:clamp(1.6rem,6vw,2.8rem)!important;}
  h2{font-size:clamp(1.3rem,5vw,2.2rem)!important;}
}

/* ── Package card WA button ───────────────────────────────── */
.pkg-wa-btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:#25D366;color:#fff;font-weight:700;border-radius:8px;
  padding:13px 16px;font-size:14px;text-decoration:none;
  margin-top:8px;transition:background .2s;
  box-shadow:0 2px 8px rgba(37,211,102,.3);
}
.pkg-wa-btn:hover{background:#1ea855;}
.pkg-wa-btn i{font-size:16px;}
