:root {
  --primary: #2F6FEA;
  --primary-dark: #1E52C2;
  --secondary: #29C5F6;
  --dark: #12172B;
  --muted: #5B6478;
  --light-bg: #F3F9FF;
  --border: #E3EBF7;
  --white: #ffffff;
  --success: #17A362;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow: 0 10px 30px rgba(18, 23, 43, 0.08);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
@media (max-width: 700px) { section { padding: 56px 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 20px rgba(47, 111, 234, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47, 111, 234, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white {
  background: white;
  color: var(--primary);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--dark);
  color: #cfd8ee;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar-links { display: flex; gap: 20px; }
.topbar-links span { opacity: 0.85; }
@media (max-width: 700px) {
  .topbar .container { flex-direction: column; gap: 4px; text-align: center; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}
.brand img { height: 52px; width: auto; }
.brand .brand-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient);
  color: white;
  font-size: 18px;
}
.brand-text .prime { color: var(--primary); }
.brand-text .glow { color: var(--secondary); }
.brand-text small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}
.nav-links a.active, .nav-links a:hover { color: var(--primary); }
.nav-links a.btn-outline:hover {
  background: var(--primary);
  color: white;
  border-color: transparent;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-close {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 22px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    transition: right 0.3s ease;
  }
  .nav-links.open { right: 0; }
  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    min-width: 44px;
    height: 44px;
  }
  .nav-phone-mobile { display: block; margin-top: 12px; }
  .menu-toggle { display: flex; }
  .nav-cta .nav-phone { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--gradient);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 45%);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-badges, .hero-actions { justify-content: center; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: 18px;
  opacity: 0.92;
  max-width: 520px;
  margin-bottom: 28px;
}
@media (max-width: 900px) { .hero p.lead { margin-left: auto; margin-right: auto; } }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14px; }
.hero-badges div { display: flex; align-items: center; gap: 8px; opacity: 0.95; }
.hero-art {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-art .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-art .stat { text-align: center; padding: 16px; background: rgba(255,255,255,0.12); border-radius: 14px; }
.hero-art .stat b { display: block; font-size: 28px; }
.hero-art .stat span { font-size: 13px; opacity: 0.85; }

/* ---------- Section headers ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--light-bg);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.icon-circle {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--light-bg);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-circle svg { width: 26px; height: 26px; }

.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.service-card .price {
  font-weight: 800;
  color: var(--primary);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}
.service-card ul { margin: 12px 0 16px; }
.service-card ul li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.service-card ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--success);
  font-weight: 800;
}

/* ---------- Why us / features ---------- */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .icon-circle { flex-shrink: 0; margin-bottom: 0; }
.feature h4 { font-size: 16px; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 26px;
}
.stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 12px; font-size: 15px; }
.testimonial-card p.quote { font-size: 15px; color: var(--dark); margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.testimonial-author b { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12.5px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gradient);
  border-radius: 24px;
  color: white;
  padding: 56px;
  text-align: center;
}
.cta-banner h2 { font-size: 28px; margin-bottom: 12px; }
.cta-banner p { opacity: 0.92; margin-bottom: 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  display: grid;
  grid-template-rows: 220px auto;
  box-shadow: 0 24px 60px rgba(7, 20, 37, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(7, 20, 37, 0.12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item-content {
  padding: 18px 16px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.gallery-item span { font-size: 15px; font-weight: 700; color: var(--dark); }
.gallery-item small { font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) {
  .gallery-item { grid-template-rows: 200px auto; }
}
@media (max-width: 600px) {
  .gallery-item { grid-template-rows: 180px auto; }
}



/* ---------- Forms ---------- */
.form-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--light-bg);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.field.honeypot { position: absolute; left: -9999px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success {
  display: none;
  background: #EAFBF2;
  border: 1px solid #BEEBD3;
  color: #0F6B3F;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  margin-top: 16px;
}

/* ---------- Contact info blocks ---------- */
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
  background: var(--light-bg);
  margin-bottom: 16px;
}
.contact-info-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--muted); }
.contact-info-card a:hover { color: var(--primary); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: white;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question .chevron { transition: transform 0.2s ease; color: var(--primary); }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
  color: var(--muted);
  font-size: 14.5px;
}
.faq-item.open .faq-answer { max-height: 260px; padding-bottom: 18px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--gradient);
  color: white;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { font-size: 34px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { opacity: 0.9; max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 13px; opacity: 0.85; margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #B9C2D9;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: white; font-size: 15px; margin-bottom: 16px; }
.site-footer .brand-text .prime, .site-footer .brand-text .glow { filter: brightness(1.2); }
.site-footer p.desc { font-size: 14px; margin: 14px 0; opacity: 0.85; }
.site-footer ul li { margin-bottom: 10px; font-size: 14px; }
.site-footer ul li a:hover { color: white; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gradient); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; text-align: center; } }

/* ---------- Floating mobile call button ---------- */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  box-shadow: 0 10px 24px rgba(47,111,234,0.4);
}
@media (max-width: 900px) { .floating-call { display: flex; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
