/* ============================================
   GTIG TRAVEL SERVICES INC.
   Main Stylesheet — Gold & Dark Navy Theme
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E6B8;
  --gold-dark: #A07830;
  --navy: #0B1F3A;
  --navy-mid: #152D50;
  --navy-light: #1E3F6E;
  --navy-surface: #162240;
  --white: #FFFFFF;
  --off-white: #F7F4EE;
  --text-light: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.45);
  --border: rgba(201,168,76,0.2);
  --border-light: rgba(255,255,255,0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  position: fixed;
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
body:hover .cursor-follower { opacity: 0.6; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-large { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-icon { color: var(--gold); font-size: 1rem; }
.logo-text em { color: var(--gold); font-style: italic; margin-left: 1px; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  background: var(--navy-surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: var(--gold); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #1a3a6a 0%, #0b1f3a 50%, #060f1e 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.8) 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  padding-left: min(10vw, 100px);
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.stat { text-align: center; padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeIn 1s 1s ease both;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy);
  white-space: nowrap;
  padding: 0 4px;
}

/* ---- SERVICES ---- */
.services { background: var(--navy-surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold), var(--shadow);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border-color: rgba(201,168,76,0.4);
}
.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }

/* ---- DESTINATIONS ---- */
.destinations { background: var(--navy); }
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: none;
}
.dest-large {
  grid-row: 1 / 3;
}
.dest-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
}
.dest-large .dest-img { aspect-ratio: 2/3; }
.dest-card:hover .dest-img { transform: scale(1.04); }
.dest-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  position: relative;
  z-index: 1;
}
.dest-large .dest-emoji { font-size: 6rem; }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dest-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.dest-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.dest-large .dest-info h3 { font-size: 2rem; }
.dest-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.dest-btn {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.dest-card:hover .dest-btn {
  opacity: 1;
  transform: translateY(0);
  background: var(--gold);
  color: var(--navy);
}

/* ---- WHY US ---- */
.whyus { background: var(--navy-surface); }
.whyus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.whyus-left .section-title { margin-bottom: 20px; text-align: left; }
.whyus-left .section-eyebrow { text-align: left; }
.whyus-body {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 0.95rem;
}
.whyus-right { display: flex; flex-direction: column; gap: 32px; padding-top: 16px; }
.reason-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.reason-item:last-child { border-bottom: none; padding-bottom: 0; }
.reason-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.35;
  flex-shrink: 0;
  line-height: 1;
  min-width: 48px;
}
.reason-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.reason-item p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--navy); }
.testi-slider {
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
  min-height: 220px;
}
.testi-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: none;
  animation: fadeIn 0.4s ease;
}
.testi-card.active { display: block; }
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.testi-card > p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--off-white);
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { color: var(--text-muted); font-size: 0.8rem; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}
.cta-bg::before {
  content: '✦';
  position: absolute;
  top: 20px; left: 40px;
  font-size: 6rem;
  color: rgba(201,168,76,0.06);
}
.cta-bg::after {
  content: '✦';
  position: absolute;
  bottom: 20px; right: 40px;
  font-size: 8rem;
  color: rgba(201,168,76,0.06);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-inner p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* ---- FOOTER ---- */
.footer {
  background: #060f1e;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-light);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
  color: var(--text-muted);
  text-transform: lowercase;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.contact-list li {
  color: var(--text-muted);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #1e3f6e 0%, #0b1f3a 60%, #060f1e 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 0;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-content h1 em { color: var(--gold); font-style: italic; }
.page-hero-content p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 480px;
}

/* ---- PACKAGES PAGE ---- */
.pkg-filter { padding-top: 60px; }
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-light);
  font-size: 0.87rem;
  font-weight: 500;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--white);
}
.filter-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pkg-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.pkg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
}
.pkg-card.hidden { display: none; }
.pkg-img {
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pkg-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.pkg-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.pkg-body { padding: 24px; }
.pkg-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.pkg-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
}
.pkg-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.pkg-body p {
  color: var(--text-light);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.pkg-includes {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.pkg-includes li {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.pkg-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.7rem; color: var(--text-muted); }
.price-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);

    
}
.price-per { font-size: 0.7rem; color: var(--text-muted); }

