/* ==========================================================================
   TRAVELNET MOSS — LUXURY EDITORIAL DESIGN SYSTEM
   Inspired by Luxury Travel Reference
   Primary Color: #ef5c01
   ========================================================================== */

:root {
  /* Color Palette */
  --bg: #070709;
  --bg2: #0e0e13;
  --surface: #121217;
  --surface-2: #18181f;
  --surface-glass: rgba(255, 255, 255, 0.028);
  --surface-card: rgba(18, 18, 24, 0.72);
  
  --line: rgba(255, 255, 255, 0.075);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-glow: rgba(239, 92, 1, 0.35);

  --ink: #fcfbfa;
  --ink-secondary: #e2e1e7;
  --muted: #a6a5ad;
  --faint: #6e6d77;

  /* Primary Orange System */
  --primary: #ef5c01;
  --orange: #ef5c01;
  --orange-2: #ff7524;
  --orange-deep: #c44801;
  --orange-glow: rgba(239, 92, 1, 0.35);
  --orange-tint: rgba(239, 92, 1, 0.12);
  --orange-border: rgba(239, 92, 1, 0.32);

  --grad: linear-gradient(
    135deg,
    var(--orange-2) 0%,
    var(--orange) 55%,
    var(--orange-deep) 100%
  );

  /* Typography */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Geometry */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
}

/* ── Base Reset ─────────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

::selection {
  background: rgba(239, 92, 1, 0.35);
  color: #ffffff;
}

/* ── Container Layout ────────────────────────────────────────────────────── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Section Header Typography */
.section-h {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-h.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 14px;
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-2));
  opacity: 0.6;
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--orange-2), transparent);
}

.section-h h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.18;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-h p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ── Buttons (Custom UI Component System) ─────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: fit-content;
  box-sizing: border-box;

  height: 48px;
  padding: 2px;

  border: 0;
  border-radius: 18px;
  text-decoration: none;
  cursor: pointer;

  transition: all 0.3s ease;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  filter: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.btn .spinnerBorder {
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-left: none;
  border-top: none;
  animation: btnSpin 1s linear infinite;
}

@keyframes btnSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;

  width: 100%;
  height: 100%;
  padding: 0 24px;

  border-radius: 16px;

  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  font-family: var(--sans);

  transition: inherit;
}

.btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.fullWidth,
.btn.fullWidth {
  width: 100%;
}

.rightIcon > span {
  gap: 6px;
}

/* Primary Variant (linear-gradient outer + inner) */
.primary,
.btn-grad {
  background: linear-gradient(100.39deg, #FD6100 0.03%, #AD3400 99.98%);
  color: #fff;
}

.primary > span,
.btn-grad > span {
  color: #fff;
  background: linear-gradient(100.39deg, #EF5C01 0.03%, #982E00 99.98%);
}

.primary:hover:not(:disabled),
.btn-grad:hover:not(:disabled) {
  filter: brightness(1.08);
  box-shadow: 0 0 20px rgba(239, 92, 1, 0.4);
}

.primary:hover:not(:disabled) svg,
.btn-grad:hover:not(:disabled) svg {
  transform: translateX(3px);
}

.primary:active:not(:disabled),
.btn-grad:active:not(:disabled) {
  transform: scale(0.95);
}

/* Secondary Variant */
.secondary,
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.secondary > span,
.btn-secondary > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.secondary:hover:not(:disabled),
.btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.25);
}

.secondary:hover:not(:disabled) > span,
.btn-secondary:hover:not(:disabled) > span {
  background: rgba(255, 255, 255, 0.15);
}

.secondary:active:not(:disabled),
.btn-secondary:active:not(:disabled) {
  transform: scale(0.95);
}

/* Outline Variants */
.outline,
.outlinePrimary,
.outlineSecondary,
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  color: #ffffff;
}

.outline > span,
.outlinePrimary > span,
.outlineSecondary > span,
.btn-outline > span {
  background: transparent;
  color: #ffffff;
  border-radius: 16px;
}

