/* ============================================================
   VISAPARTH — style.css  (v2 — Local Assets Edition)
   ============================================================ */

/* ─── RESET & CUSTOM PROPERTIES ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1F3A;
  --navy-dark:  #071528;
  --navy-mid:   #112847;
  --gold:       #C9A84C;
  --gold-light: #E0C06A;
  --gold-muted: rgba(201,168,76,0.14);
  --white:      #FFFFFF;
  --off-white:  #F4F6FA;
  --text:       #1A2940;
  --text-muted: #5A6A80;
  --text-light: #8A9BB0;
  --border:     rgba(201,168,76,0.22);
  --border-light: rgba(255,255,255,0.08);
  --shadow:     0 4px 24px rgba(11,31,58,0.10);
  --shadow-card:0 2px 16px rgba(11,31,58,0.08);
  --radius:     10px;
  --radius-sm:  6px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button  { cursor: pointer; font-family: inherit; border: none; background: none; }
blockquote { margin: 0; }
textarea { resize: vertical; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 600; }
h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
em { font-style: normal; }
.gold { color: var(--gold); }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header        { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { max-width: 600px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 4px 14px; border-radius: 20px; margin-bottom: 14px;
}
.section-heading { color: var(--navy); margin-bottom: 14px; }
.section-sub     { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; font-size: 0.9rem; font-weight: 600; border-radius: var(--radius-sm);
  letter-spacing: 0.02em; transition: var(--transition); white-space: nowrap; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn-lg   { padding: 15px 34px; font-size: 0.95rem; }
.btn-sm   { padding: 8px 20px;  font-size: 0.82rem; }
.btn-full { width: 100%; }

.btn-gold { background: var(--gold); color: var(--navy-dark); border: 1px solid var(--gold); }
.btn-gold:hover, .btn-gold:focus-visible { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }

.btn-navy { background: var(--navy); color: var(--white); border: 1px solid var(--navy); }
.btn-navy:hover, .btn-navy:focus-visible { background: var(--navy-mid); transform: translateY(-1px); }

.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover, .btn-outline-white:focus-visible { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-1px); }

.btn-whatsapp { background: #25D366; color: var(--white); border: 1px solid #25D366; }
.btn-whatsapp:hover, .btn-whatsapp:focus-visible { background: #1da851; border-color: #1da851; transform: translateY(-1px); }

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal-up    { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.revealed     { opacity: 1 !important; transform: none !important; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7,21,40,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { background: rgba(7,21,40,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.28); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}

/* Logo */
.logo           { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon      { flex-shrink: 0; line-height: 0; }
.logo-text      { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: 0.01em; }
.logo-accent    { color: var(--gold); }

/* Nav */
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.82);
  padding: 8px 11px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-muted); }

/* Header CTA + hamburger */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius-sm); transition: background 0.2s; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger:hover { background: var(--gold-muted); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(7,21,40,0.65); z-index: 998; opacity: 0; transition: opacity 0.3s; }
.mobile-overlay.active { opacity: 1; }

/* ─── HERO — local <picture> responsive approach ─────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}

/* The <picture> element fills the entire hero as a background */
.hero-picture {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  /* Subtle Ken Burns entrance */
  animation: heroPan 12s ease-out forwards;
}
@keyframes heroPan {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(7,21,40,0.85) 0%,
    rgba(11,31,58,0.72) 55%,
    rgba(7,21,40,0.55) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: 72px; /* account for fixed header */
  width: 100%;
}

.hero-text { max-width: 680px; }

.hero-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.hero-headline { color: var(--white); margin-bottom: 22px; }
.hero-sub {
  font-size: 1.06rem; color: rgba(255,255,255,0.84);
  line-height: 1.72; margin-bottom: 36px; max-width: 540px;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 2;
}
.hero-scroll-hint span {
  display: block; width: 2px; height: 8px;
  background: rgba(255,255,255,0.45); border-radius: 2px;
  animation: scrollPulse 1.4s ease-in-out infinite;
}
.hero-scroll-hint span:nth-child(2) { animation-delay: 0.18s; }
.hero-scroll-hint span:nth-child(3) { animation-delay: 0.36s; }
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.4); }
}

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip { background: var(--navy-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.trust-list  { display: flex; align-items: stretch; justify-content: space-around; }
.trust-item  {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 20px; color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 500; flex: 1; justify-content: center;
  border-right: 1px solid var(--border-light); transition: color 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--gold); }
.trust-icon { color: var(--gold); flex-shrink: 0; line-height: 0; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-img-wrap { position: relative; border-radius: var(--radius); overflow: visible; }
.about-img-wrap img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius); display: block;
}
.about-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(7,21,40,0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; color: var(--white);
}
.badge-title { display: block; font-weight: 600; font-size: 0.9rem; color: var(--white); }
.badge-sub   { display: block; font-size: 0.76rem; color: var(--text-light); margin-top: 2px; }

