/* ============================================
   FORAJE DOMINIC - Stylesheet Principal
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --navy:       #0A1F44;
  --navy-mid:   #122B5C;
  --blue:       #1565C0;
  --blue-light: #1E90FF;
  --water:      #0BADF4;
  --water-soft: #E8F5FF;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFE;
  --gray-100:   #EEF3FB;
  --gray-200:   #D1DFF5;
  --gray-500:   #6B7A99;
  --gray-700:   #2D3A56;
  --text:       #0F1C35;
  --text-light: #4A5568;
  --border:     #C8DEFF;
  --success:    #16A34A;
  --gold:       #F59E0B;
  
  --shadow-sm: 0 1px 3px rgba(10,31,68,0.08), 0 1px 2px rgba(10,31,68,0.06);
  --shadow:    0 4px 12px rgba(10,31,68,0.12), 0 2px 6px rgba(10,31,68,0.08);
  --shadow-lg: 0 20px 40px rgba(10,31,68,0.18), 0 8px 16px rgba(10,31,68,0.1);
  
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --transition: all 0.25s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  zoom: 1.1;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { line-height: 1.7; color: var(--text-light); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--water);
  background: rgba(11,173,244,0.1);
  border: 1px solid rgba(11,173,244,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--water);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(11,173,244,0.35);
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 6px 24px rgba(11,173,244,0.45);
  transform: translateY(-2px);
}

.btn-call {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.btn-call:hover {
  background: #E8930A;
  box-shadow: 0 6px 24px rgba(245,158,11,0.45);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}
.btn-white:hover {
  background: var(--gray-50);
  border-color: var(--water);
  color: var(--blue);
  transform: translateY(-2px);
}

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

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #20BB5A;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,31,68,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.header-top {
  background: var(--navy);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.header-top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.header-top-info span { display: flex; align-items: center; gap: 6px; }
.header-top-info svg { width: 14px; height: 14px; flex-shrink: 0; }

.header-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top-actions a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-call-top {
  background: var(--gold);
  color: var(--navy);
}
.header-call-top:hover { background: #E8930A; }

.header-wa-top {
  background: #25D366;
  color: white;
}
.header-wa-top:hover { background: #20BB5A; }

.header-main {
  padding: 14px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--water), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text { line-height: 1.1; }
.logo-text .brand { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 1.25rem; color: var(--white); letter-spacing: -0.02em; }
.logo-text .tagline { font-size: 0.68rem; color: var(--water); font-weight: 500; letter-spacing: 0.04em; }

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.4rem;
}

.mobile-menu a {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  padding: 14px 40px;
  border-radius: var(--radius);
  width: 100%;
  text-align: center;
  transition: var(--transition);
  max-width: 320px;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--water);
}

.mobile-menu .mobile-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
  max-width: 320px;
  padding: 0 20px;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-actions {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 100px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.float-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.float-call {
  background: var(--gold);
  color: var(--navy);
}
.float-call:hover { transform: scale(1.05) translateY(-2px); background: #E8930A; }

.float-wa {
  background: #25D366;
  color: white;
}
.float-wa:hover { transform: scale(1.05) translateY(-2px); background: #20BB5A; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,31,68,0.94) 0%, rgba(18,43,92,0.88) 50%, rgba(10,31,68,0.92) 100%),
    url('../images/foraje-2.jpeg') center center / cover no-repeat;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(11,173,244,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 80%, rgba(30,144,255,0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,173,244,0.15);
  border: 1px solid rgba(11,173,244,0.3);
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-badge span { width: 7px; height: 7px; background: var(--water); border-radius: 50%; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: var(--water);
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

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

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

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.hero-trust-item .number {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.hero-trust-item .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 3px;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  margin: auto 0;
}

.hero-right { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-1 { bottom: -20px; left: -28px; }
.hero-card-2 { top: 24px; right: -24px; }

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon.blue { background: linear-gradient(135deg, var(--water), var(--blue-light)); }
.hero-card-icon.green { background: linear-gradient(135deg, #16A34A, #22C55E); }
.hero-card-icon.gold { background: linear-gradient(135deg, var(--gold), #FCD34D); }

.hero-card-info .val { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--navy); line-height: 1; }
.hero-card-info .lbl { font-size: 0.72rem; color: var(--gray-500); margin-top: 3px; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy);
  padding: 24px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(11,173,244,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--water);
}

.stat-icon svg { width: 24px; height: 24px; }

.stat-info .val { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--white); line-height: 1; word-break: break-word; }
.stat-info .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; line-height: 1.3; }

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--water), var(--blue-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--water);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--water-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: var(--transition);
}

.service-icon svg { width: 32px; height: 32px; }

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--water), var(--blue-light));
  color: var(--white);
}

.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }

.service-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.service-link:hover { color: var(--water); gap: 8px; }

/* ============================================
   WHY US
   ============================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-images {
  position: relative;
  height: 520px;
}

.why-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.why-badge {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.why-badge .number { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--water); line-height: 1; }
.why-badge .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

.why-features { display: flex; flex-direction: column; gap: 20px; }

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--water-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.why-feature-icon svg { width: 22px; height: 22px; }

.why-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.why-feature p { font-size: 0.85rem; }

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,68,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: 0.9rem; }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(11,173,244,0.12) 0%, transparent 60%);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.05);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10,31,68,0.85);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--water), var(--blue-light));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water), var(--blue-light));
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(11,173,244,0.3);
}

.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.85rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--water);
  box-shadow: var(--shadow);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.reviewer-location { font-size: 0.75rem; color: var(--gray-500); }

/* ============================================
   COVERAGE MAP SECTION
   ============================================ */
