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

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #ff1a1a;
  --gold: #FFD700;
  --gold-dark: #cc9900;
  --gold-light: #ffe566;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray: #888;
  --light-gray: #f0f0f0;
  --dark: #0a0a0a;
  --dark2: #111;
  --dark3: #1a1a1a;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-red: 0 10px 40px rgba(204,0,0,0.25);
  --shadow-gold: 0 10px 40px rgba(255,215,0,0.25);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid rgba(204,0,0,0.5);
  border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(.magnetic:hover) .cursor-ring {
  width: 60px; height: 60px;
  border-color: var(--gold);
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--white); letter-spacing: 4px;
  margin-bottom: 1.5rem;
  animation: pulseLogo 1.5s ease infinite;
}
.pre-logo span { color: var(--gold); }
.pre-bar {
  width: 220px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px; overflow: hidden;
  margin: 0 auto 1rem;
}
.pre-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 10px;
  transition: width 0.05s linear;
}
.pre-text { color: var(--gray); font-size: 0.85rem; letter-spacing: 2px; }

@keyframes pulseLogo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  padding: 0.5rem 5%;
  position: relative; z-index: 200;
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left span {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  display: flex; align-items: center; gap: 6px;
}
.topbar-left span i { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none; border: none; cursor: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem; font-weight: 600;
  font-family: 'Outfit', sans-serif;
  padding: 2px 6px; border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); background: rgba(255,215,0,0.12); }
.lang-toggle span { color: rgba(255,255,255,0.3); }
.topbar-wa {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: white;
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: none;
}
.topbar-wa:hover { background: #1da851; transform: translateY(-1px); }

/* ── NAVBAR ── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204,0,0,0.2);
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 5%; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(204,0,0,0.4);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 900;
  color: var(--white); line-height: 1;
  letter-spacing: 2px;
}
.logo-text span { color: var(--gold); }
.logo-text small {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 0.6rem; font-weight: 400;
  color: rgba(255,255,255,0.4); letter-spacing: 4px;
  margin-top: 2px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 8px;
  transition: all var(--transition); cursor: none;
  position: relative;
}
.nav-links a::before {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a:hover::before { left: 10%; right: 10%; }
.nav-order {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  box-shadow: 0 4px 15px rgba(204,0,0,0.4) !important;
}
.nav-order:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(204,0,0,0.5) !important; }
.nav-order::before { display: none !important; }

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 80px 5%;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #0a0a0a 0%, #1a0000 40%, #0d0000 70%, #0a0a0a 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(204,0,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255,215,0,0.05) 0%, transparent 50%);
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}
.skyline-silhouette {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cpath fill='rgba(204,0,0,0.08)' d='M0,200 L0,140 L20,140 L20,100 L40,100 L40,80 L60,80 L60,140 L80,140 L80,60 L90,60 L90,40 L100,40 L100,30 L110,30 L110,60 L120,60 L120,140 L140,140 L140,90 L160,90 L160,50 L170,50 L170,30 L180,30 L180,50 L190,50 L190,90 L220,90 L220,110 L240,110 L240,70 L260,70 L260,40 L270,40 L270,20 L280,20 L280,10 L290,10 L290,20 L300,20 L300,40 L310,40 L310,70 L340,70 L340,90 L360,90 L360,120 L380,120 L380,80 L400,80 L400,50 L420,50 L420,80 L440,80 L440,120 L460,120 L460,100 L480,100 L480,60 L500,60 L500,40 L520,40 L520,20 L530,20 L530,10 L540,10 L540,20 L550,20 L550,40 L570,40 L570,60 L580,60 L580,100 L600,100 L600,130 L620,130 L620,80 L640,80 L640,50 L660,50 L660,80 L680,80 L680,130 L700,130 L700,110 L720,110 L720,70 L740,70 L740,90 L760,90 L760,110 L780,110 L780,130 L800,130 L800,100 L820,100 L820,60 L840,60 L840,40 L860,40 L860,60 L880,60 L880,100 L900,100 L900,130 L920,130 L920,90 L940,90 L940,60 L960,60 L960,80 L980,80 L980,110 L1000,110 L1000,130 L1020,130 L1020,100 L1040,100 L1040,70 L1060,70 L1060,50 L1080,50 L1080,70 L1100,70 L1100,100 L1120,100 L1120,140 L1140,140 L1140,120 L1160,120 L1160,140 L1200,140 L1200,200 Z'/%3E%3C/svg%3E") bottom center / cover no-repeat;
}

.hero-content {
  position: relative; z-index: 5;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-size: 0.85rem; font-weight: 600;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--red), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-and { color: rgba(255,255,255,0.6); }
.hero-world {
  font-style: normal;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  background-size: 200% 100%;
  animation: shimmerText 3s ease infinite;
}
@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 580px;
  margin-bottom: 2rem;
}
.trust-badges {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 7px 15px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition);
}
.badge i { color: var(--gold); }
.badge:hover {
  background: rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.3);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* BUTTONS */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  box-shadow: var(--shadow-red);
  transition: all var(--spring); cursor: none;
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  opacity: 0; transition: opacity var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(204,0,0,0.45); }
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary span, .btn-hero-primary i { position: relative; z-index: 1; }