.about-content .section-heading { margin-bottom: 18px; }
.about-lead { font-size: 1.03rem; color: var(--text); line-height: 1.75; margin-bottom: 14px; font-weight: 500; }
.about-body { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.about-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: var(--text); font-weight: 500; }
.feature-icon { flex-shrink: 0; margin-top: 1px; line-height: 0; }

/* ─── SERVICE CARDS ─────────────────────────────────────────── */
.cards-grid { display: grid; gap: 22px; }
.cards-3    { grid-template-columns: repeat(3, 1fr); }
.study-section { background: var(--off-white); }

.service-card {
  background: var(--white); border: 1px solid rgba(11,31,58,0.08);
  border-radius: var(--radius); padding: 34px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }

.card-icon {
  color: var(--navy); margin-bottom: 18px; line-height: 0;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: var(--off-white); border-radius: var(--radius-sm);
  border: 1px solid rgba(11,31,58,0.08); transition: background 0.2s, color 0.2s;
}
.service-card:hover .card-icon { background: var(--gold-muted); color: var(--gold); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ─── COUNTRIES ──────────────────────────────────────────────── */
.countries-section { background: var(--white); }
.countries-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.country-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(11,31,58,0.08); transition: var(--transition); background: var(--white);
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.country-img-wrap { position: relative; overflow: hidden; height: 175px; }
.country-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s ease; display: block;
}
.country-card:hover .country-img-wrap img { transform: scale(1.06); }

.country-overlay {
  position: absolute; inset: 0; background: rgba(7,21,40,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.country-card:hover .country-overlay { opacity: 1; }

.country-info       { padding: 16px 18px 20px; }
.country-info h3    { font-size: 0.97rem; color: var(--navy); margin-bottom: 5px; font-weight: 700; }
.country-info p     { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── VISA CARDS ─────────────────────────────────────────────── */
.visa-section { background: var(--navy-dark); }
.visa-section .section-tag     { color: var(--gold); border-color: var(--gold); }
.visa-section .section-heading { color: var(--white); }
.visa-section .section-sub     { color: rgba(255,255,255,0.65); }

.visa-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 34px 28px;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.visa-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }
.visa-icon   { margin-bottom: 20px; line-height: 0; }
.visa-card h3 { color: var(--white); margin-bottom: 10px; }
.visa-card p  { color: rgba(255,255,255,0.65); font-size: 0.87rem; line-height: 1.7; }

/* ─── PROCESS TIMELINE ─────────────────────────────────────────── */
.process-section { background: var(--off-white); }
.timeline        { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.timeline-item {
  display: flex; gap: 22px; padding: 28px 0;
  border-bottom: 1px solid rgba(11,31,58,0.08); align-items: flex-start;
}
.timeline-item:nth-last-child(-n+2) { border-bottom: none; }
.timeline-marker {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.timeline-marker span  { font-size: 0.76rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.timeline-content h3   { font-size: 1rem; color: var(--navy); margin-bottom: 7px; font-weight: 700; }
.timeline-content p    { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ─── WHY VISAPARTH ──────────────────────────────────────────── */
.why-section { background: var(--white); }
.why-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item {
  padding: 26px 22px; border: 1px solid rgba(11,31,58,0.08);
  border-radius: var(--radius); transition: var(--transition); background: var(--white);
}
.why-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,0.12); transform: translateY(-2px); }
.why-icon   { margin-bottom: 14px; line-height: 0; }
.why-item h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 7px; font-weight: 700; }
.why-item p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--off-white); }
.testimonials-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 20px; }

.testimonial-card {
  background: var(--white); border: 1px solid rgba(11,31,58,0.08);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.testimonial-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.client-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold-muted); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.client-info        { display: flex; flex-direction: column; gap: 2px; }
