:root {
  --bg: #0b1013;
  --panel: rgba(17, 22, 27, 0.76);
  --panel-soft: rgba(24, 31, 37, 0.72);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f6f8;
  --muted: #a8b3bb;
  --accent: #efad3b;
  --accent-strong: #ffd786;
  --accent-soft: rgba(239, 173, 59, 0.18);
  --accent-glow: rgba(239, 173, 59, 0.24);
  --blue-soft: rgba(93, 155, 255, 0.18);
  --success: #73d3b5;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.46);
  --radius-xl: 0px;
  --radius-lg: 0px;
  --radius-md: 0px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; }
body, .site-shell { overflow-x: clip; }
body { width: 100%; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    linear-gradient(rgba(7, 10, 13, 0.8), rgba(7, 10, 13, 0.94)),
    radial-gradient(circle at top left, var(--accent-glow), transparent 24%),
    radial-gradient(circle at 82% 10%, var(--blue-soft), transparent 22%),
    radial-gradient(circle at bottom right, rgba(115, 211, 181, 0.1), transparent 26%),
    url("../images/5.png") center / cover fixed no-repeat,
    linear-gradient(180deg, #0d1013 0%, #14191d 100%);
  letter-spacing: -0.01em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.35;
}

body::before {
  top: 120px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: rgba(241, 171, 53, 0.18);
}

body::after {
  right: 6%;
  bottom: 10%;
  width: 220px;
  height: 220px;
  background: rgba(83, 146, 252, 0.14);
}

a { color: inherit; text-decoration: none; }
p { line-height: 1.7; }
.site-shell { min-height: 100vh; position: relative; z-index: 1; }

.info-strip {
  background: linear-gradient(90deg, rgba(241, 171, 53, 0.96), rgba(255, 205, 102, 0.92));
  color: #1f1405;
  border-bottom: 1px solid rgba(31, 20, 5, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-strip-inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 700;
  font-size: 0.98rem;
}

.info-strip a,
.info-strip span {
  color: inherit;
}

.info-strip-left,
.info-strip-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.info-strip-left a,
.info-strip-left span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.location-link i {
  margin-right: 2px;
}

.info-strip-right {
  justify-content: flex-end;
}

.info-strip-right a {
  font-weight: 800;
}

.social-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-mini:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.social-mini .fa-instagram {
  color: #7f184f;
}

.social-mini .fa-whatsapp {
  color: #147a3f;
}

.topbar, .section, .site-footer, .page-hero, .hero {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  min-height: 112px;
  padding: 0 28px;
  background:
    linear-gradient(180deg, rgba(23, 25, 28, 0.98), rgba(16, 18, 21, 0.98));
  border: 1px solid rgba(255, 194, 51, 0.18);
  border-top: 2px solid var(--accent);
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(16.5vw, 292px);
  background:
    linear-gradient(180deg, rgba(247, 247, 247, 0.98), rgba(237, 237, 237, 0.98));
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  z-index: 0;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 10px
  );
  z-index: 0;
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-right: 18px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-copy { display: grid; min-width: 0; }
.brand-copy strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #111418;
}
.brand-copy small {
  color: #4b5055;
  font-weight: 700;
}

.main-nav {
  position: relative;
  z-index: 1;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  padding: 10px 0;
  color: #f4f6f8;
  border-radius: 0;
  transition: 0.25s ease;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-strong);
  background: transparent;
  box-shadow: none;
}

.header-tools {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 18px;
}

