/* ─── CSS VARIABLES ─── */
:root {
  --blue-dark: #0a1628;
  --blue-mid: #0d2244;
  --blue: #1a3a6b;
  --accent: #e8a020;
  --accent-light: #f5c35a;
  --water: #2196c4;
  --water-light: #4fbde8;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --text: #1a2535;
  --text-muted: #5a6b82;
  --border: #dce6f0;
  --header-h: 70px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,160,32,0.2);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  transition: box-shadow 0.3s;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive; font-size: 20px; color: var(--blue-dark); letter-spacing: 1px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text span:first-child { font-family: 'Bebas Neue', cursive; font-size: 22px; color: var(--white); letter-spacing: 2px; line-height: 1; }
.logo-text span:last-child { font-size: 10px; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; }
.logo-custom img { height: 40px; width: auto; }

.main-nav .nav-menu { display: flex; align-items: center; gap: 4px; }
.main-nav .nav-menu li a {
  color: rgba(255,255,255,0.8); padding: 8px 16px;
  font-size: 14px; font-weight: 500; border-radius: 6px;
  transition: all 0.2s; letter-spacing: 0.5px;
}
.main-nav .nav-menu li a:hover,
.main-nav .nav-menu li.current-menu-item > a { color: var(--white); background: rgba(255,255,255,0.08); }

.header-cta {
  background: var(--accent); color: var(--blue-dark); padding: 10px 22px;
  border-radius: 6px; font-weight: 700; font-size: 14px;
  transition: all 0.2s; display: flex; align-items: center; gap: 6px; letter-spacing: 0.5px;
}
.header-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

/* Mobile Toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0; width: 280px;
  background: var(--blue-dark); z-index: 1100; padding: 80px 30px 40px;
  transition: right 0.35s ease; border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 22px; cursor: pointer;
}
.mobile-nav .mobile-menu { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav .mobile-menu li a {
  display: block; color: rgba(255,255,255,0.8); padding: 12px 0;
  font-size: 16px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-cta {
  display: block; margin-top: 24px; background: var(--accent);
  color: var(--blue-dark); padding: 14px 20px; border-radius: 8px;
  font-weight: 700; font-size: 15px; text-align: center;
}
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 1050; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; background: var(--blue-dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(26,58,107,0.6) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 20%, rgba(33,150,196,0.15) 0%, transparent 60%),
              radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232,160,32,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.3);
  color: var(--accent); padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { content: ''; display: block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white); line-height: 0.95; letter-spacing: 2px; margin-bottom: 8px;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub { font-family: 'Bebas Neue', cursive; font-size: clamp(22px,3vw,38px); color: var(--water-light); letter-spacing: 3px; margin-bottom: 24px; }
.hero-content > p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Bebas Neue', cursive; font-size: 40px; color: var(--white); line-height: 1; }
.hero-stat .label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.drill-visual { width: 340px; height: 400px; position: relative; display: flex; align-items: center; justify-content: center; }
.drill-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(33,150,196,0.2); animation: spin-slow linear infinite; }
.drill-ring:nth-child(1) { width: 300px; height: 300px; animation-duration: 20s; }
.drill-ring:nth-child(2) { width: 220px; height: 220px; animation-duration: 15s; animation-direction: reverse; border-color: rgba(232,160,32,0.2); }
.drill-ring:nth-child(3) { width: 140px; height: 140px; animation-duration: 10s; border-color: rgba(33,150,196,0.3); }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.drill-core { width: 100px; height: 100px; background: linear-gradient(135deg, var(--blue), var(--water)); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(33,150,196,0.4), 0 0 80px rgba(33,150,196,0.15); z-index: 2; position: relative; font-size: 42px; animation: float 3s ease-in-out infinite; }
.drill-dots { position: absolute; inset: 0; background: radial-gradient(circle at 50% 15%, rgba(255,255,255,0.5) 2px, transparent 2px), radial-gradient(circle at 85% 50%, rgba(232,160,32,0.6) 2px, transparent 2px), radial-gradient(circle at 50% 85%, rgba(255,255,255,0.5) 2px, transparent 2px), radial-gradient(circle at 15% 50%, rgba(232,160,32,0.6) 2px, transparent 2px); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.floating-card { position: absolute; background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 18px; color: var(--white); font-size: 13px; font-weight: 500; }
.floating-card.card-1 { top: 20px; right: -20px; }
.floating-card.card-2 { bottom: 60px; left: -30px; }
.floating-card .card-val { font-family:'Bebas Neue',cursive; font-size:26px; color:var(--accent); line-height:1; }
.floating-card .card-lbl { color:rgba(255,255,255,0.5); font-size:11px; text-transform:uppercase; letter-spacing:1px; }

/* ─── BUTTONS ─── */
.btn-primary { background: var(--accent); color: var(--blue-dark); padding: 15px 30px; border-radius: 8px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; box-shadow: 0 4px 20px rgba(232,160,32,0.3); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,0.4); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); padding: 15px 30px; border-radius: 8px; font-weight: 500; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--accent); padding: 14px 40px; display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--blue-dark); letter-spacing: 0.5px; }

