:root {
  --ink: #152036;
  --muted: #647083;
  --line: #dde4ec;
  --panel: #ffffff;
  --soft: #f4f7fb;
  --navy: #10243e;
  --blue: #1768ac;
  --blue-dark: #0d4f88;
  --green: #11a66a;
  --orange: #f08a24;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 36, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.inner-hero {
  padding: 88px 0 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 36, 62, 0.97), rgba(13, 79, 136, 0.85)),
    var(--crumb-image) center/cover;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 46px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb strong {
  color: var(--orange);
}

.breadcrumb i {
  font-size: 0.7rem;
  opacity: 0.72;
}

.breadcrumb-image {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(16, 36, 62, 0.18)),
    var(--crumb-image) center/cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.inner-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.inner-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.inner-hero .hero-actions {
  margin: 26px 0 0;
}

.inner-layout,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 34px;
}

.content-panel,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 36, 62, 0.08);
}

.content-panel {
  padding: clamp(24px, 4vw, 48px);
}

.content-panel h2 {
  margin-top: 30px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.content-panel h2:first-of-type {
  margin-top: 0;
}

.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.5rem;
}

.side-panel {
  position: sticky;
  top: 140px;
  padding: 26px;
}

.side-panel h3:not(:first-child) {
  margin-top: 28px;
}

.side-links {
  display: grid;
  gap: 0;
}

.side-links a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.blog-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 36, 62, 0.07);
}

.info-card i {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 1.5rem;
}

.narrow {
  max-width: 900px;
}

.step-list {
  display: grid;
  gap: 18px;
}

.step-detail {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-detail span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.step-detail p {
  margin-bottom: 0;
}

.tracking-form,
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.tracking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.tracking-form input,
.tracking-form textarea,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.notice {
  padding: 14px;
  border-left: 3px solid var(--orange);
  background: var(--soft);
  font-size: 0.9rem;
}

.inner-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card span,
.article-meta {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card a,
.blog-section article a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.article-content>p {
  font-size: 1.04rem;
  line-height: 1.8;
}

.article-featured-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 28px;
  box-shadow: 0 14px 34px rgba(16, 36, 62, 0.12);
}

.article-cta {
  margin-top: 32px;
  padding: 26px;
  border-left: 4px solid var(--blue);
  background: var(--soft);
}

.site-footer {
  padding: 60px 0 22px;
  background: var(--navy);
  color: var(--white);
}

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

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: var(--white);
}

.site-footer>.footer-grid>div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

@media (max-width: 900px) {

  .inner-layout,
  .inner-hero-grid,
  .contact-page-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb-image {
    min-height: 240px;
  }

  .info-grid,
  .inner-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .inner-hero {
    padding: 62px 0 56px;
  }

  .breadcrumb-image {
    min-height: 200px;
  }

  .breadcrumb {
    font-size: 0.78rem;
  }

  .info-grid,
  .inner-blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 36, 62, 0.08);
}

.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.86rem;
}

.top-bar-inner {
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-bar a,
.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.main-nav {
  background: var(--white);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.1rem;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(23, 104, 172, 0.22);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 36, 62, 0.93) 0%, rgba(16, 36, 62, 0.76) 48%, rgba(16, 36, 62, 0.30) 100%),
    linear-gradient(0deg, rgba(16, 36, 62, 0.28), rgba(16, 36, 62, 0.28));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 38px;
  padding: 46px 0;
}

