/* ═══════════════════════════════════
   Miki Tours Malta — Phase 4 Pro CSS
   Design system, glassmorphism, animations
   ═══════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --c-black: #1c1917;
  --c-amber: #f59e0b;
  --c-amber-dark: #d97706;
  --c-amber-glow: rgba(245, 158, 11, 0.15);
  --c-wa: #25D366;
  --c-wa-hover: #1fba59;
  --c-warm: #fcfaf8;
  --c-cream: #fff8ed;
  --c-gray-400: #9ca3af;
  --c-gray-500: #6b7280;
  --c-gray-700: #374151;
  --c-glass: rgba(255, 255, 255, 0.06);
  --c-glass-border: rgba(255, 255, 255, 0.1);

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px;

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-2xl: 24px; --r-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(28,25,23,0.04);
  --shadow-md: 0 4px 16px rgba(28,25,23,0.08);
  --shadow-lg: 0 8px 32px rgba(28,25,23,0.12);
  --shadow-xl: 0 16px 48px rgba(28,25,23,0.16);
  --shadow-glow: 0 0 40px rgba(245,158,11,0.2);
  --shadow-wa: 0 4px 20px rgba(37,211,102,0.4);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 150ms; --t-normal: 300ms; --t-slow: 500ms;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400; line-height: 1.65; color: var(--c-black);
  background: var(--c-warm); font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1152px; margin: 0 auto; padding: 0 20px; }

/* ── Section helpers ── */
.section { padding: var(--s-16) 0; }
.section-alt {
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(245,158,11,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(59,130,246,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 80%, rgba(245,158,11,0.03) 0%, transparent 60%),
    var(--c-warm);
}
.section-label {
  font-size: 11px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--c-amber); margin-bottom: var(--s-2);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700;
  line-height: 1.15; margin-bottom: var(--s-3);
  text-wrap: balance;
}
.section-subtitle { color: var(--c-gray-500); max-width: 640px; margin-bottom: var(--s-10); line-height: 1.7; }
.center { text-align: center; margin-top: var(--s-8); }

@media (min-width: 768px) {
  .section { padding: var(--s-20) 0; }
}

/* ── Scroll reveal (GSAP targets) ── */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(28, 25, 23, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--t-normal) var(--ease-out);
}
.nav.scrolled {
  background: rgba(28, 25, 23, 0.98);
  box-shadow: 0 1px 0 var(--c-amber-glow);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; transition: height var(--t-normal); }
.nav.scrolled .nav-inner { height: 48px; }
.nav-logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: #fff; white-space: nowrap; }
.nav-logo img { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.nav-links { display: none; }
.nav-links a {
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500;
  transition: color var(--t-fast); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--c-amber); transform: scaleX(0);
  transition: transform var(--t-normal) var(--ease-out);
  transform-origin: center;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  font-size: 12px; font-weight: 700; color: var(--c-amber);
  border: 1px solid var(--c-amber); border-radius: 4px; padding: 2px 8px;
  transition: all var(--t-fast);
}
.lang-switch:hover { background: var(--c-amber); color: var(--c-black); }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu — fullscreen overlay */
.nav-links.open {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: fixed; inset: 0; background: rgba(28, 25, 23, 0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  gap: 28px; z-index: 99;
}
.nav-links.open a { font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.8); }
.nav-links.open a:hover { color: var(--c-amber); }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-links { display: flex; gap: 24px; }
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-black) url('/images/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,25,23,0.3) 0%, rgba(28,25,23,0.1) 30%, rgba(28,25,23,0.6) 70%, rgba(28,25,23,0.92) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(245,158,11,0.08) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  padding: 100px 0 60px; color: #fff; max-width: 760px;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem); font-weight: 900;
  line-height: 1.08; margin-bottom: var(--s-6);
  text-wrap: balance; letter-spacing: -0.02em;
}
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: var(--s-4); }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-full);
  padding: 5px 14px; color: #fff;
}
.hero-langs { display: flex; justify-content: center; gap: 8px; margin-bottom: var(--s-6); }
.lang-pill {
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 12px; background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4); transition: all var(--t-fast);
}
.lang-pill.active { background: var(--c-amber); color: var(--c-black); }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-response {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.5); margin-top: var(--s-3);
}
.hero-response svg { color: var(--c-wa); }