/* ---- CUSTOM PACKAGE ---- */
.custom-pkg {
  background: var(--navy-surface);
  padding: 80px 0;
}
.custom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.custom-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.custom-inner h2 em { color: var(--gold); font-style: italic; }
.custom-inner p { color: var(--text-light); font-size: 0.95rem; }

/* ---- VISA PAGE ---- */
.visa-section { background: var(--navy); }
.visa-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: 50px;
  width: fit-content;
  overflow: hidden;
}
.visa-tab {
  padding: 14px 36px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.visa-tab.active {
  background: var(--gold);
  color: var(--navy);
}
.visa-tab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,0.05); }
.visa-content { display: none; }
.visa-content.active { display: block; }
.visa-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.visa-intro h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.visa-intro h2 em { color: var(--gold); font-style: italic; }
.visa-intro > div:first-child p { color: var(--text-light); font-size: 0.95rem; line-height: 1.75; max-width: 560px; }
.visa-highlight-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.highlight-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.visa-highlight-box strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.visa-highlight-box span { color: var(--text-muted); font-size: 0.8rem; }
.visa-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.visa-type-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.visa-type-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.vt-icon { font-size: 2rem; margin-bottom: 14px; }
.visa-type-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.visa-type-card p {
  color: var(--text-light);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.visa-type-card ul { display: flex; flex-direction: column; gap: 5px; }
.visa-type-card li { font-size: 0.78rem; color: var(--text-muted); padding-left: 10px; position: relative; }
.visa-type-card li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }
.process-section { margin-bottom: 64px; }
.process-section h3, .docs-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--white);
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.step-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.step-content p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }
.process-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  padding: 0 16px;
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 24px;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.doc-item {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.doc-icon { font-size: 1.1rem; flex-shrink: 0; }
.docs-note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

/* ---- ABOUT PAGE ---- */
.about-story { background: var(--navy); }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 400px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.story-badge-wrap { text-align: center; }
.story-big-num {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.story-badge-wrap p { color: var(--text-light); font-size: 1rem; font-weight: 500; }
.story-deco-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.deco-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
  width: 100%;
}
.deco-line:nth-child(1) { top: 25%; }
.deco-line:nth-child(2) { top: 50%; }
.deco-line:nth-child(3) { top: 75%; }
.story-text .section-eyebrow, .story-text .section-title { text-align: left; }
.story-text .section-title { margin-bottom: 24px; }
.story-text p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.values { background: var(--navy-surface); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
}
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; }
.stats-section {
  background: var(--gold);
  padding: 64px 0;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-n {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-l { color: var(--navy); font-size: 0.85rem; font-weight: 600; opacity: 0.7; }
.mission { background: var(--navy); }
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mission-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.mission-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.mission-box p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

/* ---- CONTACT PAGE ---- */
.contact-section { background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-form-wrap h2 em { color: var(--gold); font-style: italic; }
.contact-form-wrap > p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 0.9rem;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
.success-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.form-success h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--text-light); font-size: 0.9rem; }
.contact-info-sticky { position: sticky; top: 100px; }
.contact-info-sticky h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.info-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.info-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.info-card:hover { border-color: rgba(201,168,76,0.3); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-card h5 { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 3px; }
.info-card p { font-size: 0.87rem; margin-bottom: 2px; }
.info-card span { font-size: 0.77rem; color: var(--text-muted); }
.office-hours {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.office-hours h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.83rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--text-muted); }
.faq-quick h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 14px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q span { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}
.faq-a.open {
  max-height: 200px;
  padding-bottom: 16px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---- PARTICLE STARS ---- */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .visa-types-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-large { grid-column: 1 / -1; grid-row: 1; }
  .dest-large .dest-img { aspect-ratio: 16/7; }
  .whyus-inner { grid-template-columns: 1fr; gap: 48px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-inner { grid-template-columns: 1fr; }
  .story-visual { max-width: 100%; aspect-ratio: 3/1; }
  .story-big-num { font-size: 5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .hero-content { padding-left: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .dest-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .visa-types-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); padding: 8px 0; margin-bottom: 0; }
  .custom-inner { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ---- LOGO IMAGE (replaces text logo) ---- */
.logo-img-wrap {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.88; }
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  margin-bottom: 12px;
}

/* ---- MARA BADGE IN FOOTER (under social links, left-aligned in brand col) ---- */
.mara-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  opacity: 0.88;
  transition: opacity 0.25s, transform 0.25s;
  border-radius: 8px;
  overflow: hidden;
}
.mara-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.mara-img {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

/* ---- CUSTOM GOLD SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--navy);
}

/* ---- REAL PHOTO OVERLAYS ---- */
/* Darken real photos so text stays legible */
.page-hero-bg {
  background-color: #0b1f3a !important;
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,15,30,0.65) 0%, rgba(11,31,58,0.55) 60%, rgba(6,15,30,0.8) 100%);
  z-index: 1;
}
.page-hero-content {
  z-index: 2;
}

/* Hero real photo treatment */
.hero-bg {
  background-color: #0b1f3a !important;
}
.hero-overlay {
  background: linear-gradient(135deg, rgba(6,15,30,0.75) 0%, rgba(11,31,58,0.4) 60%),
              radial-gradient(ellipse at bottom right, rgba(201,168,76,0.08) 0%, transparent 70%) !important;
}

/* Destination cards with real photos */
.dest-img {
  background-color: #0b1f3a !important;
}

/* Package cards with real photos */
.pkg-img {
  background-color: #0b1f3a !important;
  position: relative;
}
.pkg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}
/* pkg-badge sits above the overlay */
.pkg-badge {
  z-index: 2;
}

