/* ================================================
   VISA TEAM PRO - Premium CSS Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────── */
:root {
  --primary:       #1e3a8a;
  --primary-light: #2563eb;
  --primary-dark:  #172554;
  --accent:        #0ea5e9;
  --accent-light:  #38bdf8;
  --gold:          #c9a96e;
  --gold-light:    #e8d5b7;
  --gold-dark:     #a0783a;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --light:         #f0f6ff;
  --gray-50:       #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-300:      #d1d5db;
  --gray-400:      #9ca3af;
  --gray-500:      #6b7280;
  --gray-600:      #4b5563;
  --gray-700:      #374151;
  --gray-800:      #1f2937;
  --dark:          #0f172a;

  --font-th:      'Sarabun', sans-serif;
  --font-en:      'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 12px rgba(0,0,0,.10);
  --shadow-md:  0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 40px rgba(0,0,0,.15);
  --shadow-xl:  0 30px 60px rgba(0,0,0,.20);
  --shadow-blue:0 8px 32px rgba(30,58,138,.25);

  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: all .35s cubic-bezier(.4,0,.2,1);
  --max-w: 1280px;
}

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

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

body {
  font-family: var(--font-th);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); letter-spacing: -.01em; }
h4 { font-size: 1.1rem; letter-spacing: -.005em; }

.display-title {
  font-family: var(--font-display);
  font-style: italic;
}

/* ── Utility ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-blue   { color: var(--primary); }
.text-accent { color: var(--accent); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.badge-gold {
  background: linear-gradient(135deg, rgba(201,169,110,.15), rgba(201,169,110,.05));
  border: 1px solid rgba(201,169,110,.4);
  color: var(--gold-dark);
}

.badge-blue {
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(14,165,233,.08));
  border: 1px solid rgba(37,99,235,.2);
  color: var(--primary-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .badge { margin-bottom: 14px; }

.section-header h2 {
  font-family: var(--font-display), var(--font-th);
  color: var(--primary-dark);
  margin-bottom: 14px;
  font-weight: 800;
}

.section-header p {
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-th);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.5);
  background: linear-gradient(135deg, #3b82f6, var(--primary-light));
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,169,110,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
}
.btn-outline-blue:hover {
  background: var(--primary-light);
  color: var(--white);
}

.btn-sm { padding: 10px 22px; font-size: .9rem; }
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.navbar.transparent { background: transparent; }

.navbar.scrolled {
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.navbar.scrolled .navbar-inner { height: 68px; }

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .logo-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-text .logo-sub {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Nav Links */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 12px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-left: 1px solid var(--gray-100);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  rotate: 45deg;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--gray-700);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown a:hover { background: var(--light); color: var(--primary); }
.dropdown .flag { font-size: 1.2rem; }

/* Navbar Right */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.lang-btn {
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  letter-spacing: .04em;
}
.lang-btn.active {
  background: var(--white);
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--primary-dark);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }

.mobile-sub {
  padding: 8px 0 8px 16px;
  display: none;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.mobile-sub a:hover { color: var(--accent-light); }

.mobile-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #0c4a6e 70%, #0f172a 100%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/4.jpg');
  background-size: cover;
  background-position: center 25%;
  opacity: .22;
  filter: saturate(0.4) brightness(0.9);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.8) 1px, transparent 0);
  background-size: 48px 48px;
}

/* Decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(37,99,235,.35), transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(14,165,233,.3), transparent 70%);
}
.hero-orb-3 {
  width: 300px; height: 300px;
  top: 30%; left: 30%;
  background: radial-gradient(circle, rgba(201,169,110,.15), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.35);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.country-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
}
.country-chip:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}
.country-chip .flag { font-size: 1.3rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.trust-text { color: rgba(255,255,255,.75); font-size: .88rem; }
.trust-text strong { color: var(--white); display: block; font-size: 1rem; }

/* Hero Right - Image Mockup */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 500px;
  height: 610px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.hero-card-main {
  width: 450px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-card-back {
  width: 420px;
  top: 50%; left: 52%;
  transform: translate(-50%, -55%) rotate(5deg);
  z-index: 1;
  opacity: .5;
}

.hc-img {
  width: 100%;
  height: 270px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: 16px;
}

.hc-flag { font-size: 2.8rem; margin-bottom: 8px; }

.hc-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.hc-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}

.hc-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.hc-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
}
.hc-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}

/* Floating badges on hero */
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: float 3s ease-in-out infinite;
}
.hero-float-1 { bottom: 30px; left: -20px; animation-delay: 0s; }
.hero-float-2 { top: 40px; right: -20px; animation-delay: 1.5s; }

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