@media (min-width: 768px) {
  .hero-cta { flex-direction: row; justify-content: center; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 13px 28px; border-radius: var(--r-md);
  border: none; cursor: pointer; transition: all var(--t-normal) var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-whatsapp {
  background: var(--c-wa); color: #fff;
  box-shadow: 0 2px 12px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover {
  background: var(--c-wa-hover); transform: translateY(-2px);
  box-shadow: var(--shadow-wa);
}
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-sm { font-size: 13px; padding: 10px 20px; }
.section .btn-secondary { color: var(--c-black); border-color: rgba(28,25,23,0.15); }
.section .btn-secondary:hover { border-color: var(--c-black); background: rgba(28,25,23,0.04); }

/* ── Parallax Divider ── */
.parallax-divider {
  position: relative; overflow: hidden; height: 280px;
  background: var(--c-black);
}
.parallax-divider img {
  width: 100%; height: 140%; object-fit: cover;
  position: absolute; top: -20%; left: 0;
  will-change: transform;
}
@media (max-width: 767px) {
  .parallax-divider { height: 180px; }
}

/* ── Stats Counter Strip ── */
.stats-strip {
  background: var(--c-black); padding: var(--s-10) 0;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(245,158,11,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(245,158,11,0.06) 0%, transparent 50%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6);
  position: relative; z-index: 1; text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 900;
  color: var(--c-amber); line-height: 1; margin-bottom: var(--s-1);
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── About hero (profile + text) ── */
.about-hero {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s-8); margin-bottom: var(--s-10); text-align: center;
}
.about-photo { position: relative; flex-shrink: 0; }
.about-photo::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(245,158,11,0.3);
  animation: glow-ring 8s linear infinite;
}
@keyframes glow-ring {
  0% { border-color: rgba(245,158,11,0.3); transform: rotate(0deg); }
  50% { border-color: rgba(245,158,11,0.6); }
  100% { border-color: rgba(245,158,11,0.3); transform: rotate(360deg); }
}
.guide-img {
  width: 180px; height: 180px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--c-amber);
  box-shadow: 0 8px 32px rgba(245,158,11,0.2);
}
.guide-badge {
  position: absolute; bottom: -8px; right: -8px;
  width: 64px; height: 64px; border-radius: var(--r-md);
  border: 3px solid var(--c-warm);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.about-text .section-subtitle { margin-bottom: 0; }

@media (min-width: 768px) {
  .about-hero { flex-direction: row; text-align: left; gap: var(--s-12); }
  .guide-img { width: 220px; height: 220px; }
  .guide-badge { width: 72px; height: 72px; }
}

/* ── Cards (3-column) ── */
.cards-3 { display: grid; grid-template-columns: 1fr; gap: var(--s-5); margin-top: var(--s-8); }
.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-normal) var(--ease-out), box-shadow var(--t-normal) var(--ease-out);
}
@supports not (backdrop-filter: blur(1px)) {
  .card { background: #fff; }
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  color: var(--c-amber); margin-bottom: var(--s-4);
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: var(--c-amber-glow); border-radius: 14px;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: var(--s-2); }
.card p { color: var(--c-gray-500); font-size: 14px; line-height: 1.7; }

@media (min-width: 768px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Tour Cards ── */
.tour-card {
  background: #fff; border: 1px solid rgba(28,25,23,0.05);
  border-radius: var(--r-xl); overflow: hidden; margin-bottom: var(--s-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-normal) var(--ease-out);
}
.tour-card:hover { box-shadow: var(--shadow-lg); }
.tour-card-img { position: relative; height: 240px; overflow: hidden; }
.tour-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; background: var(--c-amber); color: var(--c-black);
  padding: 5px 14px; border-radius: var(--r-sm);
  overflow: hidden;
}
.tour-badge::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.tour-card-body { padding: var(--s-6); }
.tour-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--s-3); }
.tour-meta span { font-size: 12px; font-weight: 600; color: var(--c-gray-500); }
.tour-card-body h3 { font-size: 22px; font-weight: 700; margin-bottom: var(--s-3); }
.tour-card-body p { color: var(--c-gray-500); font-size: 14px; line-height: 1.7; margin-bottom: var(--s-4); }
.tour-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--s-4); }
.tour-highlights span {
  font-size: 12px; font-weight: 500;
  background: var(--c-amber-glow); color: #92400e;
  padding: 4px 12px; border-radius: var(--r-full);
}
.tour-includes {
  background: rgba(28,25,23,0.02); border-radius: var(--r-sm);
  padding: 12px 16px; margin-bottom: var(--s-5);
}
.tour-includes p { margin: 0; font-size: 13px; color: var(--c-gray-500); }