/* ---- AUSTRALIAN FLAG IN SERVICE ICON ---- */
.service-icon svg[viewBox="0 0 60 30"] {
  color: unset;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.au-flag-wrap {
  font-size: unset;
  line-height: 1;
}

/* ---- AUSTRALIAN VISA CATEGORIES ACCORDION ---- */
.au-visa-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.visa-cat-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-mid);
  transition: border-color 0.3s;
}
.visa-cat-block:hover {
  border-color: rgba(201,168,76,0.35);
}
.visa-cat-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  transition: background 0.2s;
}
.visa-cat-header:hover {
  background: rgba(255,255,255,0.03);
}
.cat-icon { font-size: 1.3rem; flex-shrink: 0; }
.cat-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex: 1;
}
.cat-count {
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.cat-arrow {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.visa-cat-header.open .cat-arrow {
  transform: rotate(180deg);
}
.visa-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  border-top: 0px solid var(--border);
}
.visa-cat-body.open {
  max-height: 1200px;
  border-top: 1px solid var(--border);
}
.au-visa-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.au-visa-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--navy-surface);
  transition: background 0.2s;
}
.au-visa-item:hover {
  background: rgba(201,168,76,0.05);
}
.au-sc {
  min-width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.au-visa-item h5 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
  line-height: 1.3;
}
.au-visa-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
@media (max-width: 640px) {
  .au-visa-list { grid-template-columns: 1fr; }
  .visa-cat-header { padding: 14px 16px; }
}


/* ---- VISA PAGE — SVG WORLD MAP HERO ---- */
.visa-hero-map {
  background: #060f1e !important;
}
.world-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   v13 ADDITIONS — Validation · Phone · reCAPTCHA · Toast · Maps
   ============================================================ */