.btn-hero-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,0.12);
  border: 2px solid #25D366;
  color: #25D366; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  transition: all var(--spring); cursor: none;
}
.btn-hero-wa:hover {
  background: #25D366; color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.3);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); text-decoration: none;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  box-shadow: var(--shadow-red);
  transition: all var(--spring); cursor: none;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(204,0,0,0.4);
}

/* HERO STATS */
.hero-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.hstat { text-align: center; padding: 0 1.8rem; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--gold);
  display: block; line-height: 1;
}
.hstat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.78rem; letter-spacing: 1px;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--gold); border-radius: 3px;
  animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255,215,0,0.15);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  padding: 1rem 0; overflow: hidden;
}
.strip-track {
  display: flex; gap: 3rem; width: max-content;
  animation: stripScroll 25s linear infinite;
}
.strip-track span {
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 500;
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
}
.strip-track span i { color: var(--gold); }
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CONTAINER ── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }

/* ── SECTION HEAD ── */
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 0.7rem;
  position: relative; padding-left: 20px;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 2px; background: var(--gold);
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--dark);
  letter-spacing: -1px; margin-bottom: 1rem;
  line-height: 1.15;
}
.section-head p { color: var(--gray); font-size: 1.05rem; line-height: 1.7; max-width: 580px; }

/* ── SERVICES ── */
#services { padding: 100px 0; background: var(--off-white); }
.service-block {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow var(--transition);
}
.service-block:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.srv-header {
  display: flex; align-items: flex-start; gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-gray);
}
.srv-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(204,0,0,0.3);
}
.srv-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--dark);
  margin-bottom: 0.4rem;
}
.srv-header p { color: var(--gray); font-size: 0.95rem; }

.srv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.srv-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 0.8rem;
  cursor: none;
}
.srv-card:hover {
  border-color: var(--red);
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(204,0,0,0.12);
}
.srv-card-icon {
  width: 44px; height: 44px;
  background: rgba(204,0,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--red);
  transition: all var(--transition);
}
.srv-card:hover .srv-card-icon {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(204,0,0,0.3);
}
.srv-card h4 {
  font-size: 1rem; font-weight: 700; color: var(--dark);
}
.srv-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; flex: 1; }
.delivery-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,215,0,0.12); color: var(--gold-dark);
  font-size: 0.78rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
}
.delivery-badge i { font-size: 0.75rem; }
.srv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: var(--white);
  padding: 0.6rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; text-align: center;
  transition: all var(--transition); cursor: none;
  border: 2px solid var(--red);
  box-shadow: 0 4px 15px rgba(204,0,0,0.25);
}
.srv-btn:hover {
  background: transparent; color: var(--red);
  transform: translateY(-2px);
}
.srv-btn.gold {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}
.srv-btn.gold:hover { background: transparent; color: var(--gold-dark); border-color: var(--gold-dark); }

/* Currency Grid */
.currency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-bottom: 2rem;
}
.currency-card {
  background: linear-gradient(135deg, #f9fff4, #e8f5e9);
  border: 2px solid rgba(26,140,78,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition); cursor: none;
}
.currency-card:hover {
  border-color: #1a8c4e;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(26,140,78,0.12);
}
.cc-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #1a8c4e, #0d5c34);
  border-radius: 12px; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}