@media (min-width: 768px) {
  .tour-card { display: grid; grid-template-columns: 360px 1fr; }
  .tour-card-img { height: auto; }
}

/* ── Tours mini grid ── */
.tours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin: var(--s-8) 0; }
.tour-mini {
  background: #fff; border: 1px solid rgba(28,25,23,0.05);
  border-radius: var(--r-md); overflow: hidden;
  transition: all var(--t-normal) var(--ease-out);
  position: relative; cursor: pointer;
}
.tour-mini:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tour-mini img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.tour-mini:hover img { transform: scale(1.05); }
.tour-mini-content { padding: 12px 14px 14px; }
.tour-mini h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.mini-meta { font-size: 12px; color: var(--c-gray-500); }
/* Hover overlay for mini tours */
.tour-mini-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.4) 40%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px; opacity: 0; transition: opacity var(--t-normal);
}
.tour-mini:hover .tour-mini-overlay { opacity: 1; }
.tour-mini-overlay .btn { font-size: 11px; padding: 8px 16px; }

@media (min-width: 768px) {
  .tours-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Custom Tour ── */
.custom-tour {
  background: #fff; border: 1px solid rgba(28,25,23,0.05);
  border-radius: var(--r-xl); padding: var(--s-8) var(--s-6);
  margin-top: var(--s-8); text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.custom-tour::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--c-amber-glow) 0%, transparent 50%);
  pointer-events: none;
}
.custom-tour h3 { font-size: 24px; font-weight: 700; margin-bottom: var(--s-2); position: relative; }
.custom-tour > p { color: var(--c-gray-500); font-size: 14px; margin-bottom: var(--s-6); position: relative; }
.custom-routes { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: var(--s-8); text-align: left; position: relative; }
.route-chip {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border: 1px solid rgba(28,25,23,0.06);
  border-radius: var(--r-md); transition: all var(--t-normal) var(--ease-out);
  background: rgba(255,255,255,0.8);
}
.route-chip:hover { border-color: var(--c-amber); background: var(--c-amber-glow); transform: translateX(4px); }
.route-icon { font-size: 24px; line-height: 1; }
.route-chip strong { font-size: 14px; display: block; margin-bottom: 2px; }
.route-chip small { font-size: 12px; color: var(--c-gray-500); }

@media (min-width: 768px) {
  .custom-routes { grid-template-columns: repeat(2, 1fr); }
}

/* ── Transfers (dark section) ── */
.section-dark {
  background: var(--c-black); color: #fff; position: relative;
  overflow: hidden;
}
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }
.transfer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); padding: var(--s-8) var(--s-6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.transfer-info h3 { font-size: 22px; font-weight: 700; margin-bottom: var(--s-3); }
.transfer-info p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: var(--s-4); line-height: 1.7; }
.transfer-features { margin-bottom: var(--s-5); }
.transfer-features li {
  font-size: 14px; color: rgba(255,255,255,0.7); padding: 6px 0;
  padding-left: 24px; position: relative;
}
.transfer-features li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(37,211,102,0.15);
  border: 2px solid var(--c-wa);
}
.transfer-features li::after {
  content: '\2713'; position: absolute; left: 3px; top: 50%; transform: translateY(-50%);
  color: var(--c-wa); font-size: 10px; font-weight: 700;
}
.transfer-prices { margin-bottom: var(--s-6); }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px;
}
.price-row span { color: rgba(255,255,255,0.5); }
.price-row strong { color: var(--c-amber); font-size: 16px; }

