/* BrahmnMitra — style.css */

:root {
  /* Colors */
  --night-1: #04060c;
  --night-2: #070d18;
  --night-3: #0b1526;
  --night-4: #101e36;
  --amber: #ffb347;
  --amber-deep: #ff9e2c;
  --cyan: #5fe9f5;
  --violet: #8a7bff;
  --sky-top: #1a3c68;
  --sky-mid: #102444;
  --sky-low: #081326;
  --ink: #f0f6ff;
  --ink-soft: #9fb5d1;
  --ink-dim: #6b84a6;

  /* Premium dark glass tokens */
  --glass-bg: rgba(11, 23, 44, 0.72);
  --glass-bg-strong: rgba(16, 32, 60, 0.85);
  --glass-stroke: rgba(255, 255, 255, 0.14);
  --glass-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75);
  --glass-inner:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  --blur: 22px;

  /* Typography & shape */
  --display: "Unbounded", sans-serif;
  --body: "Archivo", sans-serif;
  --r-lg: 28px;
  --r-md: 18px;
  --r-pill: 999px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--night-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection {
  background: var(--amber);
  color: var(--night-1);
}

/* Custom glass scrollbar */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-track {
  background: var(--night-1);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
  border: 2px solid var(--night-1);
  transition: background 0.3s var(--ease-out);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--amber);
  box-shadow: 0 0 10px rgba(255, 179, 71, 0.6);
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) var(--night-1);
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Accessibility skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: #fff;
  color: var(--night-1);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--r-pill);
}
.skip:focus {
  left: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
#site-header {
  position: fixed;
  z-index: 80;
  top: 14px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: min(1220px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px 9px 20px;
  border-radius: var(--r-pill);
  color: #eaf2ff;
  background: rgba(4, 6, 12, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 44px -20px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
#site-header .brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.14em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #fff;
  flex-shrink: 0;
}
#site-header .brand .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px var(--amber);
  animation: pulse 2.6s ease-in-out infinite;
}

/* Desktop nav */
#nav {
  display: flex;
  align-items: center;
  gap: 3px;
}
#nav a {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 11px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  color: #d8e5f8;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
#nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
#nav a[aria-current="true"],
#nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
  font-weight: 600;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-cta {
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--r-pill);
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(
    160deg,
    #ffc670,
    var(--amber) 45%,
    var(--amber-deep)
  );
  color: #2a1600 !important;
  border: 1px solid transparent;
  box-shadow:
    0 10px 24px -10px rgba(255, 158, 44, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease;
  margin-left: 4px;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 32px -10px rgba(255, 158, 44, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

#site-header .call {
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--r-pill);
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eaf2ff;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    transform 0.2s;
}
#site-header .call:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--night-1);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
#nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: inherit;
}
#nav-toggle .bars {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}
#nav-toggle .bars::before,
#nav-toggle .bars::after,
#nav-toggle .bars span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
#nav-toggle .bars::before {
  top: 0;
}
#nav-toggle .bars span {
  top: 5px;
}
#nav-toggle .bars::after {
  top: 10px;
}
#nav-toggle[aria-expanded="true"] .bars::before {
  transform: translateY(5px) rotate(45deg);
}
#nav-toggle[aria-expanded="true"] .bars span {
  opacity: 0;
}
#nav-toggle[aria-expanded="true"] .bars::after {
  transform: translateY(-5px) rotate(-45deg);
}

#site-header.on-light,
#site-header.scrolled {
  background: rgba(4, 6, 12, 0.94);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 18px 44px -20px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Buttons */
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 44px;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}
.btn:active {
  transform: translateY(1px) scale(0.97);
}
.btn-amber {
  background: linear-gradient(
    160deg,
    #ffc670,
    var(--amber) 45%,
    var(--amber-deep)
  );
  color: #2a1600;
  box-shadow:
    0 16px 36px -14px rgba(255, 158, 44, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.btn-amber:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 24px 48px -14px rgba(255, 158, 44, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f0f6ff;
  box-shadow:
    0 14px 34px -18px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 20px 42px -16px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

/* Content layout */
#content {
  position: relative;
  z-index: 10;
  color: var(--ink);
  background: radial-gradient(
    circle at 50% 0%,
    #0d1e38 0%,
    #07101e 32%,
    #04060c 100%
  );
  overflow: hidden;
}
.section {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 40px);
}
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(95, 233, 245, 0.1);
  border: 1px solid rgba(95, 233, 245, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.4vw, 2.85rem);
  letter-spacing: 0.01em;
  line-height: 1.14;
  color: #ffffff;
}
.lead {
  margin-top: 18px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.65;
}

/* Stat bar */
#stats {
  position: relative;
  z-index: 11;
  background: linear-gradient(155deg, #0b1526 0%, #12233c 55%, #0b1526 100%);
  color: #eaf2ff;
  overflow: hidden;
}
#stats::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    70% 120% at 50% 0%,
    rgba(255, 179, 71, 0.13),
    transparent 62%
  );
}
.stat-grid {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 66px) clamp(18px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat .num {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1;
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 179, 71, 0.3);
}
.stat .label {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93aacb;
  font-weight: 600;
}