.hero-float .f-icon { font-size: 1.6rem; }
.hero-float .f-text { font-size: .88rem; line-height: 1.3; }
.hero-float .f-text strong { display: block; font-size: 1rem; color: var(--primary); }
.hero-float .f-text span { color: var(--gray-500); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ══════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 32px 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: -.03em;
}
.stat-number .gold { color: var(--gold); }
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,.15);
}

.sc-header {
  position: relative;
  height: 195px;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.sc-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  filter: brightness(.65) saturate(.8);
}
.service-card:hover .sc-photo-bg {
  transform: scale(1.07);
  filter: brightness(.75) saturate(.9);
}

.sc-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,58,.96) 0%, rgba(10,22,58,.52) 55%, transparent 100%);
  z-index: 1;
}

.sc-header-inner {
  position: relative;
  z-index: 2;
  padding: 0 28px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sc-flag { font-size: 2.2rem; margin-bottom: 6px; }

.sc-country {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -.01em;
}

.sc-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}

.sc-body { padding: 24px 28px; flex: 1; background: var(--white); }

.sc-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.visa-type-tag {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--light);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid rgba(37,99,235,.15);
}

.sc-features { margin-bottom: 24px; }
.sc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray-700);
  font-size: .92rem;
  border-bottom: 1px solid var(--gray-100);
}
.sc-features li:last-child { border-bottom: none; }
.sc-features .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.sc-features .check::after {
  content: '✓';
  color: white;
  font-size: .65rem;
  font-weight: 700;
}

.sc-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ══════════════════════════════════════════════
   PHOTO SHOWCASE SECTION
══════════════════════════════════════════════ */
.photo-showcase { background: var(--white); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.showcase-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gray-200);
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.showcase-img-wrap:hover img { transform: scale(1.04); }

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,46,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity .35s ease;
}

.showcase-img-wrap:hover .showcase-overlay { opacity: 1; }

.showcase-label { color: #fff; }

.sc-label-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.showcase-label p {
  font-size: .8rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  max-width: none;
}

/* Stat strip */
.showcase-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.ss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}

.ss-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.ss-label {
  font-size: .8rem;
  color: var(--gray-500);
  white-space: nowrap;
}

.ss-divider {
  width: 1px;
  height: 44px;
  background: var(--gray-200);
  flex-shrink: 0;
}

[data-theme="dark"] .showcase-stats { background: #1c2b40; border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .ss-divider { background: rgba(255,255,255,.1); }

@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .ss-item { padding: 12px 20px; }
  .showcase-stats { gap: 0; padding: 20px; }
}

@media (max-width: 480px) {
  .showcase-stats { flex-direction: column; gap: 12px; }
  .ss-divider { width: 44px; height: 1px; }
}

/* ══════════════════════════════════════════════
   PACKAGES SECTION
══════════════════════════════════════════════ */
.packages-section { background: var(--white); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pkg-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pkg-card.featured {
  border: 2px solid var(--primary-light);
  box-shadow: var(--shadow-blue);
  transform: scale(1.04);
}
.pkg-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.pkg-ribbon {
  position: absolute;
  top: 20px; right: -28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 36px;
  transform: rotate(45deg);
  transform-origin: center;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pkg-header {
  padding: 36px 32px 28px;
  text-align: center;
}

.pkg-card.basic .pkg-header { background: linear-gradient(135deg, #f8fafc, #f0f6ff); }
.pkg-card.standard .pkg-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.pkg-card.premium .pkg-header { background: linear-gradient(135deg, #0f172a, #1e3a8a, #c9a96e40); }

.pkg-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.pkg-card.basic    .pkg-icon { background: rgba(37,99,235,.1); }
.pkg-card.standard .pkg-icon { background: rgba(255,255,255,.15); }
.pkg-card.premium  .pkg-icon { background: rgba(201,169,110,.2); }

.pkg-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.pkg-card.basic    .pkg-name { color: var(--primary); }
.pkg-card.standard .pkg-name { color: var(--white); }
.pkg-card.premium  .pkg-name { color: var(--gold-light); }

.pkg-tagline {
  font-size: .88rem;
}
.pkg-card.basic    .pkg-tagline { color: var(--gray-500); }
.pkg-card.standard .pkg-tagline { color: rgba(255,255,255,.65); }
.pkg-card.premium  .pkg-tagline { color: rgba(255,255,255,.65); }

.pkg-price-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-lg);
}
.pkg-card.basic    .pkg-price-box { background: rgba(37,99,235,.06); }
.pkg-card.standard .pkg-price-box { background: rgba(255,255,255,.1); }
.pkg-card.premium  .pkg-price-box { background: rgba(201,169,110,.15); }

.pkg-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pkg-card.basic    .pkg-label { color: var(--gray-400); }
.pkg-card.standard .pkg-label { color: rgba(255,255,255,.5); }
.pkg-card.premium  .pkg-label { color: var(--gold); }

.pkg-price {
  font-size: 1rem;
  font-weight: 500;
}
.pkg-card.basic    .pkg-price { color: var(--gray-700); }
.pkg-card.standard .pkg-price { color: rgba(255,255,255,.9); }
.pkg-card.premium  .pkg-price { color: var(--gold-light); }

.pkg-body { padding: 28px 32px 32px; background: var(--white); }

.pkg-features { margin-bottom: 28px; }
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  color: var(--gray-700);
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-50);
}
.pkg-features li:last-child { border-bottom: none; }

.pkg-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: .7rem;
  font-weight: 700;
  color: white;
}
.pkg-card.basic    .pkg-check { background: var(--primary-light); }
.pkg-card.standard .pkg-check { background: var(--accent); }
.pkg-card.premium  .pkg-check { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

/* ══════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════ */
.process-section { background: var(--light); }

.process-intro {
  text-align: center;
  margin-bottom: 64px;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* horizontal connector line across the top row */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 26px);
  right: calc(16.67% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent), var(--primary-light));
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,.2);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.process-step:hover::before { opacity: 1; }