.header-grid {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  font-size: 1.85rem;
  transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.header-grid:hover {
  color: var(--accent-strong);
  transform: translateY(-1px);
  opacity: 0.95;
}

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 0;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #19120c;
  box-shadow: 0 18px 34px rgba(239, 173, 59, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  border: 1px solid var(--line);
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.button-light { background: #fff0e2; color: #23160d; }
.button-small { padding: 11px 16px; font-size: 0.95rem; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 54px 0 34px;
  align-items: stretch;
  max-width: 1180px;
}

.hero > *,
.split-section > *,
.grid > *,
.contact-grid > *,
.profile-hero > *,
.promo-video-card > *,
.trust-panel > div {
  min-width: 0;
}

.hero-copy, .hero-card, .page-hero, .info-card, .profile-card, .contact-card,
.quote-card, .gallery-card, .feature-item, .faq-list details, .profile-meta, .profile-spotlight {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(18, 23, 28, 0.82), rgba(10, 14, 18, 0.92)),
    radial-gradient(circle at top right, rgba(255, 208, 116, 0.09), transparent 32%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: "Outfit", sans-serif;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.3rem, 4.4vw, 4.2rem); margin-bottom: 18px; }
h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
h3 { font-size: 1.35rem; margin-bottom: 10px; }

.lead, .muted { color: var(--muted); }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chips span {
  padding: 10px 14px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #dbe5eb;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
}

.hero-stats li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stats strong { display: block; font-size: 1.45rem; margin-bottom: 6px; }

.hero-card {
  border-radius: var(--radius-xl);
  padding: 16px;
  background:
    linear-gradient(rgba(10, 14, 18, 0.28), rgba(10, 14, 18, 0.82)),
    radial-gradient(circle at top, rgba(241, 171, 53, 0.24), transparent 36%),
    url("../images/7.png") center / cover no-repeat,
    linear-gradient(180deg, rgba(28, 34, 40, 0.96), rgba(18, 23, 27, 0.96));
  min-width: 0;
}

.hero-panel {
  padding: 26px;
  min-height: 100%;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(10, 13, 15, 0.52), rgba(10, 13, 15, 0.72));
}

@media (min-width: 1440px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 26px;
    max-width: 1100px;
  }
  .hero-copy {
    padding: 34px;
  }
  .hero-panel {
    padding: 24px;
  }
  h1 {
    font-size: clamp(2.1rem, 3.6vw, 3.9rem);
  }
}

.panel-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 0;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.route-list { display: grid; gap: 14px; margin: 22px 0 28px; }
.route-list div { padding: 16px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.04); }
.route-list span, .contact-grid span, .profile-meta span { display: block; color: var(--muted); font-size: 0.86rem; margin-bottom: 6px; }

.section, .inner-page { padding-bottom: 32px; }
.inner-page {
  display: grid;
  gap: 20px;
}
.inner-page > .section {
  padding-bottom: 0;
}
.page-hero + .section {
  margin-top: 8px;
}
.section-heading { max-width: 760px; margin-bottom: 24px; }
.grid { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-single { grid-template-columns: minmax(0, 540px); justify-content: center; }
.info-card, .profile-card, .quote-card, .gallery-card {
  padding: 24px;
  border-radius: 0;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  height: 100%;
}

.info-card:hover,
.quote-card:hover,
.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.info-card a { color: var(--accent-strong); font-weight: 700; }

.info-card {
  background:
    linear-gradient(180deg, rgba(18, 23, 28, 0.88), rgba(14, 18, 22, 0.94)),
    radial-gradient(circle at top right, rgba(255, 208, 116, 0.08), transparent 34%);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.feature-stack { display: grid; gap: 14px; }
.feature-item {
  padding: 20px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(28, 35, 41, 0.82), rgba(20, 25, 30, 0.88));
}
.feature-item strong { display: block; margin-bottom: 7px; }

.profile-card, .profile-spotlight { position: relative; overflow: hidden; }
.profile-card {
  background:
    linear-gradient(180deg, rgba(21, 27, 31, 0.92), rgba(17, 22, 26, 0.96)),
    url("../images/6.png") center center / cover no-repeat;
}

.profile-card::after,
.profile-spotlight::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 155, 98, 0.18), transparent 62%);
}

.profile-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 0;
  background: rgba(115, 211, 181, 0.1);
  color: var(--success);
  font-size: 0.85rem;
}

.quote-card p { font-size: 1.03rem; }
.quote-card footer { margin-top: 18px; color: var(--accent-strong); font-weight: 700; }
.quote-card {
  background: linear-gradient(180deg, rgba(18, 23, 28, 0.84), rgba(14, 18, 22, 0.96));
}