/* ─── SECTIONS ─── */
.section { padding: 90px 40px; max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--water); margin-bottom: 14px; }
.section-title { font-family:'Bebas Neue',cursive; font-size: clamp(36px,4.5vw,58px); color: var(--text); line-height:1; letter-spacing:1px; margin-bottom:18px; }
.section-title em { color: var(--water); font-style:normal; }
.section-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 600px; }
.services-bg { background: var(--off-white); }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 50px; }
.service-card { background: var(--white); border-radius: 16px; padding: 30px; border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--water), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,22,40,0.1); border-color: var(--water-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, #e8f4fb, #d0eaf8); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.service-tag { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 600; color: var(--water); background: #e8f4fb; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── WHY US ─── */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat-card { background: var(--blue-dark); border-radius: 16px; padding: 28px 20px; text-align: center; transition: transform 0.2s; }
.why-stat-card:nth-child(2) { margin-top: 24px; background: var(--blue); }
.why-stat-card:nth-child(3) { margin-top: -24px; background: linear-gradient(135deg, var(--water), #0d7ab8); }
.why-stat-card:nth-child(4) { background: var(--accent); }
.why-stat-card:hover { transform: scale(1.03); }
.why-stat-card .num { font-family:'Bebas Neue',cursive; font-size: 44px; color: var(--white); line-height:1; display:block; margin-bottom:6px; }
.why-stat-card:nth-child(4) .num { color: var(--blue-dark); }
.why-stat-card .lbl { font-size: 12px; color: rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:1px; }
.why-stat-card:nth-child(4) .lbl { color: rgba(10,22,40,0.6); }
.why-points { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.why-point { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border-radius: 10px; background: var(--off-white); border: 1px solid var(--border); }
.why-point-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--water), #0d7ab8); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.why-point-text h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.why-point-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─── GEOLOGY ─── */
.geo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
.geo-layers { background: linear-gradient(180deg, #d4b896 0%, #a07850 18%, #7a5c38 35%, #5c4020 55%, #3a2810 75%, #1e1408 100%); border-radius: 16px; overflow: hidden; position: relative; height: 380px; }
.geo-layer { position: absolute; left: 0; right: 0; display: flex; align-items: center; padding: 0 20px; gap: 12px; }
.geo-layer:nth-child(1) { top: 0; height: 18%; background: rgba(255,255,255,0.1); }
.geo-layer:nth-child(2) { top: 18%; height: 22%; background: rgba(0,0,0,0.15); }
.geo-layer:nth-child(3) { top: 40%; height: 25%; background: rgba(0,0,0,0.2); border-top: 1px dashed rgba(255,255,255,0.2); border-bottom: 1px dashed rgba(255,255,255,0.2); }
.geo-layer:nth-child(4) { top: 65%; height: 35%; background: rgba(0,0,0,0.25); }
.geo-layer-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.geo-layer-depth { font-size: 11px; color: rgba(255,255,255,0.5); }
.water-indicator { position: absolute; left: 10px; right: 10px; top: 48%; height: 3px; background: linear-gradient(90deg, var(--water-light), var(--water)); border-radius: 2px; box-shadow: 0 0 10px rgba(79,189,232,0.8); }
.water-indicator::before { content: '💧 Water Zone'; position: absolute; right: 0; top: -22px; font-size: 11px; color: var(--water-light); font-weight: 600; letter-spacing: 1px; }
.geo-facts { display: flex; flex-direction: column; gap: 20px; }
.geo-fact { padding: 20px 24px; border-radius: 12px; background: var(--off-white); border: 1px solid var(--border); border-left: 4px solid var(--water); }
.geo-fact h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.geo-fact p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.geo-fact strong { color: var(--water); }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.pricing-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10,22,40,0.1); }
.pricing-card.featured { border-color: var(--water); box-shadow: 0 10px 40px rgba(33,150,196,0.15); }
.pricing-head { padding: 28px; background: var(--blue-dark); text-align: center; position: relative; }
.pricing-card.featured .pricing-head { background: linear-gradient(135deg, var(--blue), var(--water)); }
.pricing-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--blue-dark); font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-head h3 { font-family:'Bebas Neue',cursive; font-size: 32px; color: var(--white); letter-spacing:2px; margin-bottom:4px; }
.pricing-head .sub { font-size: 12px; color: rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; }
.pricing-body { padding: 28px; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.pricing-row:last-of-type { border-bottom: none; }
.pricing-row .rock { font-size: 13px; color: var(--text); font-weight: 500; }
.pricing-row .cost { font-size: 14px; font-weight: 700; color: var(--water); }
.pricing-features { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.pricing-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.pricing-feature::before { content: '✓'; color: var(--water); font-weight: 700; }
.pricing-cta { display: block; margin-top: 24px; background: var(--blue-dark); color: var(--white); text-align: center; padding: 13px; border-radius: 8px; font-weight: 600; font-size: 14px; transition: all 0.2s; }
.pricing-card.featured .pricing-cta { background: var(--water); }
.pricing-cta:hover { opacity: 0.85; }

/* ─── TESTIMONIALS ─── */
.testimonials-bg { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 50px; }
.testi-card { background: var(--white); border-radius: 16px; padding: 30px; border: 1px solid var(--border); transition: all 0.3s; position: relative; }
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(10,22,40,0.08); }
.testi-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 80px; color: var(--off-white); font-family: Georgia, serif; line-height:1; pointer-events:none; }
.testi-stars { color: var(--accent); font-size: 16px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family:'Bebas Neue',cursive; font-size: 16px; color: var(--white); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-loc { font-size: 12px; color: var(--text-muted); }
.testi-details { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; gap: 16px; flex-wrap: wrap; }
.testi-detail { font-size: 11px; color: var(--text-muted); }
.testi-detail strong { color: var(--water); }

/* ─── SERVICE AREAS ─── */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.area-tag { background: var(--white); border: 1px solid var(--border); padding: 8px 16px; border-radius: 50px; font-size: 13px; color: var(--text-muted); font-weight: 500; transition: all 0.2s; }
.area-tag:hover { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); transform: translateY(-2px); }
.area-tag.main { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }

/* ─── FAQ ─── */
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--water); }
.faq-q { padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--text); display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; user-select: none; }
.faq-q:hover { background: var(--off-white); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-muted); flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-toggle { background: var(--water); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; font-size: 14px; color: var(--text-muted); line-height: 1.7; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ─── BLOG GRID ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,22,40,0.1); }
.blog-thumb img { width: 100%; height: 200px; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-date { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.blog-title a:hover { color: var(--water); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--water); }

/* ─── CTA SECTION ─── */
.cta-section { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--water) 100%); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section h2 { font-family:'Bebas Neue',cursive; font-size: clamp(36px,5vw,68px); color: var(--white); letter-spacing: 2px; margin-bottom: 16px; }
.cta-section > .cta-inner > p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height:1.6; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { background: var(--accent); color: var(--blue-dark); padding: 16px 36px; border-radius: 8px; font-weight: 800; font-size: 18px; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 6px 24px rgba(232,160,32,0.4); transition: all 0.2s; }
.cta-phone:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,160,32,0.5); }
.cta-whatsapp { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); padding: 16px 36px; border-radius: 8px; font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
.cta-whatsapp:hover { background: rgba(255,255,255,0.15); }
.cta-meta { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 24px !important; }