.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(37,99,235,.06);
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-display);
  letter-spacing: -.04em;
}

.step-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Full process page */
.full-process-list {
  max-width: 900px;
  margin: 0 auto;
}

.fp-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.fp-step:last-child { border-bottom: none; }

.fp-num-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.fp-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fp-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-top: 8px;
}

.fp-content { flex: 1; }
.fp-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.fp-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.fp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--gray-700);
}
.fp-item::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-wrap { position: relative; }

.why-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gray-100);
  animation: float 4s ease-in-out infinite;
}
.why-badge-float.top-left {
  top: -20px; left: -24px;
  animation-delay: 0s;
}
.why-badge-float.bottom-right {
  bottom: 40px; right: -24px;
  animation-delay: 2s;
}

.wbf-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: -.025em;
}
.wbf-label { font-size: .73rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; }

.why-content { }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.why-feature {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.why-feature:hover {
  border-color: rgba(37,99,235,.2);
  background: var(--light);
}

.wf-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.wf-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.wf-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════ */
.gallery-section { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:nth-child(1) img { min-height: 100%; }
.gallery-item:nth-child(4) img { min-height: 260px; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,46,.82) 0%, transparent 55%);
  opacity: .65;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p  { color: rgba(255,255,255,.65); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testi-card {
  min-width: 360px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  padding: 30px 32px;
  flex-shrink: 0;
  transition: border-color .3s ease, background .3s ease;
}
.testi-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
}

.testi-info { }
.testi-name { font-size: .95rem; font-weight: 700; color: var(--white); }
.testi-detail { font-size: .8rem; color: rgba(255,255,255,.68); }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.testi-btn:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
}

.testi-dots {
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transition: var(--transition);
  cursor: pointer;
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  background: var(--white);
  padding: 96px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0c4a6e 100%);
  border-radius: var(--radius-xl);
  padding: 76px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  top: -200px; right: -150px;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,169,110,.08);
  bottom: -100px; left: -80px;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-box p {
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative; z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative; z-index: 1;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  position: relative; z-index: 1;
}

.channel-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}
.channel-chip:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}
.channel-chip .ch-icon { font-size: 1.4rem; }

/* ══════════════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════════════ */
.blog-section { background: var(--off-white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.blog-card:hover .blog-img { transform: scale(1.04); }

.blog-body { padding: 24px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--light);
  color: var(--primary-light);
  font-size: .75rem;
  font-weight: 600;
}
.blog-date { font-size: .78rem; color: var(--gray-400); }

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--primary-light);
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.blog-link:hover { gap: 8px; }

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info { }

