/* =========================================================
   Tocaan Landing Page — Google Ads Conversion Page
   ========================================================= */

:root {
  /* Tocaan brand colors (from official logo) */
  --primary: #142a48;        /* navy from logo shape */
  --primary-dark: #0a1a30;
  --primary-light: #1e3d6b;
  --accent: #f7a60c;         /* deep gold from logo */
  --accent-dark: #d68a06;
  --accent-light: #fbba2a;   /* bright gold from logo */
  --text: #142a48;
  --text-muted: #5A6378;
  --bg: #FFFFFF;
  --bg-alt: #F6F8FC;
  --border: #E4E8F0;
  --success: #25D366;
  --warning: #FFF4D6;
  --warning-text: #8a5a00;
  --shadow-sm: 0 2px 8px rgba(15, 44, 90, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 44, 90, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 44, 90, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-cta {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(247, 166, 12, 0.40);
  font-size: 17px;
  padding: 16px 32px;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247, 166, 12, 0.55); }
.btn-cta-sm {
  background: var(--accent);
  color: var(--primary);
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 700;
}
.btn-cta-sm:hover { background: var(--accent-light); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-block { width: 100%; padding: 18px; font-size: 18px; }

/* =========================================================
   WhatsApp Float
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 58px;
  height: 58px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  animation: pulse-wa 2s infinite;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  color: var(--primary);
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background:
    radial-gradient(circle at 20% 10%, rgba(251, 186, 42, 0.12), transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(20, 42, 72, 0.10), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warning);
  color: var(--warning-text);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-sub strong { color: var(--accent); }

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 32px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.trust-list span { font-size: 18px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

/* =========================================================
   Realistic iPhone 14 Pro Mockup (CSS-only)
   ========================================================= */
.iphone {
  position: relative;
  display: inline-block;
  --iph-w: 280px;
  --iph-h: 580px;
  --iph-radius: 46px;
  --iph-bezel: 9px;
  --iph-frame: #1d1d1f;          /* titanium dark */
  --iph-frame-2: #2c2c2e;
  --iph-frame-edge: #6f7378;     /* metallic edge */
  width: var(--iph-w);
  height: var(--iph-h);
}

/* Outer titanium frame */
.iphone-frame {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--iph-frame-2) 0%, var(--iph-frame) 50%, #0f0f10 100%);
  border-radius: var(--iph-radius);
  padding: var(--iph-bezel);
  box-shadow:
    /* outer drop shadow */
    0 30px 60px rgba(15, 44, 90, 0.35),
    0 14px 28px rgba(0,0,0,0.18),
    /* edge highlight (bezel rim) */
    inset 0 0 0 1.5px var(--iph-frame-edge),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.5);
}

/* Inner black bezel between frame and screen */
.iphone-frame::before {
  content: "";
  position: absolute;
  inset: var(--iph-bezel);
  border-radius: calc(var(--iph-radius) - var(--iph-bezel));
  background: #000;
  box-shadow: inset 0 0 0 2px #000;
}

/* The screen content area */
.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--iph-radius) - var(--iph-bezel) - 2px);
  overflow: hidden;
  background: #000;
  z-index: 1;
}
.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Dynamic Island (notch) */
.iphone-notch {
  position: absolute;
  top: calc(var(--iph-bezel) + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
  box-shadow:
    0 0 0 2px #0a0a0a,
    inset 0 0 6px rgba(255,255,255,0.04);
}
.iphone-notch::before,
.iphone-notch::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2030 0%, #050810 60%);
}
.iphone-notch::before {
  /* speaker dot */
  right: 12px;
  width: 5px;
  height: 5px;
  background: #0a0a0c;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.2);
}
.iphone-notch::after {
  /* camera lens */
  left: 12px;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle at 30% 30%, #4a5468 0%, #0c0f1a 70%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

/* Side buttons (hero only, hidden on small mockups) */
.iphone-side {
  position: absolute;
  top: 0;
  height: 100%;
  width: 4px;
  pointer-events: none;
  z-index: 0;
}
.iphone-side-left  { left: -4px; }
.iphone-side-right { right: -4px; }
.iphone-side span {
  position: absolute;
  background: linear-gradient(90deg, #404245, #6f7378 50%, #2a2b2d);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
.iphone-side-left .btn-silent   { top: 14%; height: 28px; left: 0; width: 4px; }
.iphone-side-left .btn-vol-up   { top: 22%; height: 50px; left: 0; width: 4px; }
.iphone-side-left .btn-vol-down { top: 32%; height: 50px; left: 0; width: 4px; }
.iphone-side-right .btn-power   { top: 22%; height: 70px; right: 0; width: 4px; }

/* Hero variant — slight tilt + entry animation */
.iphone-hero {
  --iph-w: 290px;
  --iph-h: 600px;
  transform: rotate(-5deg) translateY(0);
  animation: phoneEntry 1.2s cubic-bezier(.25,.8,.25,1) both, phoneFloat 6s ease-in-out 1.2s infinite;
}
@keyframes phoneEntry {
  0%   { opacity: 0; transform: rotate(-5deg) translateY(40px) scale(.92); }
  100% { opacity: 1; transform: rotate(-5deg) translateY(0) scale(1); }
}
@keyframes phoneFloat {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(-14px); }
}

/* Hero slideshow inside phone screen */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slideshow .hs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
  z-index: 1;
}
.hero-slideshow .hs-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Small iphone variant for portfolio cards */
.iphone-sm {
  --iph-w: 200px;
  --iph-h: 410px;
  --iph-radius: 32px;
  --iph-bezel: 6px;
}
.iphone-sm .iphone-notch {
  width: 70px;
  height: 20px;
  top: calc(var(--iph-bezel) + 6px);
  border-radius: 11px;
}
.iphone-sm .iphone-notch::before { right: 9px; width: 4px; height: 4px; }
.iphone-sm .iphone-notch::after  { left: 9px; width: 7px; height: 7px; }

/* Floating callouts */
.floating {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
  z-index: 4;
}
.floating-1 { top: 8%; right: -10%; }
.floating-2 { bottom: 10%; left: -10%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* =========================================================
   Countdown Bar
   ========================================================= */
.countdown-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}
.countdown-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 10px,
    transparent 10px,
    transparent 20px
  );
  pointer-events: none;
}
.countdown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.countdown-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.pulse-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
  display: inline-block;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
}
.cd-block {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.cd-block b {
  font-size: 22px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-block small { font-size: 10px; opacity: .8; margin-top: 2px; }
.cd-sep { font-size: 22px; opacity: .7; }

/* =========================================================
   Sections
   ========================================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 900;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

/* =========================================================
   Features Grid
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.feature-icon {
  font-size: 44px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   Portfolio
   ========================================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.app-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--border);
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.app-thumb {
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, #f0f4fb 0%, #e6ecf6 60%, #dbe3f0 100%);
  overflow: hidden;
  padding: 24px 0;
}
.app-thumb::before {
  /* subtle radial glow behind the phone */
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,166,12,0.15) 0%, transparent 70%);
  z-index: 0;
}
.app-thumb .iphone {
  z-index: 1;
  transition: transform .5s cubic-bezier(.25,.8,.25,1);
}
.app-card:hover .app-thumb .iphone {
  transform: translateY(-8px) scale(1.03);
}
.app-info { padding: 20px; }
.app-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
.app-tag.tag-top {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--primary);
  font-weight: 700;
}
.app-info h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 700;
}
.app-info p {
  color: var(--text-muted);
  font-size: 14px;
}