.currency-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.currency-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.currency-cta { text-align: center; }

/* Tracking */
.tracking-area {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem;
  align-items: start;
}
.track-features { display: flex; flex-direction: column; gap: 1rem; }
.track-feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--dark); font-weight: 500;
}
.track-feat i { color: #0077cc; font-size: 1rem; }
.track-box {
  background: linear-gradient(135deg, #f0f7ff, #e0eeff);
  border: 2px solid rgba(0,119,204,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.track-box h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.track-input-row {
  display: flex; gap: 0.5rem;
}
.track-input-row input {
  flex: 1; padding: 0.8rem 1.2rem;
  border: 2px solid rgba(0,119,204,0.2);
  border-radius: 50px; font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  outline: none; transition: border-color var(--transition);
  background: white;
}
.track-input-row input:focus { border-color: #0077cc; }
.track-btn {
  display: flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #0077cc, #004f8c);
  color: white; border: none; cursor: none;
  padding: 0.8rem 1.4rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0,119,204,0.3);
}
.track-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,119,204,0.4); }
.track-note {
  font-size: 0.82rem; color: var(--gray); margin-top: 0.8rem; line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: var(--dark);
}
.how-section .section-head h2 { color: var(--white); }
.how-section .section-head p { color: rgba(255,255,255,0.5); }

.steps-container {
  position: relative; max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.steps-line {
  position: absolute; left: 52px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  opacity: 0.3;
}
.step-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 2rem 2rem 2rem 0;
  position: relative; cursor: default;
  transition: all var(--transition);
}
.step-item:hover { transform: translateX(10px); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1; min-width: 52px; text-align: center;
  margin-top: -8px; flex-shrink: 0;
  transition: color var(--transition);
}
.step-item:hover .step-num { color: rgba(255,215,0,0.2); }
.step-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
  box-shadow: 0 6px 20px rgba(204,0,0,0.4);
  transition: all var(--spring);
}
.step-item:hover .step-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(255,215,0,0.4);
  transform: scale(1.1) rotate(-5deg);
}
.step-content { padding: 0.5rem 0; }
.step-content h4 {
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.4rem;
}
.step-content p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.how-cta { text-align: center; margin-top: 3rem; }

/* ── TESTIMONIALS ── */
#testimonials { padding: 100px 0; background: var(--off-white); }
.countries-served {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-bottom: 3rem;
}
.country-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 2px solid var(--light-gray);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
  transition: all var(--transition);
}
.country-chip:hover {
  border-color: var(--red); color: var(--red);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.flag { font-size: 1.1rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition); cursor: none;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem; color: var(--light-gray); line-height: 1;
}
.testi-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(204,0,0,0.12);
}
.testi-stars { font-size: 1rem; margin-bottom: 1rem; }
.testi-card p {
  font-size: 0.92rem; color: var(--gray);
  line-height: 1.7; margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; color: var(--dark); }
.testi-author span { font-size: 0.82rem; color: var(--gray); }