.contact-channel-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.cc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.cc-card:hover {
  border-color: rgba(37,99,235,.25);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.cc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cc-icon.line   { background: linear-gradient(135deg, #00b900, #00a000); }
.cc-icon.phone  { background: linear-gradient(135deg, var(--primary-light), var(--accent)); }
.cc-icon.email  { background: linear-gradient(135deg, #ea4335, #c5221f); }
.cc-icon.hours  { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

.cc-label { font-size: .78rem; color: var(--gray-400); margin-bottom: 2px; }
.cc-value { font-size: 1rem; font-weight: 700; color: var(--primary-dark); }
.cc-sub   { font-size: .8rem; color: var(--gray-500); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .form-group:nth-last-child(1),
.form-grid .form-group.full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-label .required { color: #ef4444; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-th);
  font-size: .92rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.3); }

.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 600px; position: relative; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  position: relative;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .footer-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand .footer-logo .logo-main {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
}
.footer-brand .footer-logo .logo-sub {
  font-size: .7rem; color: rgba(255,255,255,.55); letter-spacing: .08em;
}

.footer-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.62);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fci-icon { font-size: 1rem; margin-top: 2px; }
.fci-text { font-size: .88rem; color: rgba(255,255,255,.68); line-height: 1.6; }
.fci-text strong { display: block; color: rgba(255,255,255,.88); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}
.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  transition: var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════ */
.float-btns {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: .88rem;
  font-weight: 700;
  transition: var(--transition);
  color: var(--white);
}
.float-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.float-btn .fbt-icon { font-size: 1.4rem; }

.float-btn.line-btn {
  background: linear-gradient(135deg, #00c300, #00a000);
}
.float-btn.phone-btn {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.float-btn .fbt-label { display: flex; flex-direction: column; line-height: 1.1; }
.float-btn .fbt-small { font-size: .72rem; opacity: .8; font-weight: 400; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes fadeIn    { from { opacity: 0; }                        to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
@keyframes fadeInDown{ from { opacity: 0; transform: translateY(-20px);}  to { opacity: 1; transform: none; } }
@keyframes scaleIn   { from { opacity: 0; transform: scale(.9); }  to { opacity: 1; transform: none; } }
@keyframes pressDown {
  0%   { transform: scale(.94); }
  55%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* ── Scroll Reveal — base (visible state works with/without motion) ── */
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ── Stagger delay utilities ── */
.delay-1 { transition-delay: 80ms;  }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }
.delay-5 { transition-delay: 400ms; }
.delay-6 { transition-delay: 480ms; }

/* ══ All motion: wrapped in no-preference ══════ */
@media (prefers-reduced-motion: no-preference) {

  /* ── Scroll Reveal ── */
  .reveal       { opacity: 0; transform: translateY(32px);  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
  .reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
  .reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
  .reveal-scale { opacity: 0; transform: scale(.93);        transition: opacity 600ms cubic-bezier(.16,1,.3,1), transform 600ms cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }

  /* ── Page Load — Navbar ── */
  .navbar { animation: fadeInDown 700ms cubic-bezier(.16,1,.3,1) 500ms both; }

  /* ── Page Load — Home Hero (staggered after loader ~800ms) ── */
  .hero .hero-badge     { animation: scaleIn  600ms cubic-bezier(.16,1,.3,1) 750ms  both; }
  .hero .hero-title     { animation: fadeInUp 750ms cubic-bezier(.16,1,.3,1) 900ms  both; }
  .hero .hero-subtitle  { animation: fadeInUp 700ms cubic-bezier(.16,1,.3,1) 1050ms both; }
  .hero .hero-countries { animation: fadeInUp 650ms cubic-bezier(.16,1,.3,1) 1150ms both; }
  .hero .hero-actions   { animation: fadeInUp 650ms cubic-bezier(.16,1,.3,1) 1280ms both; }
  .hero .hero-right     { animation: fadeInUp 800ms cubic-bezier(.16,1,.3,1) 850ms  both; }
  .hero .scroll-indicator { animation: fadeIn 600ms ease 1700ms both; }

  /* ── Page Load — Inner Page Hero ── */
  .page-hero .badge   { animation: scaleIn  600ms cubic-bezier(.16,1,.3,1) 800ms  both; }
  .page-hero h1       { animation: fadeInUp 750ms cubic-bezier(.16,1,.3,1) 900ms  both; }
  .page-hero > .container > p { animation: fadeInUp 650ms cubic-bezier(.16,1,.3,1) 1050ms both; }

  /* ── Hover — Nav Link Underline ── */
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 250ms cubic-bezier(.16,1,.3,1);
  }
  .nav-link:hover::after,
  .nav-link.active::after { transform: scaleX(1); }

  /* ── Hover — Service Cards ── */
  .service-card {
    transition: transform 350ms cubic-bezier(.16,1,.3,1),
                box-shadow 350ms cubic-bezier(.16,1,.3,1),
                border-color 300ms ease;
  }
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 56px rgba(30,58,138,.18), 0 8px 20px rgba(0,0,0,.1);
    border-color: rgba(37,99,235,.25);
  }

  /* ── Hover — Package Cards ── */
  .pkg-card { transition: transform 350ms cubic-bezier(.16,1,.3,1), box-shadow 350ms cubic-bezier(.16,1,.3,1); }
  .pkg-card:hover                { transform: translateY(-10px); box-shadow: 0 28px 56px rgba(30,58,138,.2); }
  .pkg-card.featured:hover       { transform: scale(1.04) translateY(-10px); }

  /* ── Hover — Process Steps ── */
  .process-step {
    transition: transform 300ms cubic-bezier(.16,1,.3,1),
                box-shadow 300ms cubic-bezier(.16,1,.3,1),
                border-color 250ms ease;
  }
  .process-step:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(30,58,138,.15); border-color: rgba(37,99,235,.2); }

  /* ── Hover — Why Features ── */
  .why-feature { transition: transform 300ms cubic-bezier(.16,1,.3,1), background 250ms ease, border-color 250ms ease; }
  .why-feature:hover { transform: translateY(-4px); }

  /* ── Hover — Blog Cards (image zoom) ── */
  .blog-card { overflow: hidden; }
  .blog-card .blog-img,
  .blog-card > a img { transition: transform 500ms cubic-bezier(.16,1,.3,1); display: block; }
  .blog-card:hover .blog-img,
  .blog-card:hover > a img { transform: scale(1.06); }

  /* ── Hover — Buttons (GPU transform + opacity only) ── */
  .btn { transition: transform 200ms cubic-bezier(.16,1,.3,1), box-shadow 200ms ease; }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,99,235,.5); }
  .btn-gold:hover    { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,169,110,.5); }
  .btn-outline:hover { transform: translateY(-2px); }

  /* ── Click — Bounce feedback ── */
  .btn.btn-clicked { animation: pressDown 380ms cubic-bezier(.34,1.56,.64,1) forwards; }

  /* ── Hover — Floating Buttons ── */
  .float-btn { transition: transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms ease; }
  .float-btn:hover  { transform: translateX(-8px) scale(1.05); }
  .float-btn:active { transform: translateX(-4px) scale(.97); transition-duration: 80ms; }

  /* ── Hover — Scroll-to-top ── */
  .scroll-top { transition: transform 250ms cubic-bezier(.16,1,.3,1), opacity 300ms ease; }
  .scroll-top:hover  { transform: translateY(-5px); }
  .scroll-top:active { transform: scale(.9); transition-duration: 80ms; }

  /* ── Hover — Country Chips ── */
  .country-chip { transition: transform 200ms cubic-bezier(.16,1,.3,1), box-shadow 200ms ease; }
  .country-chip:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 6px 16px rgba(0,0,0,.2); }

  /* ── Hover — Theme toggle ── */
  .theme-toggle:hover { transform: scale(1.15) rotate(12deg); }

  /* ── Parallax hint ── */
  .hero-bg-image, .hero-pattern { will-change: transform; }
}

/* ── Reduced motion — expose everything instantly ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .navbar, .hero .hero-badge, .hero .hero-title, .hero .hero-subtitle,
  .hero .hero-countries, .hero .hero-actions, .hero .hero-right,
  .page-hero .badge, .page-hero h1, .page-hero > .container > p { animation: none !important; }
}

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-accent-img {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  bottom: -30px;
  right: -30px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--primary-light);
  padding: 3px;
}

.team-name { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.team-role { font-size: .85rem; color: var(--primary-light); font-weight: 600; margin-bottom: 8px; }
.team-bio  { font-size: .83rem; color: var(--gray-500); line-height: 1.6; }

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

.value-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-title { font-size: .95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.value-desc  { font-size: .83rem; color: var(--gray-500); line-height: 1.65; }

/* ══════════════════════════════════════════════
   COUNTRY PAGES
══════════════════════════════════════════════ */
.country-hero-flag { font-size: 4rem; margin-bottom: 16px; }

.visa-types-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-th);
  transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.visa-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.visa-detail-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.visa-sidebar-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.vsc-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.vsc-items { display: flex; flex-direction: column; gap: 14px; }
.vsc-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}
.vsc-item:last-child { border-bottom: none; }
.vsc-item .label { color: rgba(255,255,255,.55); }
.vsc-item .value { font-weight: 600; color: var(--white); }

/* Checklist */
.doc-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--gray-700);
}
.doc-item .di-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content       { grid-template-columns: 1fr; gap: 48px; }
  .hero-right         { display: none; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid           { grid-template-columns: 1fr; }
  .why-image-wrap     { display: none; }
  .about-story        { grid-template-columns: 1fr; }
  .about-img-wrap     { display: none; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .visa-info-grid     { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-menu        { display: none; }
  .navbar-right .btn  { display: none; }
  .hamburger          { display: flex; }
  .navbar-inner       { padding: 0 20px; }

  .section-pad        { padding: 64px 0; }
  .container          { padding: 0 16px; }

  .hero-content       { padding-top: 100px; }
  .hero-title         { font-size: 1.9rem; }

  .stats-grid         { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item          { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 20px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .packages-grid      { grid-template-columns: 1fr; }
  .pkg-card.featured  { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-8px); }

  .process-timeline   { grid-template-columns: 1fr; }

  .gallery-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-row: auto; grid-column: 1 / -1; }
  .gallery-item:nth-child(4) { grid-column: auto; }

  .blog-grid          { grid-template-columns: 1fr; }

  .testimonials-track { }
  .testi-card         { min-width: calc(100vw - 48px); }

  .cta-box            { padding: 48px 24px; }

  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom      { flex-direction: column; gap: 12px; text-align: center; }

  .float-btns         { bottom: 20px; right: 16px; }
  .float-btn          { padding: 12px 16px; font-size: .82rem; }
  .float-btn .fbt-label span { display: none; }

  .hero-actions .btn  { width: 100%; justify-content: center; }
  .hero-trust         { gap: 16px; }

  .services-grid      { grid-template-columns: 1fr; }
  .sc-header          { height: 170px; }
  .sc-header-inner    { padding: 0 20px 18px; }
  .sc-body            { padding: 20px 20px; }
  .sc-footer          { padding: 18px 20px; flex-direction: column; }
  .sc-footer .btn     { width: 100%; justify-content: center; }

  .form-grid          { grid-template-columns: 1fr; }
  .contact-form-wrap  { padding: 24px; }

  .fp-items           { grid-template-columns: 1fr; }

  .doc-checklist      { grid-template-columns: 1fr; }

  .values-grid        { grid-template-columns: 1fr 1fr; }
  .team-grid          { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-countries     { gap: 8px; }
  .country-chip       { font-size: .8rem; padding: 6px 12px; }
  .hero-badge         { font-size: .75rem; }
  .values-grid        { grid-template-columns: 1fr; }
  .lang-toggle        { display: none; }
  .navbar-right .lang-toggle-mobile { display: flex; }
}

/* ── Page Transitions ────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader-logo img { width: 72px; height: 72px; border-radius: 50%; animation: pulse 1.5s infinite; }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  animation: load-fill 1.2s ease-in-out forwards;
}
@keyframes load-fill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ══════════════════════════════════════════════
   DARK MODE
══════════════════════════════════════════════ */

/* Smooth transition — added by JS briefly during theme switch */
.theme-transition *,
.theme-transition *::before,
.theme-transition *::after {
  transition:
    background-color 200ms ease,
    border-color     200ms ease,
    color            200ms ease,
    box-shadow       200ms ease !important;
}

/* Toggle button */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,.2); color: white; transform: scale(1.1); }
.theme-toggle .ti-sun  { display: none; }
.theme-toggle .ti-moon { display: block; }
[data-theme="dark"] .theme-toggle .ti-sun  { display: block; }
[data-theme="dark"] .theme-toggle .ti-moon { display: none; }

/* ── CSS Variable Overrides ── */
[data-theme="dark"] {
  color-scheme: dark;

  /* Semantic light bg vars → dark surfaces (safe: only used as backgrounds) */
  --off-white: #111927;
  --light:     #162033;

  /* Gray scale — inverted for text & borders */
  --gray-50:  #0d1521;
  --gray-100: #172235;
  --gray-200: #1e2d45;
  --gray-300: #2a3f5c;
  --gray-400: #4d6880;
  --gray-500: #6e8ea6;
  --gray-600: #96b4c8;
  --gray-700: #bdd4e4;
  --gray-800: #daeaf6;
  --dark:     #e4eef8;

  /* Shadows — stronger on dark */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.45);
  --shadow:     0 4px 12px rgba(0,0,0,.55);
  --shadow-md:  0 8px 24px rgba(0,0,0,.65);
  --shadow-lg:  0 20px 40px rgba(0,0,0,.75);
  --shadow-xl:  0 30px 60px rgba(0,0,0,.85);
  --shadow-blue:0 8px 32px rgba(59,130,246,.4);
}