/* ── Google Maps links ─────────────────────────────────────── */
.map-link {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s, text-decoration .2s;
  font-size: inherit;
  line-height: inherit;
}
.map-link:hover { color: var(--gold-light); text-decoration: underline; }
.map-link-small {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-map-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-map-link:hover { color: var(--gold); text-decoration: underline; }

/* ── Field hints & errors ──────────────────────────────────── */
.field-hint {
  display: block;
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .01em;
}
.field-error {
  display: none;
  font-size: 0.73rem;
  color: #ff6b6b;
  margin-top: 4px;
  font-weight: 500;
  animation: fadeIn .2s ease;
}

/* ── Phone input group ─────────────────────────────────────── */
.phone-input-group {
  display: grid;
  grid-template-columns: 130px 80px 1fr;
  gap: 8px;
  align-items: center;
}
.phone-country-select {
  font-size: 0.82rem !important;
  padding: 12px 8px !important;
}
.phone-area {
  text-align: center;
}
@media (max-width: 500px) {
  .phone-input-group { grid-template-columns: 1fr 1fr; }
  .phone-num         { grid-column: 1 / -1; }
}

/* ── reCAPTCHA wrapper ─────────────────────────────────────── */
.recaptcha-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 4px 0 8px;
}
.recaptcha-wrap .g-recaptcha {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

/* ── Error summary box ─────────────────────────────────────── */
.form-error-summary {
  background: rgba(229,57,53,.12);
  border: 1px solid rgba(229,57,53,.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #ff8a80;
  font-size: 0.85rem;
  margin-top: 8px;
}
.form-error-summary strong { color: #ff5252; display: block; margin-bottom: 8px; }
.form-error-summary ul { padding-left: 18px; }
.form-error-summary li { margin-bottom: 4px; line-height: 1.5; }

/* ── Success message upgrade ───────────────────────────────── */
.form-success strong { color: var(--gold); }

/* ── Toast notification ─────────────────────────────────────── */
.gtig-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  min-width: 320px;
  max-width: 520px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
  opacity: 0;
}
.gtig-toast.toast-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.gtig-toast-success { border-color: rgba(76,175,80,.45); }
.gtig-toast-error   { border-color: rgba(229,57,53,.45); }

.toast-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.gtig-toast-success .toast-icon { background: rgba(76,175,80,.2); color: #66bb6a; }
.gtig-toast-error   .toast-icon { background: rgba(229,57,53,.2); color: #ef5350; }

.toast-body { flex: 1; }
.toast-body strong { display: block; font-size: .9rem; margin-bottom: 4px; color: var(--white); }
.toast-body p { font-size: .8rem; color: var(--text-light); line-height: 1.5; }

.toast-close {
  background: none; border: none;
  color: var(--text-muted);
  font-size: .9rem; cursor: pointer;
  padding: 2px 4px; flex-shrink: 0;
  transition: color .2s;
}
.toast-close:hover { color: var(--white); }

/* Input valid/invalid visual feedback override */
.form-group input:valid:not(:placeholder-shown):not(:focus),
.form-group select:valid:not([value=""]):not(:focus),
.form-group textarea:valid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(76,175,80,.5);
}

/* ============================================================
   CUSTOM CALENDAR PICKER
   ============================================================ */
.cal-trigger-wrap {
  position: relative;
}
.cal-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.cal-trigger:hover,
.cal-trigger:focus {
  border-color: rgba(201,168,76,.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  outline: none;
}
.cal-trigger.open {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.cal-icon { font-size: 1.1rem; flex-shrink: 0; }
.cal-display {
  flex: 1;
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  font-family: var(--font-body);
}
.cal-display.has-date { color: var(--white); font-weight: 500; }
.cal-arrow {
  color: var(--gold);
  font-size: .75rem;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.cal-trigger.open .cal-arrow { transform: rotate(180deg); }

/* Dropdown panel */
.cal-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 320px;
  background: #0f2441;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  z-index: 500;
  overflow: hidden;
  display: none;
  animation: calSlideIn .2s ease;
}
.cal-dropdown.open { display: block; }
@keyframes calSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Nav bar */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.cal-nav-center { display: flex; gap: 8px; align-items: center; }
.cal-nav-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--gold);
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.cal-nav-btn:hover { background: rgba(201,168,76,.15); border-color: var(--gold); }

.cal-select {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: .82rem;
  font-family: var(--font-body);
  cursor: pointer;
  outline: none;
}
.cal-select:focus { border-color: var(--gold); }
.cal-select option { background: #0f2441; color: var(--white); }

/* Weekday headers */
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cal-weekdays span {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 4px 0;
}

/* Day grid */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 8px 12px 12px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
  color: var(--white);
  border: 1px solid transparent;
  font-family: var(--font-body);
}
.cal-day:hover:not(.cal-day-empty):not(.cal-day-past) {
  background: rgba(201,168,76,.18);
  border-color: rgba(201,168,76,.35);
  color: var(--gold);
}
.cal-day-selected {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700;
  border-color: var(--gold-dark) !important;
}
.cal-day-today {
  border-color: rgba(201,168,76,.5) !important;
  color: var(--gold);
}
.cal-day-past {
  color: rgba(255,255,255,.2);
  cursor: not-allowed;
}
.cal-day-empty { cursor: default; }

/* Footer */
.cal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.2);
}
.cal-today-btn,
.cal-clear-btn {
  font-size: .78rem;
  font-family: var(--font-body);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid;
}
.cal-today-btn {
  background: rgba(201,168,76,.15);
  border-color: rgba(201,168,76,.4);
  color: var(--gold);
}
.cal-today-btn:hover { background: var(--gold); color: var(--navy); }
.cal-clear-btn {
  background: transparent;
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
}
.cal-clear-btn:hover { border-color: rgba(255,255,255,.4); color: var(--white); }

/* ============================================================
   CALENDAR RESPONSIVE
   ============================================================ */
@media (max-width: 380px) {
  .cal-dropdown { width: calc(100vw - 32px); }
}

/* ============================================================
   GIGI — FULL-BODY CHATBOT CHARACTER  (matches screenshot)
   ============================================================ */

/* ── Outer container — anchored bottom-right ─────────────────── */
.gigi-widget {
  position: fixed;
  bottom: 0;
  right: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none; /* children handle their own events */
}

/* ── Speech bubble tooltip ───────────────────────────────────── */
.gigi-tooltip {
  pointer-events: all;
  position: relative;
  background: #fff;
  color: #0B1F3A;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 12px 36px 12px 16px;
  border-radius: 14px 14px 4px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  max-width: 240px;
  margin-bottom: 10px;
  margin-right: 85px; /* offset so it sits left of Gigi */
  animation: gigiBubbleIn 0.5s 1.2s cubic-bezier(.34,1.56,.64,1) both;
  white-space: normal;
}

.gigi-tooltip-name {
  color: #C9A84C;
  font-weight: 700;
}

/* Arrow pointing down-right toward Gigi */
.gigi-tooltip::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 16px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 10px solid #fff;
}

.gigi-tooltip-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none;
  border: none;
  color: #999;
  font-size: 0.7rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.gigi-tooltip-close:hover { color: #333; background: #f0f0f0; }

.gigi-tooltip.gigi-hidden { display: none; }

/* ── Full-body character link ────────────────────────────────── */
.gigi-character {
  pointer-events: all;
  display: block;
  width: 170px;
  cursor: pointer;
  text-decoration: none;
  animation: gigiRiseIn 0.7s 0.6s cubic-bezier(.34,1.2,.64,1) both;
  transition: transform 0.3s ease;
  transform-origin: bottom center;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.gigi-character:hover {
  transform: scale(1.04) translateY(-4px);
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.5));
}

.gigi-character:active {
  transform: scale(0.98) translateY(0);
}

.gigi-img {
  width: 100%;
  height: auto;
  display: block;
  /* Show full body — no cropping */
  object-fit: contain;
  object-position: bottom center;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes gigiRiseIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gigiBubbleIn {
  from { opacity: 0; transform: scale(0.7) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Subtle idle float */
.gigi-character {
  animation: gigiRiseIn 0.7s 0.6s cubic-bezier(.34,1.2,.64,1) both,
             gigiFloat 4s 2s ease-in-out infinite;
}

@keyframes gigiFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Pause float on hover (override) */
.gigi-character:hover {
  animation-play-state: paused;
  transform: scale(1.04) translateY(-4px);
}

/* ── Mobile — slightly smaller ───────────────────────────────── */
@media (max-width: 640px) {
  .gigi-character { width: 120px; right: 8px; }
  .gigi-tooltip   { font-size: 0.78rem; max-width: 190px; margin-right: 60px; padding: 10px 30px 10px 12px; }
  .gigi-widget    { right: 8px; }
}

/* ── Hide custom cursor over Gigi so pointer shows ───────────── */
.gigi-character * { cursor: pointer; }