/* ── Fleet ── */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin-bottom: var(--s-6); }
.fleet-card {
  background: #fff; border: 1px solid rgba(28,25,23,0.05);
  border-radius: var(--r-lg); padding: var(--s-5); text-align: center;
  transition: all var(--t-normal) var(--ease-out);
  position: relative;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fleet-popular {
  position: absolute; top: -8px; right: -8px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; background: var(--c-amber); color: var(--c-black);
  padding: 4px 10px; border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
}
.fleet-icon { height: 80px; display: flex; align-items: center; justify-content: center; color: var(--c-amber); margin-bottom: var(--s-3); }
.fleet-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.fleet-year { font-size: 12px; color: var(--c-gray-500); margin-bottom: var(--s-2); }
.fleet-price { font-size: 14px; margin-bottom: 4px; }
.fleet-price strong { font-size: 22px; color: var(--c-black); font-weight: 800; }
.fleet-deposit { font-size: 12px; color: var(--c-gray-500); }

.fleet-terms {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  background: #fff; border: 1px solid rgba(28,25,23,0.05);
  border-radius: var(--r-lg); padding: var(--s-5);
}
.term { text-align: center; }
.term strong { display: block; font-size: 13px; margin-bottom: 2px; }
.term span { font-size: 12px; color: var(--c-gray-500); }

@media (min-width: 768px) {
  .fleet-grid { grid-template-columns: repeat(4, 1fr); }
  .fleet-terms { grid-template-columns: repeat(4, 1fr); }
}

/* ── Reviews (Swiper carousel) ── */
.reviews-aggregate {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-6); margin-bottom: var(--s-8);
  flex-wrap: wrap;
}
.reviews-big-score {
  font-size: clamp(3rem, 8vw, 4rem); font-weight: 900;
  color: var(--c-amber); line-height: 1;
}
.reviews-stars { color: var(--c-amber); font-size: 20px; letter-spacing: 3px; display: block; }
.reviews-meta { font-size: 13px; color: var(--c-gray-500); }
.reviews-meta strong { color: var(--c-black); }

