/* ============================================
   BIZSEATS4U — MAIN STYLESHEET
   ============================================ */

:root {
  --navy:        #0a1628;
  --navy-mid:    #142240;
  --navy-light:  #1e3360;
  --gold:        #c9a227;
  --gold-light:  #e8c547;
  --gold-dim:    rgba(201,162,39,0.12);
  --red:         #cc2222;
  --white:       #ffffff;
  --off-white:   #f5f3ef;
  --text-muted:  #6b7fa3;
  --text-body:   #2c3e50;
  --border:      #e4e0d8;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --container: 1200px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
  --shadow:    0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 16px 56px rgba(10,22,40,0.18);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.8; }

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.section        { padding: 6rem 0; }
.section--dark  { background: var(--navy); }
.section--light { background: var(--off-white); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.38);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 1.5rem 0;
  transition: all var(--transition);
}
.nav--scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.05);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  font-size: 0.72rem !important;
  padding: 0.55rem 1.2rem !important;
  border: 1px solid rgba(201,162,39,0.6) !important;
  color: var(--gold) !important;
  letter-spacing: 0.12em !important;
  transition: all var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-cabin.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.72;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.35) 55%, rgba(10,22,40,0.15) 100%),
    linear-gradient(to bottom, rgba(10,22,40,0.05) 0%, rgba(10,22,40,0.55) 100%);
  z-index: 1;
}
.hero__glow {
  position: absolute;
  left: -10%; top: 20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}
.hero__eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.hero__phone:hover { color: var(--gold); }
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats {
  background: var(--navy-mid);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-color: transparent;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features { background: var(--off-white); padding: 6rem 0; }
.features__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.features__header p { color: var(--text-muted); margin-top: 1rem; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card__icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-card__icon svg { width: 24px; height: 24px; color: var(--gold); }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================
   TRAVEL CLASSES
   ============================================ */
.classes { padding: 6rem 0; background: var(--white); }
.classes__header { margin-bottom: 3rem; }
.classes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.class-card {
  height: 440px;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.class-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}
.class-card--first  .class-card__bg { background-image: url('../images/hero-cabin.jpg');      background-color: #1a2744; }
.class-card--biz    .class-card__bg { background-image: url('../images/business-class.jpg');   background-color: #142240; }
.class-card--prem   .class-card__bg { background-image: url('../images/premium-economy.jpg'); background-color: #0d1b3e; }
.class-card:hover .class-card__bg { transform: scale(1.06); }
.class-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
  z-index: 1;
}
.class-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
}
.class-card__tag  { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; display: block; }
.class-card__content h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.6rem; }
.class-card__content p  { color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.65; }

/* ============================================
   WHY SECTION
   ============================================ */
.why { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; }
.why::before {
  content: '';
  position: absolute;
  right: -8%; top: -25%;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.06);
  pointer-events: none;
}
.why::after {
  content: '';
  position: absolute;
  right: -2%; top: -12%;
  width: 450px; height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.04);
  pointer-events: none;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why__content .label { color: var(--gold); }
.why__content h2   { color: var(--white); margin-bottom: 1.25rem; }
.why__content > p  { color: rgba(255,255,255,0.62); margin-bottom: 0; }
.why__list { margin: 2rem 0 2.5rem; }
.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.why__list li:last-child { border-bottom: none; }
.why__bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.65rem;
  flex-shrink: 0;
}
.why__image {
  position: relative;
  height: 500px;
}
.why__image-main {
  position: absolute;
  inset: 0;
  background-image: url('../images/business-class.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
  border: 1px solid rgba(201,162,39,0.2);
}
.why__image-border {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(201,162,39,0.1);
  z-index: -1;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--off-white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/cta-bg.jpg') center/cover no-repeat;
  opacity: 0.04;
}
.cta-strip .container { position: relative; }
.cta-strip h2  { margin-bottom: 0.75rem; }
.cta-strip p   { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-strip__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050d1a;
  color: rgba(255,255,255,0.5);
  padding: 4.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer__logo img {
  height: 38px;
  margin-bottom: 1.25rem;
}
.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 270px;
}
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--gold); }
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}
.footer__bottom a {
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,162,39,0.05) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,39,0.4), transparent);
}
.page-hero .container { position: relative; }
.page-hero h1   { color: var(--white); margin-bottom: 1rem; }
.page-hero p    { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 580px; line-height: 1.8; }

/* ============================================
   DESTINATIONS PAGE
   ============================================ */
.destinations-wrap { padding: 5rem 0; }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: all var(--transition);
}
.region-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.region-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.region-card__icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.region-card__icon svg { width: 20px; height: 20px; color: var(--gold); }
.region-card h3 { font-size: 1.35rem; }
.region-card__cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  color: var(--text-body);
}
.city-item::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.dest-note {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.dest-note p { color: rgba(255,255,255,0.7); font-size: 0.95rem; flex: 1; }
.dest-note p strong { color: var(--gold); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  padding: 5rem 0;
  background: var(--white);
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-intro__text p { color: var(--text-muted); margin-bottom: 1.25rem; }
.about-intro__text p:last-child { margin-bottom: 0; }
.about-sidebar {
  background: transparent;
  padding: 0;
}
.about-sidebar__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.about-sidebar__item:first-child { border-top: 1px solid var(--border); }
.about-sidebar__item:last-child { border-bottom: none; }
.about-sidebar__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-sidebar__value {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}

.principles { padding: 5rem 0; background: var(--off-white); }
.principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.principle-card {
  background: var(--white);
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 3px solid var(--gold);
}
.principle-card h4 { margin-bottom: 0.6rem; }
.principle-card p  { font-size: 0.9rem; color: var(--text-muted); }

.serve { padding: 5rem 0; background: var(--white); }
.serve__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.serve-card {
  padding: 2.5rem;
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}
.serve-card:hover { box-shadow: var(--shadow); }
.serve-card h4    { margin-bottom: 0.75rem; }
.serve-card p     { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrap { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3   { font-size: 1.5rem; margin-bottom: 2rem; }
.contact-detail    { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg  { width: 18px; height: 18px; color: var(--gold); }
.contact-detail__label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-detail__value { font-size: 0.95rem; color: var(--text-body); }
.contact-detail__value a:hover { color: var(--gold); }

.contact-form h3   { font-size: 1.5rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-wrap { padding: 5rem 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.t-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.t-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.t-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: -0.5rem;
}
.t-card__text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #556;
  flex: 1;
  margin-bottom: 1.5rem;
}
.t-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.t-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.t-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.t-card__name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.t-card__date { font-size: 0.72rem; color: #aaa; margin-top: 1px; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features__grid, .classes__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .why__image { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .features__grid,
  .classes__grid,
  .testimonials-grid,
  .principles__grid,
  .serve__grid,
  .regions-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid .stat-item:nth-child(2) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .class-card { height: 320px; }
  .dest-note { flex-direction: column; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .hero__content { padding: 8rem 1.25rem 4rem; }
}

/* ============================================
   ABOUT FACTS BAND
   ============================================ */
.about-fact {
  padding: 2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about-fact__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-fact__value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .about-fact { border-right: none; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
}