/* Services */
.svc-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(11, 23, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.3s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 30px 60px -22px rgba(0, 0, 0, 0.8),
    var(--glass-inner);
  border-color: rgba(255, 255, 255, 0.3);
}
.svc-card .glyph {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  background: linear-gradient(
    155deg,
    rgba(16, 32, 60, 0.95),
    rgba(8, 18, 36, 0.9)
  );
  color: var(--amber);
  box-shadow:
    0 12px 26px -12px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.svc-card .route {
  font-family: var(--display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}
.svc-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.25;
  color: #fff;
}
.svc-card p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

.svc-card.intl .glyph {
  color: var(--cyan);
}
.svc-card ul {
  list-style: none;
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.svc-card li {
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
  color: var(--ink);
  font-size: 0.93rem;
}
.svc-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(150deg, #ffd79a, var(--amber));
  transform: rotate(45deg);
  box-shadow: 0 4px 10px -3px rgba(255, 158, 44, 0.7);
}
.svc-card.intl li::before {
  background: linear-gradient(150deg, #9bf3fb, var(--cyan));
  box-shadow: 0 4px 10px -3px rgba(95, 233, 245, 0.7);
}

/* Why BrahmnMitra */
.why-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  border-radius: var(--r-lg);
  padding: 32px;
  background: rgba(11, 23, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
}
.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
}
.why-item .glyph {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 20px;
  background: linear-gradient(
    155deg,
    rgba(16, 32, 60, 0.95),
    rgba(8, 18, 36, 0.9)
  );
  color: var(--amber);
  box-shadow:
    0 12px 26px -12px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.why-item h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #fff;
}
.why-item p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Process Timeline */
.proc {
  margin-top: 56px;
  position: relative;
}
.proc-rail {
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 179, 71, 0.25),
    rgba(255, 179, 71, 0.85),
    rgba(95, 233, 245, 0.7)
  );
  transform-origin: left center;
}
.proc-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.proc-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.proc-step .n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: #2a1600;
  background: linear-gradient(
    160deg,
    #ffc670,
    var(--amber) 50%,
    var(--amber-deep)
  );
  box-shadow:
    0 14px 30px -12px rgba(255, 158, 44, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 0 0 7px rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.proc-step:hover .n {
  transform: translateY(-4px) scale(1.06);
}
.proc-step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.proc-step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 22ch;
}

/* About */
.about-wrap {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}
.about-body p {
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-body p:last-of-type {
  margin-bottom: 0;
}

.proof {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  list-style: none;
}
.proof li {
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}
.proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(
    155deg,
    rgba(16, 32, 60, 0.95),
    rgba(8, 18, 36, 0.9)
  );
}
.proof li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(-45deg);
}

/* About stats counters */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat {
  border-radius: var(--r-md);
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(11, 23, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--glass-shadow), var(--glass-inner);
}
.about-stat .num {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: #ffffff;
}
.about-stat .label {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.4;
}