.outline:hover:not(:disabled),
.outlinePrimary:hover:not(:disabled),
.outlineSecondary:hover:not(:disabled),
.btn-outline:hover:not(:disabled) {
  filter: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.outline:hover:not(:disabled) > span,
.outlinePrimary:hover:not(:disabled) > span,
.outlineSecondary:hover:not(:disabled) > span,
.btn-outline:hover:not(:disabled) > span {
  background: transparent;
  color: #ffffff;
}

.outline:active:not(:disabled),
.outlinePrimary:active:not(:disabled),
.outlineSecondary:active:not(:disabled),
.btn-outline:active:not(:disabled) {
  transform: scale(0.95);
}

/* Filter Area / Compact Size (sm) */
.filterArea,
.sm,
.btn-sm {
  height: 40px;
  border-radius: 14px;
}

.filterArea > span,
.sm > span,
.btn-sm > span {
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
}

.filterArea.outline,
.sm.outline,
.btn-sm.outline,
.filterArea.btn-outline,
.sm.btn-outline,
.btn-sm.btn-outline {
  border-radius: 14px;
}

.filterArea.outline > span,
.sm.outline > span,
.btn-sm.outline > span,
.filterArea.btn-outline > span,
.sm.btn-outline > span,
.btn-sm.btn-outline > span {
  border-radius: 12px;
}

/* Large Size (lg) */
.lg,
.btn-lg {
  height: 52px;
  border-radius: 20px;
}

.lg > span,
.btn-lg > span {
  padding: 0 28px;
  border-radius: 18px;
  font-size: 16px;
}

/* Clear Variant */
.clear,
.btn-clear {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.clear > span,
.btn-clear > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #ffffff;
  background: transparent;
  transition: inherit;
}

.clear:hover:not(:disabled),
.btn-clear:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .filterArea,
  .sm,
  .btn-sm {
    border-radius: 8px;
  }
  .filterArea > span,
  .sm > span,
  .btn-sm > span {
    border-radius: 4px;
  }
}

/* ── Topbar ─────────────────────────────────────────────────────────────── */
.topbar {
  background: rgba(10, 10, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12.5px;
  color: var(--muted);
  position: relative;
  z-index: 100;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar a {
  color: var(--muted);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a:hover {
  color: var(--orange-2);
}

.topbar .tleft {
  display: flex;
  gap: 24px;
}

.topbar .tleft svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.topbar .tsoc {
  display: flex;
  gap: 18px;
}

/* ── Header / Navbar ────────────────────────────────────────────────────── */
header.site {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(7, 7, 9, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 36px;
  width: auto;
  max-width: 150px;
  display: block;
  object-fit: contain;
}

nav.main {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 26px;
  border-radius: var(--radius-pill);
}

nav.main a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
  letter-spacing: 0.01em;
}

nav.main a:hover {
  color: #ffffff;
}

.hd-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hd-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-secondary);
}

.hd-phone svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.hd-phone b {
  font-weight: 600;
}

/* ── Hero Section ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
  background: var(--bg);
}

/* Atmospheric Glow Background matching reference image */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 50% -12%, rgba(239, 92, 1, 0.2), transparent 70%),
    radial-gradient(800px 480px at 85% 20%, rgba(255, 117, 36, 0.08), transparent 60%),
    radial-gradient(600px 400px at 15% 90%, rgba(239, 92, 1, 0.06), transparent 60%),
    linear-gradient(180deg, #070709 0%, #0d0d12 50%, #070709 100%);
  z-index: 0;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.015) 0 1px,
    transparent 1px 90px
  );
  mask-image: radial-gradient(900px 500px at 50% 30%, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.wing {
  position: absolute;
  right: -8%;
  top: 4%;
  width: 680px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.hero-in {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 92, 1, 0.14);
  border: 1.5px solid rgba(239, 92, 1, 0.4);
  color: var(--orange-2);
  font-size: clamp(13.5px, 2vw, 15.5px);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
  box-shadow: 0 4px 18px rgba(239, 92, 1, 0.12);
}

.badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 66px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 880px;
}

.hero .lead {
  font-size: clamp(16px, 1.8vw, 17.5px);
  color: var(--muted);
  max-width: 660px;
  margin: 18px auto 0;
  line-height: 1.68;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* ── Quick Route Chips ─────────────────────────────────────────────────── */
.chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.chips .lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-right: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-secondary);
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.chip .chip-loc {
  font-weight: 500;
}

.chip .rt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 92, 1, 0.12);
  border: 1px solid rgba(239, 92, 1, 0.25);
  color: var(--orange-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
}

.chip .rt svg {
  width: 11px;
  height: 11px;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(239, 92, 1, 0.4);
  transform: translateY(-1.5px);
  color: #fff;
}

/* ── Trust / Facts Badges ───────────────────────────────────────────────── */
.hero-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  max-width: 880px;
}

.hf {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}

.hf svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}





/* ── Destinations Section ───────────────────────────────────────────────── */
.dest-strip {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(14, 14, 19, 0.6) 50%, var(--bg) 100%);
}