.hero-content {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin: 16px 0 14px;
  color: var(--white);
  font-size: clamp(2.05rem, 4.2vw, 3.95rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 820px;
}

.trust-logo {
  min-width: 112px;
  min-height: 58px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.trust-logo strong,
.trust-logo small {
  display: block;
  line-height: 1.05;
}

.trust-logo strong {
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0;
}

.trust-logo small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
}

.iata-logo {
  background: rgba(23, 104, 172, 0.58);
}

.mto-logo {
  background: rgba(17, 166, 106, 0.50);
}

.iso-logo {
  background: rgba(240, 138, 36, 0.42);
}

.quote-card {
  padding: 24px;
  border: 1px solid rgba(221, 228, 236, 0.88);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-form h2 {
  margin-bottom: 14px;
  font-size: 1.38rem;
}

.form-kicker {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
}

.hero-form input,
.hero-form select {
  min-height: 44px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(23, 104, 172, 0.22);
  border-color: var(--blue);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.stats-band {
  background: var(--navy);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stats-grid div {
  min-height: 128px;
  padding: 26px 22px;
  background: var(--navy);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p {
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.process-card,
.blog-grid article,
.map-card,
.office-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card {
  min-height: 254px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(23, 104, 172, 0.10);
  color: var(--blue);
  font-size: 1.15rem;
}

.service-card p {
  margin-bottom: 20px;
}

.service-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.accent-card {
  background: var(--navy);
  color: var(--white);
}

.accent-card p {
  color: rgba(255, 255, 255, 0.76);
}

.accent-card i {
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange);
}

.accent-card a {
  color: var(--white);
}

.image-section {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.split-image {
  min-height: 520px;
  border-radius: 8px;
  background-image: url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1200&q=85");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.check-list i {
  color: var(--green);
  margin-top: 4px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  padding: 22px;
  min-height: 220px;
}

.process-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-grid article {
  padding: 22px;
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(16, 36, 62, 0.94), rgba(16, 36, 62, 0.84)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 38px;
  align-items: center;
}

.quote-copy,
.quote-copy h2 {
  color: var(--white);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.contact-box {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-box a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
}

.detailed-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detailed-form textarea,
.detailed-form button {
  grid-column: 1 / -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
}

.office-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.office-list div,
.map-card {
  padding: 22px;
}

.office-list p,
.map-card p {
  margin-bottom: 0;
}

.map-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1526470608268-f674ce90ebd4?auto=format&fit=crop&w=900&q=80") center/cover;
  box-shadow: var(--shadow);
}

.map-card .btn {
  margin-top: 24px;
}

.site-footer {
  background: #0b1728;
  color: var(--white);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand .brand-mark {
  background: var(--blue);
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .brand small {
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-bottom a {
  margin: 0;
}

@media (max-width: 1060px) {

  .hero-grid,
  .quote-layout,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-form {
    max-width: 620px;
  }

  .service-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .top-bar-inner {
    justify-content: center;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 118px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .top-bar {
    display: none;
  }

  .nav-inner {
    min-height: 72px;
  }

  .nav-links {
    top: 84px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero-grid {
    padding: 44px 0;
  }

  h1 {
    font-size: 2.15rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .service-grid,
  .blog-grid,
  .process-grid,
  .stats-grid,
  .footer-grid,
  .detailed-form .form-grid {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 320px;
  }

  .quote-card {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* ===== SERVICES DROPDOWN ===== */

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
}

.dropbtn i {
  font-size: 12px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 340px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 99999;
  padding: 12px 0;
  max-height: 450px;
  overflow-y: auto;
}

.dropdown-content a {
  display: block;
  padding: 12px 22px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s ease;
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:hover {
  background: #f4f8fc;
  color: #0a58ca;
  padding-left: 28px;
}

/* Hover Show */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Scrollbar */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 20px;
}

/* Mobile Responsive */
@media(max-width:991px) {

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    max-height: unset;
    display: none;
    background: #f9f9f9;
  }

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

}


/* ===== HEADER ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Desktop */
.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    border-radius: 12px;
    display: none;
    padding: 10px;
    z-index: 99;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #222;
    border-radius: 8px;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

/* ===== MOBILE ===== */
/* ======================
   DESKTOP MENU
====================== */

.menu-toggle{
    display:none;
}

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

/* desktop dropdown */
.dropdown{
    position:relative;
}

.dropdown-content{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    width:280px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    display:none;
    z-index:99;
    padding:10px;
}

.dropdown:hover .dropdown-content{
    display:block;
}

.dropdown-content a{
    display:block;
    padding:12px;
    color:#222;
    text-decoration:none;
    border-radius:8px;
}

.dropdown-content a:hover{
    background:#f5f5f5;
}


/* ======================
   MOBILE MENU
====================== */

@media(max-width:991px){

    .top-bar{
        display:none;
    }

    .menu-toggle{
        display:block;
        border:none;
        background:none;
        font-size:22px;
        cursor:pointer;
    }

    .nav-cta{
        display:none;
    }

    .nav-links{
        position:fixed;
        top:70px;
        left:-100%;
        width:85%;
        height:calc(100vh - 70px);
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        overflow-y:auto;
        transition:0.3s ease;
        z-index:9999;
        box-shadow:0 0 20px rgba(0,0,0,0.12);
        padding:10px 0;
    }

    .nav-links.show-menu{
        left:0;
    }

    .nav-links > a,
    .dropbtn{
        width:100%;
        padding:15px 20px;
        border-bottom:1px solid #eee;
        text-decoration:none;
        color:#222;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    /* SERVICES DROPDOWN */
    .dropdown{
        width:100%;
    }

    .dropdown-content{
        position:static;
        display:none;
        width:100%;
        box-shadow:none;
        background:#f8f8f8;
        border-radius:0;
        padding:0;
        max-height:250px;
        overflow-y:auto;
    }

    .dropdown.open .dropdown-content{
        display:block;
    }

    .dropdown-content a{
        padding:14px 25px;
        border-bottom:1px solid #e8e8e8;
        font-size:14px;
        border-radius:0;
    }
}