/* =========================================================
   ARK Travels — Custom Stylesheet
   Fonts: Inter (headings/UI) + Roboto (body)
   ========================================================= */

:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --accent: #ff7a18;
  --accent-dark: #e8650a;
  --dark: #0b1f3a;
  --dark-2: #11294b;
  --light: #f5f8fc;
  --muted: #6b7a90;
  --white: #ffffff;
  --border: #e6edf5;
  --shadow-sm: 0 .25rem .75rem rgba(13,31,58,.08);
  --shadow-md: 0 .75rem 2rem rgba(13,31,58,.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: 'Inter', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 .6rem;
}

a { text-decoration: none; color: var(--primary); transition: .2s; }
a:hover { color: var(--primary-dark); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

:is(.elementor-section-wrap,[data-elementor-id]) > .e-con {
  margin: 0;
  padding: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13,110,253,.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,122,24,.28);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-outline-dark {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--dark);
  color: #c9d6e8;
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.topbar a { color: #c9d6e8; }
.topbar a:hover { color: #fff; }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.topbar i { color: var(--accent); margin-right: .35rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
}
.brand .logo-box {
  width: auto; height: 80px;
  display: flex;
  align-items: center;
}
.brand .logo-box img {
  height: 80px;
  width: auto;
  border-radius: 8px;
}
.brand span.text-accent { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: .6rem 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--dark);
  border-radius: 8px;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--primary); background: var(--light); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
  list-style: none;
  margin: 0;
  display: block;
}
.nav-menu > li:hover .dropdown-menu,
.nav-menu > li.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
.nav-menu > li > a .bi-chevron-down { transition: transform .2s ease; pointer-events: none; }
.nav-menu > li.show > a .bi-chevron-down { transform: rotate(180deg); }
.dropdown-menu a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 8px;
  color: var(--dark);
  font-size: .9rem;
}
.dropdown-menu a:hover { background: var(--light); color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(11,31,58,.85), rgba(13,110,253,.55)),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: #f8f8fb !important;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 760px;
}
.hero p {
  font-size: 1.15rem;
  max-width: 620px;
  color: #e6eefb;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.hero-stats .stat-label { font-size: .85rem; color: #cfe0f7; }

/* ---------- Section ---------- */
section { padding: 80px 0; }
.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: .8rem;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

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

/* ---------- Service Cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,110,253,.06), rgba(255,122,24,.06));
  opacity: 0;
  transition: .3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  margin-bottom: 1.2rem;
  position: relative;
}
.service-card.accent .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.service-card h3 { font-size: 1.25rem; position: relative; }
.service-card p { color: var(--muted); position: relative; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-weight: 600; margin-top: .8rem;
  position: relative;
}

/* ---------- Destination Cards ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
}
.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: .3s ease;
  border: 1px solid var(--border);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.dest-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.dest-img .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(11,31,58,.8);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 50px;
  font-family: var(--font-head);
}
.dest-body { padding: 1.3rem 1.4rem 1.6rem; }
.dest-body .meta { font-size: .82rem; color: var(--muted); margin-bottom: .4rem; }
.dest-body h3 { font-size: 1.2rem; }
.dest-body p { color: var(--muted); font-size: .95rem; min-height: 48px; }

/* ---------- Why Us ---------- */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.6rem; }
.feature {
  display: flex; gap: 1rem; align-items: flex-start;
}
.feature .fi {
  flex: 0 0 48px; height: 48px;
  border-radius: 12px;
  background: var(--light);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.feature h4 { font-size: 1.05rem; margin-bottom: .2rem; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(120deg, var(--dark), var(--dark-2));
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta h2 { color: #fff; margin-bottom: .3rem; }
.cta p { color: #cfe0f7; margin: 0; }

/* ---------- Page Header ---------- */
.page-header {
  background:
    linear-gradient(120deg, rgba(11,31,58,.9), rgba(13,110,253,.65)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fff;
  padding: 70px 0 80px;
  text-align: center;
}
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-header .breadcrumb {
  display: flex; justify-content: center; gap: .5rem;
  list-style: none; padding: 0; margin: .8rem 0 0;
  font-size: .85rem; color: #cfe0f7;
}
.page-header .breadcrumb a { color: #fff; }
.page-header .breadcrumb li::after { content: "/"; margin-left: .5rem; }
.page-header .breadcrumb li:last-child::after { content: ""; }

/* ---------- About ---------- */
.about-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.about-img {
  height: 420px;
  border-radius: var(--radius);
  background: url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=900&q=80') center/cover;
  position: relative;
}
.about-img .float-card {
  position: absolute;
  bottom: -20px; left: -20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 700;
}
.about-img .float-card span { display: block; font-size: .8rem; color: var(--muted); font-weight: 500; }

/* ---------- Visa / Pricing ---------- */
.visa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 1.8rem; }
.visa-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.visa-card .vc-head {
  background: linear-gradient(135deg, var(--primary), var(--dark-2));
  color: #fff;
  padding: 1.5rem 1.6rem;
}
.visa-card .vc-head h3 { color: #fff; margin: 0; }
.visa-card .vc-head .vt { font-size: .82rem; color: #cfe0f7; }
.visa-card .vc-body { padding: 1.6rem; }
.visa-card h4 {
  font-size: .95rem; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 1.2rem;
}
.visa-card ul { margin: .5rem 0 0; padding-left: 1.1rem; color: var(--muted); font-size: .92rem; }
.visa-card ul li { margin-bottom: .4rem; }
.visa-fee {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.visa-fee .fee { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--dark); }
.visa-note { font-size: .85rem; color: var(--muted); margin-top: .6rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.step { text-align: center; position: relative; }
.step .num {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.step h4 { font-size: 1.05rem; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-info { display: grid; gap: 1.2rem; }
.ci-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--light);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-sm);
}
.ci-item .ci-ic {
  flex: 0 0 46px; height: 46px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem;
}
.ci-item h4 { margin: 0 0 .15rem; font-size: 1rem; }
.ci-item p { margin: 0; color: var(--muted); font-size: .92rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: #b9c6da;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1.2rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer p { font-size: .92rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .6rem; }
.footer ul li i { margin-right: .5rem; }
.footer ul li a { color: #b9c6da; font-size: .92rem; }
.footer ul li a:hover { color: #fff; padding-left: 4px; }
.footer .social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer .social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; font-size: 1rem;
}
.footer .social a:hover { background: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}
.footer-bottom a { color: #b9c6da; }

/* ---------- Back to top ---------- */
#toTop {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 1100;
}
#toTop.show { display: grid; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* Offcanvas menu */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,31,58,.5);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 1090;
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }

  .nav-menu {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem 1rem;
    box-shadow: var(--shadow-md);
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 1100;
    overflow-y: auto;
    display: flex;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-close .nc-brand {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
  }
  .nav-close .nc-btn {
    background: var(--light);
    border: none;
    width: 38px; height: 38px;
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--dark);
    cursor: pointer;
  }
  .nav-close .nc-btn:hover { background: var(--primary); color: #fff; }

  .nav-menu > li > a { padding: .8rem 1rem; display: flex; justify-content: space-between; align-items: center; }
  .dropdown-menu {
    position: static;
    display: block;
    max-height: 0;
    opacity: 0; visibility: hidden; transform: none;
    overflow: hidden;
    box-shadow: none; border: none; padding-left: 1rem;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .nav-menu > li.show .dropdown-menu {
    max-height: 400px;
    opacity: 1; visibility: visible;
    display: block;
  }
  .topbar { font-size: .75rem; }
  .topbar .container { justify-content: center; text-align: center; }
  .hero { padding: 80px 0 100px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; text-align: center; }
}

/* Hide offcanvas-only elements on desktop */
.nav-overlay,
.nav-close { display: none; }
@media (min-width: 769px) {
  .nav-overlay, .nav-close { display: none !important; }
}

@media (max-width: 480px) {
  section { padding: 55px 0; }
  .hero-stats { gap: 1.5rem; }
}
