@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --blue: #0057A8;
  --blue-dark: #003D7A;
  --blue-mid: #1a6fc4;
  --orange: #E8560A;
  --orange-light: #FF6B1A;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --slate: #F0F4F8;
  --text: #1A2332;
  --text-light: #4A5568;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(0,87,168,0.08);
  --shadow-md: 0 8px 32px rgba(0,87,168,0.12);
  --shadow-lg: 0 20px 60px rgba(0,87,168,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1,h2,h3,h4,h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 20px rgba(232,86,10,0.3);
}
.btn-primary:hover {
  background: #c74508;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,86,10,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ── NAVBAR ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--slate);
  color: var(--blue);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone i { color: var(--orange); }

.ham-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ham-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.ham-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 998;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: block; }
@keyframes slideDown {
  from { opacity:0; transform: translateY(-10px); }
  to   { opacity:1; transform: translateY(0); }
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #EBF3FF 0%, #F5F7FA 50%, #FFF3EE 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,168,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,86,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px 6px 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat {}
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 460px; }
.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-float-card.card-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 30px; right: -20px; animation-delay: 1s; }
.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-float-icon.orange { background: #FFF0E8; color: var(--orange); }
.hero-float-icon.blue   { background: #EBF3FF; color: var(--blue); }
.hero-float-text { font-family: 'Outfit', sans-serif; }
.hero-float-text strong { font-size: 0.9rem; display: block; color: var(--text); }
.hero-float-text span { font-size: 0.75rem; color: var(--text-light); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue-dark);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item i { color: var(--orange); font-size: 1.1rem; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: var(--slate);
  color: var(--blue);
  transition: all 0.3s;
}
.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
}
.svc-card h3 {
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.svc-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  transition: gap 0.2s;
}
.svc-card:hover .svc-link { gap: 10px; }

/* ── WHY US ── */
.why-section { background: var(--slate); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-img-wrap { position: relative; }
.why-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-badge-float {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: 0 8px 30px rgba(232,86,10,0.4);
  font-family: 'Outfit', sans-serif;
}
.why-badge-float strong { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.why-badge-float span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.why-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.why-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 1rem; color: var(--blue-dark); margin-bottom: 4px; }
.why-item p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* ── LOCAL SEO ZONES ── */
.zones-section { background: var(--blue-dark); color: white; }
.zones-section .section-title { color: white; }
.zones-section .section-sub { color: rgba(255,255,255,0.7); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.zone-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.25s ease;
}
.zone-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.zone-card h4 {
  font-size: 1.05rem;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.zone-card h4 i { color: var(--orange); font-size: 0.85rem; }
.zone-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.zone-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}
.zone-card a:hover { gap: 9px; }

/* ── NICHE CONTENT ── */
.niche-alt { background: var(--off-white); }
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.niche-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.niche-block:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.niche-block-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #EBF3FF;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.niche-block h3 { font-size: 1.1rem; color: var(--blue-dark); margin-bottom: 10px; }
.niche-block p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.g-item { border-radius: var(--radius); overflow: hidden; background: var(--slate); position: relative; cursor: pointer; }
.g-item.wide  { grid-column: span 2; }
.g-item.tall  { grid-row: span 2; }
.g-item.large { grid-column: span 2; grid-row: span 2; }
.g-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.g-item:hover img { transform: scale(1.07); }
.g-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.g-item:hover .g-caption { transform: translateY(0); }

/* ── VIDEO SECTION ── */
.videos-section { background: #0D1B2A; }
.videos-section .section-title { color: white; }
.videos-section .section-sub { color: rgba(255,255,255,0.6); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.vid-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a2d3e;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
}
.vid-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.vid-ratio { position:relative; width:100%; padding-top:177.78%; }
.vid-ratio video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.vid-label {
  padding: 10px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'Outfit', sans-serif;
}

/* ── FAQ ── */
.faq-section { background: var(--blue-dark); color: white; }
.faq-section .section-title { color: white; }
.faq-wrap { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.faq-q:hover { color: white; }
.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--orange); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── CONTACT ── */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 1rem; font-weight: 600; color: var(--text); }
.contact-item a:hover { color: var(--blue); }

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,87,168,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: #EBF8F0;
  border-radius: var(--radius);
  color: #1a6640;
  font-weight: 600;
  margin-top: 16px;
}

/* ── MAP ── */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 420px; border: none; }

/* ── FOOTER ── */
.footer {
  background: #0A1628;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; max-width: 280px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-contact-mini a:hover { color: white; }
.footer-contact-mini i { color: var(--orange); width: 14px; }
.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* ── CHATBOT ── */
.chatbot-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9900;
}
.chatbot-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,87,168,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s;
  position: relative;
}
.chatbot-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(0,87,168,0.5); }
.chatbot-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #22C55E;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}
.chatbot-panel {
  display: none;
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 340px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: popIn 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes popIn {
  from { opacity:0; transform: scale(0.9) translateY(10px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.chatbot-panel.open { display: block; }
.chatbot-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.chatbot-header-info h4 { font-size: 0.95rem; font-weight: 700; }
.chatbot-header-info span { font-size: 0.75rem; opacity: 0.75; }
.chatbot-api-box {
  padding: 16px;
  background: var(--slate);
  border-bottom: 1px solid var(--border);
}
.chatbot-api-box label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
}
.chatbot-api-box input {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text);
  background: white;
  outline: none;
  font-family: monospace;
}
.chatbot-api-box input:focus { border-color: var(--blue); }
.chatbot-messages {
  height: 240px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
}
.chat-msg.bot {
  background: var(--slate);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--blue);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.typing { opacity: 0.6; font-style: italic; }
.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.chatbot-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.chatbot-input-row input:focus { border-color: var(--blue); }
.chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.chatbot-send:hover { background: var(--blue-dark); }

/* ── COOKIES ── */
.cookies-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0A1628;
  color: white;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  border-top: 2px solid var(--blue);
}
.cookies-bar.show { transform: translateY(0); }
.cookies-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookies-text-block h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
  color: white;
}
.cookies-text-block p { font-size: 0.82rem; color: rgba(255,255,255,0.65); max-width: 600px; }
.cookies-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookies-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.cookies-btn-accept { background: var(--orange); color: white; }
.cookies-btn-accept:hover { background: #c74508; }
.cookies-btn-reject { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.cookies-btn-reject:hover { background: rgba(255,255,255,0.15); color: white; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SUBPAGE HERO ── */
.page-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding-bottom: 72px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 24px 0;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 28px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .zones-grid       { grid-template-columns: repeat(2, 1fr); }
  .videos-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .niche-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .ham-btn { display: flex; }
  .hero-inner       { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual      { display: none; }
  .hero-actions     { justify-content: center; }
  .hero-stats       { justify-content: center; }
  .why-grid         { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .niche-grid       { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-item.wide, .g-item.large { grid-column: span 2; }
  .g-item.tall      { grid-row: span 1; }
  .footer-grid      { grid-template-columns: 1fr; }
  .zones-grid       { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .contact-form     { padding: 28px 20px; }
  .section          { padding: 64px 0; }
  .chatbot-panel    { width: 300px; }
  .trust-bar-inner  { gap: 24px; }
}
@media (max-width: 480px) {
  .gallery-grid  { grid-template-columns: 1fr; }
  .g-item.wide, .g-item.large, .g-item.tall { grid-column: span 1; grid-row: span 1; }
  .videos-grid   { grid-template-columns: 1fr 1fr; }
  .zones-grid    { grid-template-columns: 1fr; }
  .hero-stats    { flex-wrap: wrap; gap: 20px; }
}
