/* ============================================
   VisaGlobe Consultants — Landing Page Styles
   Colorful, icon-rich, modern design system
   ============================================ */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #7c3aed;
  --accent: #f59e0b;
  --accent-hot: #ef4444;
  --teal: #14b8a6;
  --green: #10b981;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --orange: #f97316;
  --navy: #0f172a;
  --slate: #1e293b;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 78px;
  --topbar-h: 42px;
  --font: 'Poppins', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --gradient: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
  --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
  --gradient-cool: linear-gradient(135deg, #06b6d4, #2563eb);
  --gradient-green: linear-gradient(135deg, #10b981, #14b8a6);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h));
}

body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-accent {
  background: var(--gradient-warm);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}
.btn-accent:hover { transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ========== TOP BAR ========== */
.top-bar {
  background: linear-gradient(90deg, #0f172a, #1e3a8a, #4c1d95);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.top-bar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.top-bar-left a,
.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.88);
}
.top-bar-left a:hover { color: var(--accent); }
.top-bar-left i { color: var(--accent); font-size: 0.75rem; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.top-bar-right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.75rem;
}
.top-bar-right a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.top-bar-right .top-lang {
  width: auto;
  padding: 0 0.6rem;
  border-radius: 20px;
  gap: 0.3rem;
  font-size: 0.75rem;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(15,23,42,0.08);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25));
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-name span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}

.main-nav ul {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}

.main-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  height: min(88vh, 780px);
  min-height: 560px;
  overflow: hidden;
  color: white;
}

.hero-slider { height: 100%; position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 6s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem 0;
  animation: fadeUp 0.9s ease both;
}