/* Testimonials */
.tst-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tst {
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(11, 23, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
}
.tst:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
}
.tst .mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 44px;
  line-height: 0.6;
  color: var(--amber);
  opacity: 0.85;
}
.tst blockquote {
  color: var(--ink);
  line-height: 1.75;
  font-size: 0.98rem;
  flex: 1;
}
.tst figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}
.tst .who {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.tst .role {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.45;
}

/* Contact */
.contact-wrap {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  border-radius: calc(var(--r-lg) + 6px);
  padding: clamp(26px, 3.4vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(11, 23, 44, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--glass-shadow), var(--glass-inner);
}
.cinfo {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cinfo .glyph {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 17px;
  background: linear-gradient(
    155deg,
    rgba(16, 32, 60, 0.95),
    rgba(8, 18, 36, 0.9)
  );
  color: var(--amber);
  box-shadow:
    0 12px 26px -12px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cinfo .k {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 5px;
}
.cinfo .v {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  word-break: break-word;
}
.cinfo a {
  text-decoration: none;
  color: #fff;
  transition: color 0.2s ease;
}
.cinfo a:hover {
  color: var(--amber);
  text-decoration: underline;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  min-height: 44px;
  background: linear-gradient(160deg, #3fd07a, #25a75c);
  color: #04220f;
  box-shadow:
    0 16px 36px -14px rgba(37, 167, 92, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px -14px rgba(37, 167, 92, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Contact Form */
#contact .panel {
  border-radius: calc(var(--r-lg) + 6px);
  padding: clamp(26px, 4vw, 44px);
  background: rgba(11, 23, 44, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--glass-shadow), var(--glass-inner);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #eaf2ff;
}
.field .req {
  color: var(--amber);
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  min-height: 44px;
  background: rgba(6, 14, 28, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -6px 14px -10px rgba(0, 0, 0, 0.6);
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #6b84a6;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: rgba(8, 18, 36, 0.95);
  border-color: var(--cyan);
  box-shadow:
    0 0 0 4px rgba(95, 233, 245, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.2);
}
.field .err {
  font-size: 12px;
  font-weight: 600;
  color: #fca5a5;
  min-height: 0;
}
.field .err:empty {
  display: none;
}

/* Trip selector pills */
.trip-pills {
  display: flex;
  gap: 10px;
}
.trip-pills input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.trip-pills label {
  flex: 1;
  text-align: center;
  border-radius: 14px;
  padding: 14px 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.trip-pills label:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.trip-pills input:checked + label {
  background: linear-gradient(150deg, #ffd79a, var(--amber));
  color: #1a0f00;
  border-color: var(--amber);
  box-shadow:
    0 12px 26px -12px rgba(255, 158, 44, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.trip-pills input:focus-visible + label {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

/* Flight only fields */
#flight-block {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
#flight-block[hidden] {
  display: none;
}
#return-wrap.hidden {
  visibility: hidden;
}

.form-actions {
  grid-column: 1/-1;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}
.form-note {
  grid-column: 1/-1;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.form-note a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
}
.form-note a:hover {
  text-decoration: underline;
}

#form-toast {
  grid-column: 1/-1;
  display: none;
  border-radius: 16px;
  padding: 16px 18px;
  line-height: 1.6;
  font-weight: 500;
  background: rgba(16, 48, 28, 0.85);
  border: 1px solid rgba(74, 222, 128, 0.6);
  color: #86efac;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#form-toast.show {
  display: block;
  animation: toastIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
#form-toast.warn {
  background: rgba(48, 32, 12, 0.85);
  border-color: rgba(251, 191, 36, 0.6);
  color: #fde68a;
}
#form-toast a {
  color: inherit;
  font-weight: 700;
}

/* Footer */
footer {
  position: relative;
  z-index: 10;
  background: var(--night-1);
  color: #b9c9e2;
  overflow: hidden;
}
footer .fglow {
  position: absolute;
  left: 50%;
  top: -40%;
  width: 70vw;
  height: 70vw;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(95, 233, 245, 0.1), transparent 62%);
  pointer-events: none;
}
footer .inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 90px) clamp(18px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
footer .fbrand {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
}
footer h3.fcol {
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer p {
  font-size: 14px;
  line-height: 1.85;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer ul a {
  font-size: 14px;
  text-decoration: none;
  color: #b9c9e2;
  transition: color 0.25s ease;
}
footer ul a:hover {
  color: var(--amber);
}
footer .fcontact a {
  color: var(--amber);
  text-decoration: none;
  word-break: break-word;
}
footer .fcontact a:hover {
  text-decoration: underline;
}
footer .fine {
  grid-column: 1/-1;
  border-top: 1px solid rgba(185, 201, 226, 0.14);
  padding-top: 22px;
  font-size: 12px;
  color: #7288a8;
}

/* Back to top button */
#back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(11, 21, 38, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eaf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.35s var(--ease-out),
    visibility 0.35s,
    transform 0.35s var(--ease-spring),
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.5);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--night-1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 28px -6px rgba(255, 158, 44, 0.6);
}
#back-to-top:active {
  transform: translateY(0) scale(0.95);
}

/* Toast notifications */
.bm-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: min(400px, calc(100vw - 32px));
}
.bm-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  background: rgba(11, 21, 38, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 36px -10px rgba(4, 6, 12, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition:
    transform 0.4s var(--ease-spring),
    opacity 0.3s var(--ease-out);
}
.bm-toast.bm-toast-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.bm-toast.bm-toast-leaving {
  transform: translateY(-10px) scale(0.95);
  opacity: 0;
}
.bm-toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 179, 71, 0.2);
  color: var(--amber);
  font-size: 14px;
  flex-shrink: 0;
}
.bm-toast-icon.success {
  background: rgba(95, 233, 245, 0.2);
  color: var(--cyan);
}

/* SVG Icon Styling in Glyphs */
.glyph svg,
.cinfo .glyph svg,
.why-item .glyph svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.cinfo .glyph svg {
  width: 20px;
  height: 20px;
}

/* Skeleton & Shimmer Loaders */
.skeleton-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.skeleton-bar {
  background: rgba(10, 39, 72, 0.08);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.skeleton-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  animation: bmShimmer 1.6s infinite ease-in-out;
}
@keyframes bmShimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Trust Signals & Accreditations */
.trust-strip {
  margin-top: 48px;
  padding: 26px 28px;
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(
    155deg,
    rgba(11, 21, 38, 0.95),
    rgba(28, 48, 80, 0.9)
  );
  color: var(--amber);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -8px rgba(9, 32, 64, 0.5);
}
.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-text strong {
  display: block;
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.3;
}
.trust-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
  line-height: 1.4;
}

/* Footer Trust & Accreditations */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #a0b2cc;
}
.footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
}

@media (max-width: 960px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}