/* ── Body ── */
[data-theme="dark"] body { background: #0d1521; color: var(--dark); }

/* ── White card surfaces → dark surface ── */
[data-theme="dark"] .service-card,
[data-theme="dark"] .pkg-body,
[data-theme="dark"] .process-step,
[data-theme="dark"] .why-badge-float,
[data-theme="dark"] .hero-float,
[data-theme="dark"] .testi-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .contact-form-wrap,
[data-theme="dark"] .cc-card,
[data-theme="dark"] .dropdown,
[data-theme="dark"] details,
[data-theme="dark"] .value-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .visa-detail-card,
[data-theme="dark"] .doc-checklist,
[data-theme="dark"] .visa-sidebar-card { background: #1c2b40; }

/* ── Section backgrounds ── */
[data-theme="dark"] .packages-section,
[data-theme="dark"] .why-section,
[data-theme="dark"] .blog-section,
[data-theme="dark"] .contact-section { background: #0d1521; }

/* ── Section headings on LIGHT bg sections (services, process) ── */
[data-theme="dark"] .section-header h2,
[data-theme="dark"] .step-title,
[data-theme="dark"] .fp-title,
[data-theme="dark"] .wf-title { color: var(--gray-800); }

/* ── Section headings on DARK bg sections ── */
[data-theme="dark"] .packages-section .section-header h2,
[data-theme="dark"] .why-section .section-header h2,
[data-theme="dark"] .blog-section .section-header h2 { color: #e2e8f0; }
[data-theme="dark"] .packages-section .section-header p,
[data-theme="dark"] .why-section .section-header p,
[data-theme="dark"] .blog-section .section-header p { color: #94a3b8; }
[data-theme="dark"] .packages-section .section-header .badge-blue,
[data-theme="dark"] .why-section .section-header .badge-blue,
[data-theme="dark"] .blog-section .section-header .badge-blue { color: #93b4ff; }
[data-theme="dark"] .why-section .wf-title { color: #e2e8f0; }
[data-theme="dark"] .why-section .wf-desc  { color: #94a3b8; }
[data-theme="dark"] .why-section h2        { color: #e2e8f0; }

/* ── Package basic card (light header → dark) ── */
[data-theme="dark"] .pkg-card.basic .pkg-header     { background: linear-gradient(135deg, #1e2d45, #1a3060); }
[data-theme="dark"] .pkg-card.basic .pkg-name        { color: #60a5fa; }
[data-theme="dark"] .pkg-card.basic .pkg-tagline     { color: var(--gray-600); }
[data-theme="dark"] .pkg-card.basic .pkg-label       { color: var(--gray-500); }
[data-theme="dark"] .pkg-card.basic .pkg-price       { color: var(--gray-700); }
[data-theme="dark"] .pkg-card.basic .pkg-price-box   { background: rgba(96,165,250,.06); }
[data-theme="dark"] .pkg-card                        { border-color: var(--gray-200); }

/* ── Form elements ── */
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: var(--light);
  border-color: var(--gray-300);
  color: var(--dark);
}
[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder { color: var(--gray-500); }
[data-theme="dark"] select option                { background: #162033; }

/* ── Navbar dropdown ── */
[data-theme="dark"] .dropdown              { border-color: var(--gray-300); }
[data-theme="dark"] .dropdown a            { color: var(--gray-700); }
[data-theme="dark"] .dropdown a:hover      { background: var(--light); color: var(--dark); }

/* ── Divider borders ── */
[data-theme="dark"] .sc-features li,
[data-theme="dark"] .sc-footer,
[data-theme="dark"] .pkg-features li,
[data-theme="dark"] .fp-step { border-color: rgba(255,255,255,.07); }

/* ── Service card inner in dark mode ── */
[data-theme="dark"] .sc-body,
[data-theme="dark"] .sc-footer { background: #1c2b40; }
[data-theme="dark"] .visa-type-tag {
  background: rgba(37,99,235,.15);
  border-color: rgba(37,99,235,.25);
  color: #93b4ff;
}
[data-theme="dark"] .sc-features li { color: var(--gray-700); }

/* ── Contact channel cards & form ── */
[data-theme="dark"] .cc-card  { border-color: var(--gray-300); }
[data-theme="dark"] .cc-label { color: var(--gray-600); }
[data-theme="dark"] .cc-value { color: var(--gray-800); }
[data-theme="dark"] .form-title { color: var(--gray-800); }

/* ── Footer always dark bg — prevent --dark variable flip ── */
[data-theme="dark"] .footer { background: #091320; }

/* ── Testimonial & blog cards ── */
[data-theme="dark"] .testi-card,
[data-theme="dark"] .blog-card { border-color: var(--gray-300); }
[data-theme="dark"] .blog-title   { color: var(--gray-800); }
[data-theme="dark"] .blog-date    { color: var(--gray-500); }
[data-theme="dark"] .blog-excerpt { color: var(--gray-600); }

/* ── Values & Team cards text ── */
[data-theme="dark"] .value-title { color: var(--gray-800); }
[data-theme="dark"] .value-desc  { color: var(--gray-600); }
[data-theme="dark"] .team-name   { color: var(--gray-800); }
[data-theme="dark"] .team-bio    { color: var(--gray-600); }

/* ── FAQ ── */
[data-theme="dark"] details         { border-color: var(--gray-300) !important; }
[data-theme="dark"] details summary { color: var(--gray-800) !important; }

/* ── Visa type tags ── */
[data-theme="dark"] .visa-type-tag {
  background: var(--light);
  border-color: rgba(96,165,250,.2);
  color: #60a5fa;
}

/* ── Hero floating cards ── */
[data-theme="dark"] .hero-float                    { background: rgba(28,43,64,.95); }
[data-theme="dark"] .hero-float .f-text strong     { color: #60a5fa; }

/* ── Badges ── */
[data-theme="dark"] .badge-gold { background: rgba(201,169,110,.1);  border-color: rgba(201,169,110,.3); color: #c9a96e; }
[data-theme="dark"] .badge-blue { background: rgba(96,165,250,.1); border-color: rgba(96,165,250,.2); color: #60a5fa; }

/* ── Packages comparison table ── */
[data-theme="dark"] .compare-table-wrap                   { background: #1c2b40; }
[data-theme="dark"] .compare-table th                     { background: #162033; color: var(--gray-800); border-color: var(--gray-200); }
[data-theme="dark"] .compare-table td                     { background: #1c2b40; border-color: var(--gray-200); color: var(--dark); }
[data-theme="dark"] .compare-table tr:nth-child(even) td  { background: #162033; }

/* ── Country page visa tabs ── */
[data-theme="dark"] .tab-btn:not(.active) { background: var(--light); color: var(--gray-700); }

/* ── LINE QR Box ─────────────────────────────── */
.line-qr-box {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #06c755 0%, #00a844 100%);
  border-radius: var(--radius-xl);
  color: white;
}
.line-qr-img {
  flex-shrink: 0;
  text-align: center;
}
.line-qr-img img {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  border: 4px solid white;
  background: #fff;
  display: block;
  object-fit: contain;
}
.line-qr-scan-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-top: 6px;
  opacity: .85;
}
.line-qr-logo { font-size: 2rem; margin-bottom: 2px; }
.line-qr-title { font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.line-qr-id { font-size: 1.5rem; font-weight: 900; letter-spacing: -.5px; margin-bottom: 8px; }
.line-qr-desc { font-size: .85rem; opacity: .85; line-height: 1.55; margin-bottom: 16px; }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #06c755;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: .95rem;
  transition: all .2s;
}
.btn-line:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.footer-qr {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.25);
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .line-qr-box { flex-direction: column; text-align: center; }
  .line-qr-img img { width: 150px; height: 150px; }
}

/* ── FAQ Section ───────────────────────────────── */
.faq-section { background: var(--off-white); }
[data-theme="dark"] .faq-section { background: var(--gray-800); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
[data-theme="dark"] .faq-item { background: var(--gray-700); border-color: rgba(255,255,255,.08); }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item[open] { border-color: var(--primary-light); box-shadow: var(--shadow-blue); }

.faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  transition: color .2s;
  user-select: none;
}
[data-theme="dark"] .faq-q { color: var(--gray-100); }
.faq-q::-webkit-details-marker { display: none; }
.faq-item[open] .faq-q { color: var(--primary-light); }

.faq-icon { flex-shrink: 0; width: 28px; height: 28px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--primary); transition: transform .3s, background .2s; }
[data-theme="dark"] .faq-icon { background: rgba(255,255,255,.1); color: var(--accent-light); }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--primary-light); color: #fff; }

.faq-a { padding: 0 24px 20px; border-top: 1px solid var(--gray-100); }
[data-theme="dark"] .faq-a { border-top-color: rgba(255,255,255,.06); }
.faq-a p { color: var(--gray-600); line-height: 1.7; font-size: .95rem; padding-top: 16px; }
[data-theme="dark"] .faq-a p { color: var(--gray-300); }

/* ── WhatsApp Float Button ─────────────────────── */
.whatsapp-btn { background: linear-gradient(135deg, #25d366, #128c7e); }
.whatsapp-btn:hover { background: linear-gradient(135deg, #20ba58, #0e7a6e); }