.dest-head {
  margin-bottom: 50px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  background: rgba(255, 255, 255, 0.024);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(239, 92, 1, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(239, 92, 1, 0.12);
}

.dc-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  background: rgba(239, 92, 1, 0.12);
  border: 1px solid rgba(239, 92, 1, 0.28);
  color: var(--orange-2);
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.dc-city {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 4px;
}

.dc-code {
  font-size: 12px;
  color: var(--faint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.dc-note {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.dc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.15s;
}

.dc-link:hover {
  color: #ffffff;
  gap: 10px;
}







/* ── Enquiry Section & Form ─────────────────────────────────────────────── */
.enquiry {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(900px 500px at 50% 10%, rgba(239, 92, 1, 0.12), transparent 70%);
}

.eq-card {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(18, 18, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 35px rgba(239, 92, 1, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.frow3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.field .req {
  color: var(--orange-2);
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 16px;
  transition: all 0.2s;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--faint);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 92, 1, 0.2);
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.field input[type="date"] {
  cursor: pointer;
  position: relative;
  color-scheme: dark;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  width: 22px;
  height: 22px;
  opacity: 0.95;
  filter: none !important;
  transition: all 0.2s ease;
  margin-right: -2px;
}

.field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ff7524' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  filter: drop-shadow(0 0 6px rgba(239, 92, 1, 0.7)) !important;
}

.field.select {
  position: relative;
}

.field.select select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.field.select select option {
  background: #18181f;
  color: #fff;
}

.field.select svg {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  color: var(--muted);
  pointer-events: none;
}

.phone-group {
  display: flex;
  gap: 8px;
}
.phone-group select {
  width: 80px;
  flex-shrink: 0;
}
.phone-group select option {
  color: #000;
  background: #fff;
}
.phone-group input {
  flex: 1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  cursor: pointer;
}

.consent input[type="checkbox"] {
  accent-color: var(--primary);
  margin-top: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.consent .req {
  color: var(--primary);
  font-weight: 700;
}

.eq-submit {
  width: 100%;
  height: 52px;
  border-radius: 20px;
}

.eq-submit > span {
  font-size: 15px;
  border-radius: 18px;
}

/* Success State */
.eq-success {
  display: none;
  padding: 60px 30px;
  text-align: center;
}

.eq-success .ok {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(239, 92, 1, 0.14);
  border: 1.5px solid rgba(239, 92, 1, 0.4);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--orange-2);
}

.eq-success .ok svg {
  width: 28px;
  height: 28px;
}

.eq-success h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.eq-success p {
  color: var(--muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.again {
  display: inline-flex;
}

/* ── Office & Contact Section ───────────────────────────────────────────── */
.office {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.ocard {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all 0.2s;
}

.ocard:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(239, 92, 1, 0.3);
  transform: translateY(-2px);
}

.oc-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(239, 92, 1, 0.12);
  border: 1px solid rgba(239, 92, 1, 0.28);
  display: grid;
  place-items: center;
  color: var(--orange-2);
  margin-bottom: 14px;
}

.oc-ic svg {
  width: 20px;
  height: 20px;
}

.oc-k {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--faint);
  margin-bottom: 5px;
}

.oc-v {
  font-size: 14.5px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}

.oc-v a:hover {
  color: var(--orange-2);
}

.office-lower {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
}

.hours-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.hours-panel h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13.5px;
  color: var(--muted);
}

.hours-row b {
  color: #fff;
}

.hp-soc {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.hp-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}

.soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.2s;
}

.soc:hover {
  color: var(--orange-2);
  border-color: rgba(239, 92, 1, 0.4);
  background: rgba(239, 92, 1, 0.12);
}

.soc svg {
  width: 16px;
  height: 16px;
}

.map-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 260px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  background: #050507;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
}

.site-footer .f-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer .logo {
  display: inline-flex;
  align-items: center;
}

.site-footer .logo-img {
  display: block;
  height: 32px;
  width: auto;
}

.site-footer .f-copy {
  font-size: 13px;
  color: var(--faint);
  margin: 0;
}

@media (max-width: 600px) {
  .site-footer .f-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
}

/* ── Responsive Queries ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav.main {
    display: none;
  }
  .topbar .tleft a:nth-child(2) {
    display: none;
  }
  .hd-phone {
    display: none;
  }
  .frow3 {
    grid-template-columns: 1fr;
  }
  .office-lower {
    grid-template-columns: 1fr;
  }

  /* ── Horizontal Scrollable Cards on Mobile ── */
  .dest-grid,
  .office-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 20px 24px 20px;
    margin-left: -20px;
    margin-right: -20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .dest-grid::-webkit-scrollbar,
  .office-grid::-webkit-scrollbar {
    display: none;
  }

  .dest-grid::after,
  .office-grid::after {
    content: "";
    flex: 0 0 4px;
  }

  .dest-card,
  .ocard {
    flex: 0 0 78%;
    max-width: 300px;
    min-width: 250px;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .dest-card {
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
  .hero {
    padding: 70px 0 80px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-facts {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .eq-card {
    padding: 28px 20px;
  }
}

/* ── Accessibility ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 2px;
}