.client-info strong { font-size: 0.95rem; color: var(--navy); font-weight: 700; }
.client-info span   { font-size: 0.79rem; color: var(--text-muted); }
.destination        { font-size: 0.75rem !important; color: var(--gold) !important; font-weight: 600; }
.stars              { color: var(--gold); font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card blockquote p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; font-style: italic; }
.testimonials-note  { text-align: center; font-size: 0.77rem; color: var(--text-light); }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid    { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }

.contact-form-wrap {
  background: var(--off-white); border: 1px solid rgba(11,31,58,0.08);
  border-radius: var(--radius); padding: 38px;
}
.contact-form { display: flex; flex-direction: column; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--navy); }
.req { color: var(--gold); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--text);
  background: var(--white); border: 1.5px solid rgba(11,31,58,0.15);
  border-radius: var(--radius-sm); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='none' stroke='%235A6A80' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}

/* Checkbox */
.form-check { margin-bottom: 24px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkmark {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  border: 1.5px solid rgba(11,31,58,0.25); border-radius: 4px; background: var(--white);
  transition: border-color 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.checkbox-label input:checked + .checkmark { background: var(--gold); border-color: var(--gold); }
.checkbox-label input:checked + .checkmark::after {
  content: ''; display: block; width: 5px; height: 9px;
  border: 2px solid var(--navy-dark); border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px,-1px);
}

.field-error { font-size: 0.77rem; color: #C0392B; min-height: 16px; }

/* Submit spinner */
.btn-spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(11,31,58,0.3); border-top-color: var(--navy); border-radius: 50%; animation: spin 0.6s linear infinite; }
.btn.loading .btn-spinner { display: block; }
.btn.loading .btn-text    { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success message */
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 56px 36px; text-align: center; background: var(--off-white); border-radius: var(--radius); }
.form-success[hidden] { display: none !important; }
.form-success h3 { color: var(--navy); font-size: 1.35rem; }
.form-success p  { color: var(--text-muted); font-size: 0.93rem; }

/* Contact info column */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px; background: var(--off-white);
  border: 1px solid rgba(11,31,58,0.08); border-radius: var(--radius);
}
.contact-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-muted); border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.contact-detail strong { display: block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail a, .contact-detail address { font-size: 0.9rem; color: var(--navy); font-weight: 500; line-height: 1.6; }
.contact-detail a:hover { color: var(--gold); }

/* Mobile CTA buttons inside contact panel — hidden on desktop, shown on mobile */
.contact-cta-mobile { display: none; flex-direction: column; gap: 10px; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(11,31,58,0.1); }
.map-embed iframe { display: block; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-top  { padding: 70px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p     { font-size: 0.87rem; line-height: 1.75; color: rgba(255,255,255,0.6); }
.footer-logo .logo-text { font-size: 1.2rem; }

.footer-nav h4 { color: var(--white); margin-bottom: 18px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a  { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }

.footer-contact h4  { color: var(--white); margin-bottom: 18px; }
.footer-contact ul  { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li  { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact a   { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact address { color: rgba(255,255,255,0.6); line-height: 1.6; }
.address-li { align-items: flex-start !important; }

.footer-bottom { border-top: 1px solid var(--border-light); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.44); }
.footer-legal { display: flex; align-items: center; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.44); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ─── FLOATING CONTACT BUTTONS ───────────────────────────────── */
.floating-contacts {
  position: fixed; bottom: 28px; right: 22px;
  display: flex; flex-direction: column; gap: 10px; z-index: 900;
}

.fab {
  display: flex; align-items: center; gap: 0;
  width: 52px; height: 52px;
  border-radius: 50%; font-size: 0; /* icon only by default */
  transition: transform 0.2s, box-shadow 0.2s, width 0.3s ease, border-radius 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  overflow: hidden; white-space: nowrap;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.fab svg { flex-shrink: 0; }
.fab-label { overflow: hidden; max-width: 0; opacity: 0; transition: max-width 0.3s ease, opacity 0.3s ease, padding 0.3s ease; font-size: 0.82rem; font-weight: 600; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); width: auto; border-radius: 40px; padding: 0 18px; gap: 8px; }
.fab:hover .fab-label { max-width: 80px; opacity: 1; padding-left: 0; font-size: 0.82rem; }

.fab-call      { background: var(--navy); color: var(--white); }
.fab-whatsapp  { background: #25D366;     color: var(--white); }
.fab-email     { background: var(--gold); color: var(--navy-dark); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .about-grid  { grid-template-columns: 1fr; gap: 44px; }
  .about-img-wrap img { height: 360px; }
  .about-features { grid-template-columns: 1fr; }
  .cards-3     { grid-template-columns: repeat(2, 1fr); }
  .timeline    { grid-template-columns: 1fr; }
  .timeline-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(11,31,58,0.08); }
  .timeline-item:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid      { grid-template-columns: 1fr; }
  .countries-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ── Mobile nav ── */
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 100%); height: 100vh;
    background: var(--navy-dark); border-left: 1px solid var(--border-light);
    z-index: 999; padding: 96px 28px 36px; overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .main-nav.open     { right: 0; }
  .mobile-overlay    { display: block; }
  .nav-list          { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-link          { font-size: 1rem; padding: 12px 14px; display: block; width: 100%; color: rgba(255,255,255,0.85); }
  .hamburger         { display: flex; }
  /* Hide header CTA on mobile — they can use the floating buttons */
  .header-actions .btn-gold { display: none; }

  /* ── Hero ── */
  .hero { min-height: 100svh; }
  .hero-img { object-position: center top; }
  .hero-text   { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Trust strip ── */
  .trust-list     { flex-wrap: wrap; }
  .trust-item     { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border-light); padding: 20px 16px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .trust-item:last-child, .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  /* ── Cards ── */
  .cards-3     { grid-template-columns: 1fr; }
  .countries-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; gap: 14px; flex-wrap: wrap; }

  /* ── Form ── */
  .form-row         { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }

  /* ── Mobile contact CTAs ── */
  .contact-cta-mobile { display: flex; }

  /* ── Floating buttons — pill style on mobile ── */
  .floating-contacts { bottom: 20px; right: 14px; gap: 8px; }
  .fab { width: auto; height: auto; border-radius: 40px; padding: 12px 16px; gap: 8px; font-size: 0.8rem; }
  .fab-label { max-width: 60px; opacity: 1; font-size: 0.8rem; }
  .fab:hover { width: auto; padding: 12px 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section   { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }
  .countries-grid { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .trust-item     { min-width: 100%; border-right: none !important; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  /* Stack floating buttons horizontally on very small screens */
  .floating-contacts { flex-direction: row; right: 50%; transform: translateX(50%); bottom: 16px; }
  .fab { padding: 11px 14px; }
  .fab-label { display: none; }
  .fab:hover .fab-label { display: none; }
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::selection { background: var(--gold); color: var(--navy-dark); }

/* Focus visible for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

/* ─── HONEYPOT field (hidden from humans) ──────────────────── */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ─── Form server error banner ─────────────────────────────── */
.form-server-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ─── Field invalid state ───────────────────────────────────── */
.field-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
}

/* ─── Enquiry reference in success box ─────────────────────── */
.enquiry-ref {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px !important;
}
.enquiry-ref strong { color: var(--gold); }

/* ================================================================
   VISAPARTH — Extended Styles (Multi-Page Build)
   ================================================================ */

/* ─── Footer quick contact ────────────────────────────────────── */
.footer-contact-quick { display:flex; flex-direction:column; gap:8px; margin-top:16px; }
.footer-quick-btn {
  display:inline-block; padding:8px 14px; border:1px solid rgba(201,168,76,.3);
  border-radius:var(--radius-sm); color:var(--text-muted); font-size:.82rem;
  text-decoration:none; transition:border-color .2s, color .2s;
}
.footer-quick-btn:hover { border-color:var(--gold); color:var(--gold); }
.footer-social { margin-top:14px; }

/* ─── Inner page hero (shorter than homepage) ─────────────────── */
.inner-hero {
  position:relative; min-height:340px; display:flex; align-items:center;
  background:var(--navy-dark); padding:120px 0 60px; overflow:hidden;
}
.inner-hero::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(11,31,58,.97) 0%, rgba(11,31,58,.80) 100%);
  z-index:1;
}
.inner-hero-bg {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:.18; z-index:0;
}
.inner-hero .container { position:relative; z-index:2; }
.inner-hero-tag {
  display:inline-block; padding:6px 16px; background:rgba(201,168,76,.12);
  border:1px solid rgba(201,168,76,.3); border-radius:20px; color:var(--gold);
  font-size:.82rem; font-weight:500; letter-spacing:.04em; text-transform:uppercase; margin-bottom:16px;
}
.inner-hero h1 {
  font-family:var(--font-serif); font-size:clamp(1.8rem,4vw,3rem); font-weight:600;
  color:var(--white); line-height:1.25; margin-bottom:14px;
}
.inner-hero p {
  color:rgba(255,255,255,.75); font-size:1.05rem; max-width:620px; line-height:1.7;
}
.inner-hero .breadcrumb {
  display:flex; gap:8px; align-items:center; margin-bottom:20px;
  font-size:.82rem; color:rgba(255,255,255,.55);
}
.inner-hero .breadcrumb a { color:rgba(255,255,255,.55); text-decoration:none; }
.inner-hero .breadcrumb a:hover { color:var(--gold); }
.inner-hero .breadcrumb span { color:var(--gold); }

/* ─── FAQ Accordion ───────────────────────────────────────────── */
.faq-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.faq-item {
  border:1px solid rgba(11,31,58,.10); border-radius:var(--radius);
  background:var(--off-white); overflow:hidden; transition:border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color:rgba(201,168,76,.45); box-shadow:var(--shadow-card); }
.faq-question {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  gap:16px; padding:20px 24px; background:transparent; border:none; cursor:pointer;
  text-align:left; color:var(--navy); font-size:1rem; font-weight:600; line-height:1.4;
}
.faq-question:hover, .faq-question:focus-visible { color:var(--gold); }
.faq-icon {
  flex-shrink:0; width:22px; height:22px; border:1.5px solid currentColor;
  color:var(--navy);
  border-radius:50%; display:grid; place-items:center; transition:transform .3s, color .2s;
}
.faq-icon::before { content:''; display:block; width:10px; height:2px; background:currentColor; }
.faq-icon::after { content:''; position:absolute; width:2px; height:10px; background:currentColor; transition:transform .3s; }
.faq-icon { position:relative; }
.faq-item.open .faq-icon::after { transform:rotate(90deg); }
.faq-item.open .faq-icon { color:var(--gold); border-color:var(--gold); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-answer-inner { padding:0 24px 20px; color:var(--text-muted); line-height:1.75; font-size:.95rem; background:var(--off-white); }
.faq-item.open .faq-answer { max-height:600px; }

/* ─── Legal pages ─────────────────────────────────────────────── */
.legal-content {
  max-width:860px; margin:0 auto; padding:60px 0 80px; color:var(--text-muted); line-height:1.85;
}
.legal-content h2 {
  font-family:var(--font-serif); font-size:1.4rem; font-weight:600;
  color:var(--white); margin:36px 0 12px;
}
.legal-content h3 { font-size:1.1rem; font-weight:600; color:var(--white); margin:24px 0 8px; }
.legal-content p { margin-bottom:14px; }
.legal-content ul { padding-left:22px; margin-bottom:14px; }
.legal-content ul li { margin-bottom:8px; }
.legal-content a { color:var(--gold); text-decoration:underline; }
.legal-meta {
  display:flex; gap:20px; flex-wrap:wrap; margin-bottom:32px;
  padding:16px 20px; background:rgba(201,168,76,.07); border-left:3px solid var(--gold);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}
.legal-meta span { font-size:.85rem; color:rgba(255,255,255,.6); }
.legal-meta strong { color:var(--white); }

/* ─── Honeypot & form additions ───────────────────────────────── */
.hp-field { position:absolute!important; width:1px!important; height:1px!important;
  padding:0!important; margin:-1px!important; overflow:hidden!important;
  clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.form-server-error {
  background:#fef2f2; border:1px solid #fca5a5; color:#991b1b;
  border-radius:var(--radius-sm); padding:12px 16px; font-size:.88rem; margin-bottom:20px;
}
.field-invalid { border-color:#ef4444!important; box-shadow:0 0 0 3px rgba(239,68,68,.12)!important; }
.enquiry-ref { font-size:.85rem; color:var(--text-muted); margin-top:4px!important; }
.enquiry-ref strong { color:var(--gold); }

/* ─── Success stories full page ───────────────────────────────── */
.stories-intro { max-width:700px; }
.disclaimer-note {
  text-align:center; font-size:.8rem; color:rgba(255,255,255,.35); margin-top:40px; font-style:italic;
}

/* ─── Countries page ──────────────────────────────────────────── */
.country-detail-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius); padding:28px; transition:border-color .2s,transform .2s;
}
.country-detail-card:hover { border-color:rgba(201,168,76,.25); transform:translateY(-2px); }
.country-detail-card .country-flag { font-size:2.5rem; margin-bottom:12px; }
.country-detail-card h3 { font-size:1.2rem; font-weight:600; color:var(--white); margin-bottom:8px; }
.country-detail-card ul { list-style:none; padding:0; margin:12px 0; }
.country-detail-card ul li {
  display:flex; align-items:flex-start; gap:8px; font-size:.88rem; color:var(--text-muted);
  margin-bottom:6px; padding-bottom:6px; border-bottom:1px solid rgba(255,255,255,.05);
}
.country-detail-card ul li:last-child { border:none; margin:0; padding:0; }
.country-detail-card ul li::before { content:'✓'; color:var(--gold); font-size:.75rem; flex-shrink:0; margin-top:2px; }

/* ─── Services page ───────────────────────────────────────────── */
.service-feature-block {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:60px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.service-feature-block:last-child { border:none; }
.service-feature-block.reverse { direction:rtl; }
.service-feature-block.reverse > * { direction:ltr; }
.service-feature-img {
  border-radius:var(--radius); overflow:hidden; aspect-ratio:4/3; background:rgba(255,255,255,.05);
  display:flex; align-items:center; justify-content:center;
}
.service-feature-img svg { opacity:.3; }
.service-feature-content h3 { font-family:var(--font-serif); font-size:1.5rem; color:var(--white); margin-bottom:12px; }
.service-feature-content p { color:var(--text-muted); line-height:1.75; margin-bottom:16px; }
.service-feature-content ul { list-style:none; padding:0; }
.service-feature-content ul li {
  display:flex; align-items:flex-start; gap:10px; color:var(--text-muted);
  font-size:.92rem; margin-bottom:8px;
}
.service-feature-content ul li::before { content:'●'; color:var(--gold); font-size:.5rem; margin-top:6px; flex-shrink:0; }

/* ─── Contact page ────────────────────────────────────────────── */
.contact-page-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:60px; }
.contact-page-info h3 { font-family:var(--font-serif); font-size:1.5rem; color:var(--white); margin-bottom:20px; }

/* ─── Responsive additions ────────────────────────────────────── */
@media (max-width:960px) {
  .service-feature-block { grid-template-columns:1fr; gap:30px; }
  .service-feature-block.reverse { direction:ltr; }
  .contact-page-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .inner-hero { min-height:260px; padding:100px 0 48px; }
  .inner-hero h1 { font-size:1.7rem; }
  .country-detail-card { padding:20px; }
  .legal-content { padding:40px 0 60px; }
  .faq-question { padding:16px 20px; font-size:.95rem; }
  .faq-answer-inner { padding:0 20px 16px; }
}


/* ─── FAQ: high-contrast, accessible light-theme accordion ───────────── */
#faq-groups .faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(11,31,58,.12);
  box-shadow: 0 3px 14px rgba(11,31,58,.06);
}
#faq-groups .faq-item.open {
  border-color: rgba(201,168,76,.65);
  box-shadow: 0 5px 18px rgba(11,31,58,.09);
}
#faq-groups .faq-question {
  color: var(--navy) !important;
  font-weight: 600;
  min-height: 64px;
  -webkit-tap-highlight-color: transparent;
}
#faq-groups .faq-question:hover,
#faq-groups .faq-question:focus-visible {
  color: var(--gold) !important;
  background: rgba(201,168,76,.055);
  outline: none;
}
#faq-groups .faq-item.open .faq-question {
  color: var(--navy) !important;
  background: rgba(201,168,76,.075);
}
#faq-groups .faq-icon {
  color: var(--navy);
  border-color: rgba(11,31,58,.35);
}
#faq-groups .faq-question:hover .faq-icon,
#faq-groups .faq-question:focus-visible .faq-icon,
#faq-groups .faq-item.open .faq-icon {
  color: var(--gold);
  border-color: var(--gold);
}
#faq-groups .faq-answer-inner {
  color: var(--text-muted);
  border-top: 1px solid rgba(11,31,58,.08);
  padding-top: 16px;
}
#faq-groups h2 {
  color: var(--navy) !important;
}
@media (max-width: 768px) {
  #faq-groups .faq-question { padding: 17px 16px; min-height: 60px; font-size: .95rem; }
  #faq-groups .faq-answer-inner { padding-left: 16px; padding-right: 16px; }
}
