/* ==========================================================================
   SHUKRIYA TRAVELS - LAYOUT & STRUCTURE
   Header, Navigation, Hero Canvas, Footers & Mobile Sticky Bar
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.section-sm {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section-muted {
  background-color: var(--surface-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-dark {
  background: linear-gradient(155deg, var(--brand-950) 0%, var(--brand-900) 100%);
  color: var(--white);
}

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

.section-dark .section-subtitle {
  color: #cbd5e1;
}

/* ==========================================================================
   1. TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background-color: var(--brand-950);
  color: #cbd5e1;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
}

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

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

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  stroke: var(--accent-400);
}

.top-bar-item a {
  color: inherit;
  transition: color var(--transition-fast);
}

.top-bar-item a:hover {
  color: var(--white);
}

.top-badge {
  background: rgba(52, 211, 153, 0.18);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--accent-300);
  padding: 1px 7px;
  border-radius: var(--radius-xs);
  font-size: 0.8125rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .top-bar {
    display: none;
  }
}

/* ==========================================================================
   2. MAIN HEADER & FULL-SERVICE NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brand-100);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}

.brand-logo:hover,
.brand-logo:focus-visible {
  background: var(--white);
  border-color: var(--brand-100);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.14);
  transform: translateY(-1px);
}

.brand-logo img {
  height: 44px;
  width: auto;
}

/* Primary Navigation: Flights | Hotels | Holidays | Visas | Haj & Umrah | More */
.main-nav {
  display: none;
}

@media (min-width: 1080px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-800);
  background-color: var(--brand-50);
}

.nav-link:hover {
  box-shadow: inset 0 -2px 0 var(--brand-600);
}

.nav-link.active {
  color: var(--white);
  background: var(--brand-700);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Nav Dropdowns (Haj & Umrah / More Services) */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-100);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--brand-50);
  color: var(--brand-800);
}

.dropdown-item small {
  display: block;
  font-weight: normal;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn-call {
  display: none;
}

@media (min-width: 960px) {
  .header-btn-call {
    display: inline-flex;
  }
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: var(--surface-subtle);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

@media (min-width: 1080px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Slide-Over Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 360px;
  background-color: var(--white);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  background-color: var(--surface-cream);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: var(--brand-50);
  color: var(--brand-800);
}

/* ==========================================================================
   3. HERO SECTION (Clean, Inspiring Global Travel Visual)
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--brand-900);
  background: 
    radial-gradient(circle at 78% 18%, rgba(237, 138, 103, 0.5), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(30, 41, 59, 0.97) 100%),
    url('../assets/photo-1488646953014-85cb44e25828.jpg') center center / cover no-repeat;
  color: var(--white);
  padding-top: 58px;
  padding-bottom: 86px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.hero-subtext {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto 28px;
}

.hero-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.trust-pill svg {
  stroke: var(--accent-300);
}

/* ==========================================================================
   4. STICKY MOBILE BOTTOM BAR
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background-color: var(--white);
  box-shadow: 0 -3px 16px rgba(15, 23, 42, 0.1);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 6px 12px;
  z-index: 999;
}

@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 4px;
  text-align: center;
}

.mobile-bottom-btn svg {
  width: 19px;
  height: 19px;
}

.mobile-bottom-btn.btn-call-mobile {
  color: var(--brand-800);
}

.mobile-bottom-btn.btn-whatsapp-mobile {
  color: #128c7e;
}

.mobile-bottom-btn.btn-enquire-mobile {
  color: var(--accent-700);
  background-color: var(--accent-50);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   5. COMPLETE CORPORATE FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--brand-950);
  color: #94a3b8;
  padding-top: 64px;
  padding-bottom: 36px;
  border-top: 3px solid var(--brand-600);
  font-size: 0.8125rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col-brand p {
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 18px;
  color: #cbd5e1;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 6px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent-400);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-link {
  color: #94a3b8;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  stroke: var(--accent-400);
  margin-top: 3px;
}

.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #64748b;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #94a3b8;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Shared planning guide before each footer */
.seo-guide {
  position: relative;
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 32px clamp(22px, 4vw, 54px);
  background: linear-gradient(135deg, var(--brand-50), var(--white));
  border: 1px solid var(--brand-100);
  border-left: 4px solid var(--brand-700);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.seo-guide::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.seo-guide h2,
.seo-guide p,
.seo-guide .seo-links {
  position: relative;
  z-index: 1;
}

.seo-guide h2 {
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--brand-950);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.seo-guide h2::before {
  content: 'Plan with Shukriya';
  display: block;
  margin-bottom: 8px;
  color: var(--brand-700);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-guide p {
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.seo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 880px;
}

.seo-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--brand-800);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.seo-links a::after {
  content: '→';
  color: var(--accent-600);
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.seo-links a:hover {
  border-color: var(--brand-600);
  color: var(--brand-900);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.seo-links a:hover::after {
  transform: translateX(3px);
}

@media (max-width: 700px) {
  .seo-guide {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 26px 20px;
  }

  .seo-links {
    grid-template-columns: 1fr;
  }
}