/* ── GALLERY ── */
.gallery-section { padding: 100px 0; background: var(--dark); }
.gallery-section .section-head h2 { color: var(--white); }
.gallery-section .section-head p { color: rgba(255,255,255,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px 250px;
  gap: 1.2rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative; cursor: none;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-placeholder i { font-size: 3rem; opacity: 0.6; }
.gp1 { background: linear-gradient(135deg, #1a0000, #330000); }
.gp2 { background: linear-gradient(135deg, #1a1000, #332200); }
.gp3 { background: linear-gradient(135deg, #00051a, #000d33); }
.gp4 { background: linear-gradient(135deg, #001a12, #003324); }
.gp5 { background: linear-gradient(135deg, #1a0014, #330028); }
.gp6 { background: linear-gradient(135deg, #0d0d0d, #1a1a1a); }
.gallery-item:hover .gallery-placeholder i { opacity: 1; transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(204,0,0,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 1rem; }
.gallery-note {
  text-align: center; color: rgba(255,255,255,0.3);
  font-size: 0.85rem; margin-top: 1.5rem;
}

/* ── ORDER SECTION ── */
.order-section {
  padding: 100px 0;
  background: var(--white);
}
.order-split {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem;
  align-items: start;
}
.order-left .section-head h2 { margin-bottom: 1rem; }
.order-trust { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2rem; }
.ot-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--dark); font-weight: 500;
}
.ot-item i { color: var(--red); width: 20px; }

.order-form {
  background: var(--off-white);
  border-radius: 24px; padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--dark);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1.1rem;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: 'Outfit', sans-serif;
  outline: none; background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(204,0,0,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white; border: none; cursor: none;
  border-radius: 12px; font-size: 1rem; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: var(--shadow-red);
  transition: all var(--spring);
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(204,0,0,0.4);
}

/* ── CONTACT ── */
.contact-section { padding: 80px 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition); cursor: none;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(255,215,0,0.15);
}
.contact-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1rem;
}
.contact-icon.wa { background: linear-gradient(135deg, #25D366, #128C7E); color: white; }
.contact-icon.phone { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; }
.contact-icon.loc { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); }
.contact-icon.time { background: linear-gradient(135deg, #0077cc, #004f8c); color: white; }
.contact-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 1rem; }
.contact-link {
  display: inline-block;
  font-size: 0.85rem; font-weight: 600; color: var(--red);
  text-decoration: none; cursor: none;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--red-dark); }

/* ── FOOTER ── */
.footer {
  background: var(--dark2); color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
  border-top: 2px solid rgba(204,0,0,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--white); letter-spacing: 2px; margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-logo small {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 0.58rem; color: rgba(255,255,255,0.35);
  letter-spacing: 5px; margin-top: 2px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badges span {
  font-size: 0.78rem; font-weight: 600;
  background: rgba(255,255,255,0.06);
  padding: 4px 12px; border-radius: 50px;
  color: rgba(255,255,255,0.6);
}
.footer-col h5 {
  font-size: 0.9rem; font-weight: 700; color: var(--white);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.5); font-size: 0.88rem;
  text-decoration: none; cursor: none;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul a i { font-size: 0.85rem; width: 16px; color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ── FLOATING WHATSAPP ── */
.floating-wa {
  position: fixed; bottom: 30px; right: 30px; z-index: 800;
  width: 60px; height: 60px;
  background: #25D366; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; text-decoration: none; cursor: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all var(--spring);
}
.floating-wa:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
.wa-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366; opacity: 0.5;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}
.wa-tooltip {
  position: absolute; right: 74px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark); color: white;
  font-size: 0.82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; transition: opacity var(--transition);
  pointer-events: none;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none; border-left-color: var(--dark);
}
.floating-wa:hover .wa-tooltip { opacity: 1; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 30px; left: 30px; z-index: 800;
  width: 46px; height: 46px;
  background: var(--dark); color: var(--gold);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 50%; cursor: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-3px); }

/* ── REVEAL ANIMATIONS ── */
.reveal-up { opacity: 0; transform: translateY(40px); animation: revealUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; transition: all 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .tracking-area { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .topbar-left span:first-child { display: none; }
  .hero { padding-top: 120px; }
  .hero-title { font-size: 2.4rem; }
  .hstat { padding: 0 1rem; }
  .service-block { padding: 1.8rem; }
  .srv-header { flex-direction: column; }
  .srv-cards { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .step-item { padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  .nav-order, .hamburger, .lang-btn, .track-btn, .srv-btn, .order-form *, .floating-wa, .back-top, .btn-primary, .btn-hero-primary, .btn-hero-wa { cursor: pointer; }
}

@media (max-width: 480px) {
  section { padding: 70px 0; }
  .hero-title { font-size: 2rem; }
  .trust-badges { gap: 0.6rem; }
  .badge { font-size: 0.78rem; padding: 5px 12px; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hstat-div { display: none; }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed;
  top: 130px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 90; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 1.4rem; font-weight: 600;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; width: 100%; text-align: center;
  transition: all var(--transition);
}
.mobile-nav a:hover {
  background: var(--red); color: white;
  border-color: var(--red);
}