.swiper { padding-bottom: 48px !important; }
.swiper-pagination-bullet { background: var(--c-amber) !important; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { width: 24px; border-radius: 5px !important; }

.review-card {
  background: #fff; border: 1px solid rgba(28,25,23,0.05);
  border-radius: var(--r-xl); padding: var(--s-6);
  border-top: 3px solid var(--c-amber);
  box-shadow: var(--shadow-sm); height: 100%;
  display: flex; flex-direction: column;
}
.review-quote {
  font-size: 3rem; line-height: 1; color: var(--c-amber);
  opacity: 0.2; margin-bottom: -12px; font-family: Georgia, serif;
}
.review-stars { color: var(--c-amber); font-size: 14px; margin-bottom: var(--s-3); letter-spacing: 2px; }
.review-text {
  font-size: 14px; color: var(--c-gray-700); line-height: 1.75;
  font-style: italic; margin-bottom: var(--s-4); flex: 1;
}
.review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.review-author strong { font-size: 14px; }
.review-source {
  font-size: 11px; font-weight: 600; color: #1877F2;
  background: rgba(24,119,242,0.08); padding: 2px 8px;
  border-radius: 4px; margin-left: auto;
}

/* ── Gallery (Masonry-like) ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2); grid-auto-rows: 160px;
}
.gallery-grid a {
  border-radius: var(--r-md); overflow: hidden;
  position: relative;
}
.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(5) { grid-row: span 2; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.6) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 12px;
  opacity: 0; transition: opacity var(--t-normal);
}
.gallery-grid a:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 12px; font-weight: 600; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); grid-auto-rows: 200px; }
}

/* ── Pre-footer CTA ── */
.cta-strip {
  background: linear-gradient(135deg, var(--c-black) 0%, #292524 50%, var(--c-black) 100%);
  padding: var(--s-16) 0; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.1) 0%, transparent 60%);
}
.cta-strip .section-title { color: #fff; position: relative; }
.cta-strip .section-subtitle { color: rgba(255,255,255,0.5); margin: 0 auto var(--s-8); position: relative; }
.cta-strip .btn { position: relative; font-size: 16px; padding: 16px 36px; }
.cta-response {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: var(--s-4); font-size: 13px; color: rgba(255,255,255,0.4);
  position: relative;
}
.cta-response svg { color: var(--c-wa); }

/* ── Footer ── */
.footer {
  background: linear-gradient(180deg, #292524 0%, var(--c-black) 100%);
  color: #fff; padding: var(--s-16) 0 var(--s-8);
}
.footer-logo { text-align: center; margin-bottom: var(--s-6); }
.footer-logo img {
  margin: 0 auto; border-radius: 50%;
  border: 3px solid rgba(245,158,11,0.3);
  box-shadow: var(--shadow-glow);
}
.footer-title { color: #fff; }
.footer .section-subtitle { color: rgba(255,255,255,0.5); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin: var(--s-8) 0; }
.contact-card {
  display: flex; align-items: center; gap: var(--s-4);
  padding: var(--s-5); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg);
  transition: all var(--t-normal) var(--ease-out);
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-left: 3px solid var(--c-amber);
  transform: translateX(4px);
}
.contact-card svg { flex-shrink: 0; color: var(--c-amber); }
.contact-card strong {
  display: block; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 2px;
}
.contact-card a { color: #fff; font-size: 16px; font-weight: 600; transition: color var(--t-fast); }
.contact-card a:hover { color: var(--c-amber); }
.footer-langs { text-align: center; color: rgba(255,255,255,0.3); font-size: 13px; margin: var(--s-6) 0; }
.footer-bottom { text-align: center; padding-top: var(--s-6); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-powered { margin-top: var(--s-2); }
.footer-powered a { color: var(--c-amber); font-weight: 600; }
.footer-powered a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Sticky WhatsApp ── */
.sticky-wa {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  opacity: 0; transform: translateY(20px);
  transition: all var(--t-normal) var(--ease-out); pointer-events: none;
}
.sticky-wa.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-wa-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--c-wa); color: #fff;
  padding: 14px 20px; border-radius: 28px;
  font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-wa);
  transition: all var(--t-normal) var(--ease-out);
  position: relative;
}
.sticky-wa-btn::before {
  content: ''; position: absolute; inset: -3px; border-radius: 31px;
  border: 2px solid var(--c-wa); opacity: 0;
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}
.sticky-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.sticky-wa-text { display: none; }

/* Tooltip */
.sticky-wa-tooltip {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  background: #fff; color: var(--c-black); padding: 10px 16px;
  border-radius: var(--r-md); font-size: 13px; font-weight: 500;
  white-space: nowrap; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(8px);
  transition: all var(--t-normal) var(--ease-out);
  pointer-events: none;
}
.sticky-wa-tooltip.show { opacity: 1; transform: translateY(0); }
.sticky-wa-tooltip::after {
  content: ''; position: absolute; top: 100%; right: 20px;
  border: 6px solid transparent; border-top-color: #fff;
}

@media (min-width: 768px) {
  .sticky-wa-text { display: inline; }
}

@media (max-width: 767px) {
  .sticky-wa { bottom: 0; right: 0; left: 0; border-radius: 0; }
  .sticky-wa-btn { justify-content: center; border-radius: 0; padding: 16px; width: 100%; }
  .sticky-wa-btn::before { display: none; }
  .sticky-wa-text { display: inline; }
  .sticky-wa-tooltip { display: none; }
  body { padding-bottom: 56px; }
}