/* =========================================================
   Clients Strip
   ========================================================= */
.clients-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.clients-strip::-webkit-scrollbar { height: 8px; }
.clients-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.clients-strip::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.client-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  min-width: 190px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: all .3s ease;
}
.client-logo img {
  max-height: 85px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.client-logo:hover img { transform: scale(1.05); }
.client-logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.client-logo-charity {
  font-weight: 800;
  font-size: 15px;
  color: var(--primary);
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.3px;
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  border: 1px solid var(--border);
  position: relative;
}
.client-logo-charity::before {
  content: "♥";
  position: absolute;
  top: 6px;
  inset-inline-start: 8px;
  font-size: 11px;
  color: var(--accent);
  opacity: .7;
}
.client-logo-charity small {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.client-logo-charity:hover { color: var(--accent-dark); border-color: var(--accent); }
.client-logo:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.client-logo-text:hover { color: var(--primary); }

/* =========================================================
   Process Steps
   ========================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent-light);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 18px rgba(20, 42, 72, 0.3);
  border: 2px solid var(--accent);
}
.step-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}
.step-card p { color: var(--text-muted); font-size: 15px; }

/* =========================================================
   Booking / Conversion Section
   ========================================================= */
.booking {
  background:
    radial-gradient(circle at 80% 0%, rgba(251, 186, 42, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
}
.booking-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px 36px;
  border: 1px solid var(--border);
}
.booking-head { text-align: center; margin-bottom: 28px; }
.booking-head h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--primary);
  margin-bottom: 8px;
}
.booking-head p { color: var(--text-muted); margin-bottom: 16px; }

.countdown-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warning);
  color: var(--warning-text);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
}
.countdown-inline strong {
  font-variant-numeric: tabular-nums;
  font-size: 17px;
}

.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
  background: #fff;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row input.invalid,
.form-row textarea.invalid {
  border-color: #E53935;
  background: #FFF5F5;
}

.phone-input {
  position: relative;
  display: flex;
  align-items: stretch;
}
.phone-prefix {
  background: var(--bg-alt);
  padding: 14px 14px;
  border: 2px solid var(--border);
  border-left: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  font-size: 15px;
  direction: ltr;
}
[dir="rtl"] .phone-prefix {
  border-left: 2px solid var(--border);
  border-right: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.phone-input input {
  border-radius: var(--radius-sm);
  direction: ltr;
  text-align: right;
  width: 100%;
}

.error-msg {
  display: block;
  color: #E53935;
  font-size: 13px;
  margin-top: 6px;
  min-height: 18px;
}
.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 16px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--primary-dark);
  color: #C7D0E0;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-about { font-size: 15px; line-height: 1.8; }
.site-footer h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-list { list-style: none; }
.footer-list li {
  margin-bottom: 10px;
  font-size: 15px;
}
.footer-list a:hover { color: var(--accent); }
.socials a { transition: color .2s ease; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #8995AC;
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -24px;
  inset-inline-start: 12px;
  font-size: 90px;
  font-family: Georgia, serif;
  color: var(--accent);
  line-height: 1;
  opacity: .25;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.testimonial-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.testimonial-card figcaption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  padding: 0 6px 4px;
}

/* =========================================================
   Reveal Animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .hero { padding: 40px 0 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { min-height: 420px; order: -1; }
  .phone-mockup { width: 220px; height: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .header-row .btn-cta-sm {
    padding: 8px 12px;
    font-size: 12px;
  }
  .countdown-row {
    gap: 14px;
    flex-direction: column;
  }
  .countdown-text { font-size: 14px; text-align: center; }
  .booking-card { padding: 32px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-1, .floating-2 { font-size: 11px; padding: 7px 12px; }
  .floating-1 { right: 0%; }
  .floating-2 { left: 0%; }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 380px) {
  .hero-cta .btn { width: 100%; }
  .trust-list { gap: 10px; }
  .trust-list li { font-size: 13px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