/* ─── FOOTER ─── */
.site-footer { background: var(--blue-dark); padding: 60px 40px 30px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col a, .footer-menu li a { display: block; color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover, .footer-menu li a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 30px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─── FLOATING WHATSAPP ─── */
.float-call { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); font-size: 28px; transition: all 0.3s; animation: float 3s ease-in-out infinite; }
.float-call:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.float-call-label { position: fixed; bottom: 38px; right: 100px; z-index: 999; background: var(--blue-dark); color: var(--white); padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 15px rgba(0,0,0,0.2); pointer-events: none; opacity: 0; transition: opacity 0.3s; }
.float-call:hover + .float-call-label { opacity: 1; }

/* ─── BACK TO TOP ─── */
.back-to-top { position: fixed; bottom: 100px; right: 32px; z-index: 998; width: 42px; height: 42px; background: var(--blue); color: var(--white); border: none; border-radius: 8px; font-size: 18px; cursor: pointer; opacity: 0; pointer-events: none; transition: all 0.3s; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--water); transform: translateY(-2px); }

/* ─── SINGLE POST ─── */
.post-content { max-width: 800px; margin: 0 auto; padding: 120px 40px 60px; }
.post-content h1 { font-family:'Bebas Neue',cursive; font-size: clamp(32px,4vw,52px); color: var(--text); margin-bottom: 20px; line-height: 1; }
.post-content h2 { font-family:'Bebas Neue',cursive; font-size: 32px; color: var(--text); margin: 40px 0 16px; }
.post-content h3 { font-size: 20px; font-weight: 700; color: var(--text); margin: 30px 0 12px; }
.post-content p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 8px; }
.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content a { color: var(--water); text-decoration: underline; }
.post-content strong { font-weight: 700; color: var(--text); }
.post-content .wp-block-image img { border-radius: 12px; margin: 24px 0; }

/* ─── BREADCRUMB ─── */
.breadcrumb-nav { padding: 100px 40px 0; max-width: 1200px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--water); }

/* ─── PAGINATION ─── */
.pagination-nav { padding: 40px; display: flex; justify-content: center; }
.pagination-nav .page-numbers { display: inline-flex; gap: 8px; list-style: none; }
.pagination-nav .page-numbers li a, .pagination-nav .page-numbers li span { display: block; padding: 8px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; color: var(--text); transition: all 0.2s; }
.pagination-nav .page-numbers li .current, .pagination-nav .page-numbers li a:hover { background: var(--water); color: var(--white); border-color: var(--water); }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .geo-grid { grid-template-columns: 1fr; }
  .site-header { padding: 0 20px; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .section { padding: 60px 20px; }
  .trust-bar { gap: 20px; padding: 14px 20px; }
}
@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .post-content { padding: 100px 20px 40px; }
}