.contact-card {
  padding: 34px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(18, 23, 28, 0.84), rgba(14, 18, 22, 0.96)),
    radial-gradient(circle at top right, rgba(255, 208, 116, 0.08), transparent 34%);
}
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-grid div {
  padding: 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-safety .cards-3,
.page-services .cards-3 {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0 36px;
  color: var(--muted);
}

.site-footer nav { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero, .profile-hero { padding-top: 54px; }
.page-hero {
  padding-bottom: 14px;
  border-radius: 0;
  padding: 30px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(10, 13, 15, 0.88), rgba(10, 13, 15, 0.42)),
    linear-gradient(180deg, rgba(223, 155, 98, 0.08), rgba(14, 18, 22, 0.5));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  margin-top: 6px;
}

.page-services .page-hero {
  min-height: 180px;
  padding: 26px 30px;
}

.page-services .page-hero,
.page-gallery .page-hero,
.page-faq .page-hero {
  background:
    linear-gradient(90deg, rgba(10, 13, 15, 0.88), rgba(10, 13, 15, 0.42)),
    url("../images/3.png") center 38% / cover no-repeat;
}

.page-airport .page-hero,
.page-city .page-hero,
.page-safety .page-hero {
  background:
    linear-gradient(90deg, rgba(10, 13, 15, 0.88), rgba(10, 13, 15, 0.42)),
    url("../images/4.png") center center / cover no-repeat;
}

.profile-hero {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.profile-spotlight, .profile-meta { padding: 28px; border-radius: 0; }
.profile-spotlight {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(10, 13, 15, 0.8), rgba(10, 13, 15, 0.35)),
    linear-gradient(180deg, rgba(223, 155, 98, 0.08), rgba(14, 18, 22, 0.35));
}

.page-nihat .profile-spotlight {
  background:
    linear-gradient(90deg, rgba(10, 13, 15, 0.8), rgba(10, 13, 15, 0.35)),
    url("../images/1.png") center center / cover no-repeat;
}

.profile-meta { display: grid; gap: 16px; }

.mini-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.mini-list li::before { content: "+ "; color: var(--accent-strong); }
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 22px 24px; border-radius: 0; }
.faq-list summary { cursor: pointer; font-weight: 800; font-family: "Outfit", sans-serif; }
.faq-list p { margin-bottom: 0; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  min-height: 100%;
  padding: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 19, 0.96), rgba(9, 12, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-media {
  width: 100%;
  height: 250px;
  display: block;
  flex: 0 0 auto;
  border-radius: 0;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  background: #0b0e11;
}

.gallery-copy {
  padding: 18px 20px 22px;
  display: grid;
  gap: 4px;
}

.gallery-card span {
  color: #aeb8bf;
  display: block;
  font-size: 0.95rem;
}

.gallery-card strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.35;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}
.desktop-cta { white-space: nowrap; }
.desktop-cta {
  position: relative;
  z-index: 1;
  gap: 10px;
  padding: 0 26px;
  min-width: 138px;
  min-height: 56px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  background: linear-gradient(135deg, #f5ba18, #e6a300);
  color: #18120b;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: none;
}

.desktop-cta i {
  font-size: 0.95rem;
}

.desktop-cta span {
  display: inline-block;
  transform: translateY(1px);
}

.floating-actions {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-action {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7f2ea;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.floating-action:hover {
  transform: translateX(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}

.action-call,
.action-whatsapp,
.action-instagram {
  font-size: 0;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.action-call {
  background-image: url("../images/ara.png");
}

.action-whatsapp {
  background-image: url("../images/whatshapp.png");
}

.action-instagram {
  background-image: url("../images/instagram.png");
}

.action-top {
  background: linear-gradient(135deg, rgba(27, 33, 37, 0.96), rgba(12, 15, 18, 0.96));
  font-size: 1.2rem;
}

.promo-video-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  padding: 28px;
  border-radius: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(15, 19, 22, 0.88), rgba(15, 19, 22, 0.96)),
    radial-gradient(circle at top right, rgba(255, 208, 116, 0.08), transparent 34%);
  box-shadow: var(--shadow);
  align-items: center;
}

.promo-copy {
  max-width: 440px;
}

.video-frame {
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #090b0d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.video-frame video {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 23, 28, 0.82), rgba(14, 18, 22, 0.92));
  box-shadow: var(--shadow);
}

.trust-panel > div {
  padding: 18px 20px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-panel strong {
  display: block;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .info-strip {
    display: none;
  }
  .hero, .split-section, .profile-hero, .cards-3, .gallery-grid, .cards-2, .contact-grid, .promo-video-card, .trust-panel { grid-template-columns: 1fr; }
  body {
    background:
      linear-gradient(rgba(12, 15, 18, 0.84), rgba(12, 15, 18, 0.95)),
      radial-gradient(circle at top left, rgba(223, 155, 98, 0.18), transparent 28%),
      radial-gradient(circle at bottom right, rgba(115, 211, 181, 0.1), transparent 26%),
      url("../images/5.png") center / cover no-repeat,
      linear-gradient(180deg, #0d1013 0%, #14191d 100%);
  }
  .topbar {
    position: relative;
    flex-wrap: wrap;
    min-height: auto;
    gap: 12px;
    padding: 18px 16px 16px;
    top: 0;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(18, 21, 24, 0.98), rgba(12, 15, 18, 0.98));
  }
  .topbar::before {
    display: none;
  }
  .topbar,
  .page-hero,
  .hero,
  .section,
  .site-footer,
  .profile-hero {
    width: min(calc(100% - 24px), var(--container));
  }
  .hero-copy,
  .hero-card {
    border-radius: 0;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    padding: 10px 14px;
    border-radius: 0;
    border: 1px solid rgba(255, 194, 51, 0.18);
    color: #f4f6f8;
    background: rgba(20, 22, 26, 0.9);
    font: inherit;
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 44px;
  }
  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    clear: both;
    background: rgba(10, 13, 16, 0.9);
    padding-bottom: 2px;
    max-width: 100%;
  }
  .main-nav.open { display: flex; gap: 4px; }
  .main-nav a {
    padding: 11px 12px;
    background: rgba(255, 255, 255, 0.035);
    border-radius: 0;
    font-size: 0.92rem;
    min-height: 46px;
    display: flex;
    align-items: center;
    overflow-wrap: anywhere;
  }
  .header-tools {
    display: none;
  }
  .floating-actions {
    right: 12px;
    bottom: 14px;
    top: auto;
    transform: none;
    grid-auto-flow: column;
  }
  .info-strip-inner {
    width: min(calc(100% - 24px), var(--container));
    min-height: auto;
    padding: 12px 0 14px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
  }
  .info-strip-left,
  .info-strip-right {
    width: 100%;
    gap: 8px;
    justify-content: flex-start;
  }
  .info-strip-left {
    display: grid;
    gap: 8px;
  }
  .info-strip-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .info-strip-left a,
  .info-strip-left span,
  .info-strip-right a,
  .info-strip-right span {
    max-width: 100%;
  }
  .info-strip-left a {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
  }
  .info-strip-left a i,
  .info-strip-right > span {
    flex: 0 0 auto;
  }
  .info-strip-left a span,
  .location-link span {
    overflow-wrap: anywhere;
  }
  .info-strip-right {
    justify-content: flex-start;
  }
  .page-hero {
    min-height: 220px;
  }
  .section,
  .site-footer {
    padding-bottom: 26px;
  }
}

@media (max-width: 640px) {
  .topbar, .section, .site-footer, .page-hero, .hero, .profile-hero {
    width: min(calc(100% - 20px), var(--container));
  }
  body {
    padding-bottom: 88px;
  }
  .info-strip-inner {
    width: min(calc(100% - 20px), var(--container));
    min-height: auto;
    padding: 10px 0 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.92rem;
  }
  .info-strip-left,
  .info-strip-right {
    gap: 8px;
  }
  .info-strip-left {
    display: grid;
    gap: 8px;
  }
  .info-strip-left a {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
    column-gap: 10px;
  }
  .info-strip-left a i {
    margin-top: 3px;
  }
  .info-strip-left a span {
    line-height: 1.45;
  }
  .info-strip-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .info-strip-right > span {
    margin-right: 2px;
    font-weight: 800;
  }
  .social-mini {
    font-size: 1.45rem;
  }
  .brand {
    flex: 1 1 auto;
    width: min(100%, calc(100% - 88px));
    max-width: calc(100% - 88px);
    align-items: center;
    padding-right: 0;
  }
  .brand-mark {
    width: 50px;
    height: 50px;
  }
  .brand-copy strong {
    font-size: 0.9rem;
    white-space: normal;
    line-height: 1.15;
    overflow-wrap: anywhere;
    color: #f4f6f8;
  }
  .brand-copy small {
    font-size: 0.76rem;
    line-height: 1.3;
    color: var(--muted);
  }
  .topbar {
    padding: 12px;
    gap: 10px;
    border-radius: 0;
  }
  .menu-toggle {
    align-self: stretch;
    padding: 9px 12px;
    font-size: 0.92rem;
    min-width: 72px;
    justify-content: center;
    min-height: 46px;
  }
  .main-nav {
    gap: 4px;
    padding-top: 10px;
  }
  .main-nav a {
    padding: 10px 12px;
    font-size: 0.88rem;
    line-height: 1.2;
  }
  .hero {
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .inner-page {
    gap: 14px;
  }
  .section-heading {
    margin-bottom: 18px;
  }
  .hero-chips {
    gap: 8px;
    margin-top: 16px;
  }
  .hero-chips span {
    width: 100%;
    text-align: center;
    padding: 9px 12px;
    font-size: 0.86rem;
  }
  .hero-copy, .hero-card, .contact-card, .page-hero, .info-card, .profile-card,
  .quote-card, .gallery-card, .profile-meta, .profile-spotlight { padding: 22px; }
  .promo-video-card { padding: 18px; }
  .trust-panel { padding: 12px; }
  .hero-copy {
    padding: 24px 20px;
  }
  .hero-card {
    padding: 10px;
  }
  .hero-panel {
    padding: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 18px;
  }
  .hero-actions .button,
  .hero-actions .button-ghost {
    width: 100%;
  }
  .floating-action {
    width: 48px;
    height: 48px;
    border-radius: 0;
    font-size: 0.82rem;
  }
  .action-call,
  .action-whatsapp,
  .action-instagram {
    background-size: cover;
  }
  .floating-actions {
    width: calc(100% - 24px);
    max-width: 320px;
    left: 50%;
    right: auto;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 0;
    background: rgba(12, 15, 18, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  }
  .floating-action {
    flex: 1 1 0;
    max-width: 52px;
  }
  h1 {
    font-size: 1.58rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }
  h2 { font-size: 1.38rem; line-height: 1.12; }
  h3 { font-size: 1.12rem; }
  p,
  .lead,
  .muted {
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats li {
    padding: 14px 16px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 160px;
    padding: 20px;
    margin-top: 4px;
  }
  .page-services .page-hero {
    min-height: 140px;
    padding: 20px;
  }
  .grid {
    gap: 16px;
  }
  .gallery-media {
    height: 200px;
  }
  .gallery-copy {
    padding: 16px 18px 18px;
  }
  .route-list {
    margin: 18px 0 22px;
  }
  .route-list div,
  .contact-grid div,
  .hero-stats li,
  .feature-item,
  .trust-panel > div {
    padding: 14px;
  }
  .promo-video-card {
    gap: 16px;
  }
  .video-frame video {
    max-height: 300px;
  }
  .profile-hero {
    gap: 14px;
  }
  .profile-spotlight {
    min-height: 300px;
  }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .topbar,
  .section,
  .site-footer,
  .page-hero,
  .hero,
  .profile-hero {
    width: min(calc(100% - 16px), var(--container));
  }
  .topbar {
    padding: 10px 10px 12px;
  }
  .brand {
    max-width: calc(100% - 74px);
    gap: 10px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
  }
  .brand-copy strong {
    font-size: 0.84rem;
    color: #f4f6f8;
  }
  .brand-copy small {
    font-size: 0.72rem;
    color: var(--muted);
  }
  .menu-toggle {
    min-width: 64px;
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  .hero-copy, .hero-card, .contact-card, .page-hero, .info-card, .profile-card,
  .quote-card, .gallery-card, .profile-meta, .profile-spotlight {
    padding: 18px;
  }
  .hero-copy {
    padding: 20px 18px;
  }
  .hero-panel {
    padding: 18px;
  }
  h1 {
    font-size: 1.38rem;
    line-height: 1.12;
  }
  h2 {
    font-size: 1.22rem;
  }
  p,
  .lead,
  .muted {
    font-size: 0.94rem;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-chips span,
  .hero-actions .button,
  .hero-actions .button-ghost,
  .button,
  .button-ghost {
    min-height: 44px;
  }
  .floating-actions {
    width: calc(100% - 16px);
    bottom: 8px;
    gap: 6px;
    padding: 6px;
  }
  .floating-action {
    height: 44px;
    max-width: 46px;
  }
  .gallery-media {
    height: 180px;
  }
}