.coverage { background: var(--water-soft); }

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coverage-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.region-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.region-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--water); flex-shrink: 0; }

.map-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(11,173,244,0.2) 0%, transparent 70%);
}

.map-icon { color: var(--water); margin-bottom: 16px; position: relative; }
.map-icon svg { width: 80px; height: 80px; }
.map-visual h3 { color: white; font-size: 1.8rem; position: relative; }
.map-visual p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 8px; position: relative; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #060F22;
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover { background: var(--water); color: white; }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--water); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact-item svg { width: 17px; height: 17px; color: var(--water); flex-shrink: 0; margin-top: 2px; }

.footer-contact-item a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--water); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--water); }

/* ANPC Row */
.footer-anpc {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.anpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.anpc-badge:hover { border-color: var(--water); color: var(--water); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(11,173,244,0.15) 0%, transparent 60%);
}

.page-hero .container { position: relative; }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.breadcrumbs a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--water); }
.breadcrumbs span { color: rgba(255,255,255,0.3); }

.page-hero h1 { color: var(--white); max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 14px; max-width: 600px; }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail { padding: 72px 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { margin-bottom: 16px; }

.service-detail-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-light);
}

.service-detail-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230BADF4' fill-opacity='0.15'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%230BADF4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  position: sticky;
  top: 100px;
}

.sidebar-card h4 { color: white; margin-bottom: 16px; font-size: 1.2rem; }
.sidebar-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 24px; }

.sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.sidebar-phone {
  background: var(--gold);
  color: var(--navy);
}
.sidebar-phone:hover { background: #E8930A; transform: translateY(-2px); }

.sidebar-whatsapp {
  background: #25D366;
  color: white;
}
.sidebar-whatsapp:hover { background: #20BB5A; transform: translateY(-2px); }

.sidebar-contact svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { padding: 72px 0; }

.legal-content .container { max-width: 860px; }

.legal-content h2 { font-size: 1.5rem; margin-top: 36px; margin-bottom: 12px; }
.legal-content h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; color: var(--navy); }
.legal-content p { margin-bottom: 14px; font-size: 0.95rem; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 6px; font-size: 0.95rem; color: var(--text-light); list-style: disc; }

.legal-date {
  display: inline-block;
  background: var(--water-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .hero-right { display: none !important; }
  .hero-desc { max-width: 100%; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-images { display: none; }
  
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .coverage-inner { grid-template-columns: 1fr; }
  .map-visual { display: none; }
  
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  
  .service-detail-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  
  .video-grid { grid-template-columns: 1fr; }
  
  nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  
  .header-top-info .hide-mobile { display: none; }
  
  /* Fix header top bar overflow */
  .header-top .container {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .header-top-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 8px 16px; }
  /* Remove right border on 2nd stat so 2x2 grid looks clean */
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(odd):nth-last-child(-n+2) { border-right: 1px solid rgba(255,255,255,0.1); }
  
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  
  /* Hero mobile */
  .hero { padding-top: 100px; min-height: 100svh; }
  .hero-content { padding: 40px 0 60px; }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100%;
  }
  .hero-right { display: none !important; }
  .hero-trust { gap: 16px; }
  .hero-trust-item .number { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-desc { font-size: 0.95rem; }
  
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }
  
  .float-btn .float-text { display: none; }
  .float-btn { padding: 13px; border-radius: 50%; }
  .float-actions { bottom: 20px; right: 16px; }
  
  .process-grid { grid-template-columns: 1fr 1fr; }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  
  /* Compact stat items on small mobile */
  .stat-item { gap: 10px; padding: 10px 12px; }
  .stat-item:first-child { padding-left: 12px; }
  .stat-icon { width: 38px; height: 38px; }
  .stat-icon svg { width: 18px; height: 18px; }
  .stat-info .val { font-size: 1.3rem; }
  .stat-info .lbl { font-size: 0.72rem; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .header-top-actions .btn-text { display: none; }
  
  /* Ensure container padding on very small screens */
  .container { padding: 0 16px; }
  
  /* Hero trust stats row on small screen */
  .hero-trust { gap: 12px; }
  .hero-trust-item .number { font-size: 1.4rem; }
  .hero-divider { height: 30px; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-blue { color: var(--water); }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Smooth reveal animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

/* Page transitions */
.page-enter { opacity: 0; }
.page-ready { opacity: 1; transition: opacity 0.3s ease; }

/* ============================================
   LEGAL PAGES EXTRA STYLES
   ============================================ */

/* btn-secondary (white outline) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

/* Breadcrumb alias (pages use .breadcrumb, CSS has .breadcrumbs) */
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}
.breadcrumb ol li { display: flex; align-items: center; gap: 8px; }
.breadcrumb ol li:not(:last-child)::after { content: '›'; color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--water); }
.breadcrumb [aria-current="page"] { color: rgba(255,255,255,0.85); }

/* Legal page table */
.legal-content table { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.legal-content table a { color: var(--blue); }
.legal-content code { background: #eef3fa; padding: 2px 6px; border-radius: 4px; font-size: 0.85rem; color: var(--navy); }
.legal-content ol { padding-left: 24px; margin-bottom: 14px; }
.legal-content ol li { margin-bottom: 8px; font-size: 0.95rem; }