.hero-slide.active .hero-content { animation: fadeUp 0.9s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero h1 span {
  background: linear-gradient(90deg, #fbbf24, #f472b6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content > p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-stats-mini {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stats-mini div {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
}
.hero-stats-mini strong {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-stats-mini span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
}

.hero-prev, .hero-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.hero-prev:hover, .hero-next:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dots button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 10px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
}
.hero-scroll a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: grid;
  place-items: center;
  color: white;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========== QUICK STRIP ========== */
.quick-strip {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 1rem;
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.quick-item:hover {
  background: var(--light);
  transform: translateY(-3px);
}

.quick-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.q1 { background: var(--gradient-cool); }
.q2 { background: var(--gradient); }
.q3 { background: var(--gradient-warm); }
.q4 { background: var(--gradient-green); }

.quick-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.quick-item p { font-size: 0.8rem; color: var(--muted); }

/* ========== SECTIONS ========== */
.section { padding: 5.5rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-header.light h2,
.section-header.light p { color: white; }
.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: white;
}

.section-header p { color: var(--muted); font-size: 1.05rem; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ========== SERVICES ========== */
.services { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    var(--gradient) border-box;
  transform: scale(1.02);
}
.service-card.featured:hover { transform: scale(1.02) translateY(-8px); }

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-warm);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.s1 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.s2 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.s3 { background: linear-gradient(135deg, #f59e0b, #f97316); }
.s4 { background: linear-gradient(135deg, #10b981, #059669); }
.s5 { background: linear-gradient(135deg, #6366f1, #2563eb); }
.s6 { background: linear-gradient(135deg, #ef4444, #ec4899); }

.service-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.service-features {
  margin-bottom: 1.25rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--slate);
  padding: 0.3rem 0;
}
.service-features i {
  color: var(--green);
  font-size: 0.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}
.service-link:hover { gap: 0.7rem; color: var(--secondary); }

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-float {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-float i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1rem;
}
.card-float-1 {
  bottom: 1.5rem;
  left: 1.5rem;
}
.card-float-1 i { background: var(--gradient-green); }
.card-float-2 {
  top: 1.5rem;
  right: -1rem;
}
.card-float-2 i { background: var(--gradient-warm); }
.about-float strong { display: block; font-size: 0.95rem; color: var(--navy); }
.about-float span { font-size: 0.75rem; color: var(--muted); }

.about-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.about-img-stack img {
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.about-content > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 1.02rem;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.about-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ap-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.a1 { background: var(--gradient); }
.a2 { background: var(--gradient-warm); }
.a3 { background: var(--gradient-green); }
.about-point h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.2rem; }
.about-point p { font-size: 0.88rem; color: var(--muted); }

/* ========== PARALLAX ========== */
.parallax-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  background:
    url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80') center/cover no-repeat;
  will-change: transform;
  transform: translateY(0);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.88), rgba(124,58,237,0.85), rgba(236,72,153,0.75));
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.parallax-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  opacity: 0.9;
}
.parallax-icons i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  animation: floatIcon 3s ease-in-out infinite;
}
.parallax-icons i:nth-child(2) { animation-delay: 0.4s; }
.parallax-icons i:nth-child(3) { animation-delay: 0.8s; }
.parallax-icons i:nth-child(4) { animation-delay: 1.2s; }

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

.parallax-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.85rem;
}
.parallax-content > p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}

.parallax-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.parallax-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.parallax-trust div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.parallax-trust i { color: #fbbf24; }

/* ========== DESTINATIONS ========== */
.destinations { background: var(--light); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dest-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dest-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-img { transform: scale(1.05); }
.dest-card { overflow: hidden; }

.dest-body { padding: 1.35rem 1.4rem 1.5rem; position: relative; }
.dest-flag {
  position: absolute;
  top: -28px;
  right: 1.25rem;
  font-size: 2rem;
  background: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.dest-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.35rem; }
.dest-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; }
.dest-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* ========== PROCESS ========== */
.process {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #4c1d95 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -100px;
  right: -100px;
}
.process::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -80px;
  left: -80px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
}

.step-num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 800;
  opacity: 0.15;
  line-height: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}
.process-step:nth-child(2) .step-icon { background: var(--gradient-cool); box-shadow: 0 10px 30px rgba(6,182,212,0.35); }
.process-step:nth-child(3) .step-icon { background: var(--gradient); box-shadow: 0 10px 30px rgba(124,58,237,0.35); }
.process-step:nth-child(4) .step-icon { background: var(--gradient-green); box-shadow: 0 10px 30px rgba(16,185,129,0.35); }

.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; opacity: 0.8; line-height: 1.55; }

/* ========== STATS + CHART ========== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  color: white;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.stat-card:hover { transform: translateY(-4px) scale(1.02); }
.stat-card i { font-size: 1.75rem; margin-bottom: 0.75rem; opacity: 0.9; }
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-card span { font-size: 0.85rem; opacity: 0.9; }

.c1 { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.c2 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.c3 { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.c4 { background: linear-gradient(135deg, #ea580c, #f59e0b); }

.chart-panel {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.chart-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.chart-tab {
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  background: var(--light);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.chart-tab.active {
  background: var(--gradient);
  color: white;
}
.chart-tab:hover:not(.active) { background: var(--border); }

.chart-wrap {
  flex: 1;
  min-height: 280px;
  position: relative;
}
.chart-wrap canvas { max-height: 300px; }

.chart-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========== WHY US ========== */
.why-us { background: linear-gradient(180deg, #fff, #f1f5f9); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.15rem;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: rotateY(180deg); }
.w1 { background: linear-gradient(135deg, #2563eb, #6366f1); }
.w2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.w3 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.w4 { background: linear-gradient(135deg, #ec4899, #a855f7); }
.w5 { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.w6 { background: linear-gradient(135deg, #f43f5e, #f97316); }

.why-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--muted); }

/* ========== TESTIMONIALS ========== */
.testimonials { background: white; overflow: hidden; }

.testimonial-slider { position: relative; }

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: linear-gradient(145deg, #f8fafc, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  min-width: 280px;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.t-author span {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.t-author span i { color: var(--primary); }

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.testimonial-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
  transition: var(--transition);
}
.testimonial-controls button:hover {
  transform: scale(1.08);
}

/* ========== PARTNERS ========== */
.partners {
  padding: 2.5rem 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--muted);
  opacity: 0.7;
  transition: var(--transition);
}
.partner-logo:hover { opacity: 1; color: var(--primary); }
.partner-logo i { font-size: 1.4rem; }

/* ========== CONTACT ========== */
.contact {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); }

.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-card:nth-child(2) .cc-icon { background: var(--gradient-warm); }
.contact-card:nth-child(3) .cc-icon { background: var(--gradient-green); }
.contact-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

.contact-form {
  background: white;
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.45rem;
}
.form-group label i { color: var(--primary); font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--light);
  color: var(--slate);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  position: relative;
}

.footer-wave {
  color: #eef2ff;
  line-height: 0;
  margin-top: -1px;
}
.footer-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.footer-main {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, #0f172a 0%, #0c1222 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}

.footer-brand .logo { margin-bottom: 1.15rem; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-tag { color: rgba(255,255,255,0.5); }
.footer-brand > p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 1.25rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: white;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col h4 i { color: var(--accent); font-size: 0.9rem; }

.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.75;
}
.footer-col ul a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 4px;
}
.footer-col ul a i { font-size: 0.75rem; width: 14px; }

.footer-newsletter p {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 0.3rem;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1.25rem;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  color: white;
  padding: 0.65rem 1rem;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.newsletter-form button:hover { transform: scale(1.08); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-badges i { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.15rem 0;
  background: #080d18;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  opacity: 0.7;
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a:hover { color: var(--accent); opacity: 1; }

/* ========== BACK TO TOP + TOAST ========== */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37,99,235,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px); }

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}
.toast i { color: var(--green); }
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .services-grid,
  .dest-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { transform: none; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    border-top: 1px solid var(--border);
  }
  .main-nav.open ul {
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open a {
    display: block;
    padding: 0.85rem 1rem;
  }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
}

@media (max-width: 900px) {
  .about-grid,
  .stats-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .quick-strip-grid { grid-template-columns: 1fr 1fr; }
  .card-float-2 { right: 1rem; }
  .top-bar-left span:last-child { display: none; }
}

@media (max-width: 640px) {
  :root { --topbar-h: auto; }
  .top-bar { height: auto; padding: 0.5rem 0; }
  .top-bar-inner { flex-direction: column; gap: 0.5rem; }
  .top-bar-left { gap: 0.75rem; font-size: 0.75rem; justify-content: center; }
  .hero { min-height: 520px; height: auto; padding: 3rem 0 5rem; }
  .hero-slide { position: relative; opacity: 0; height: 100%; min-height: 520px; }
  .hero-slide.active { position: absolute; }
  .services-grid,
  .dest-grid,
  .why-grid,
  .process-timeline,
  .stat-cards,
  .quick-strip-grid,
  .form-row,
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .parallax-trust { flex-direction: column; gap: 0.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-img-main img { height: 280px; }
  .quick-strip { margin-top: -30px; }
}

/* Scroll reveal helpers */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
