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

:root {
  --primary: #5c1e9e;
  --primary-dark: #3d0f73;
  --accent: #ff6b00;
  --accent-light: #ff8c33;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f8f7ff;
  --border: #e5e7eb;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(92,30,158,0.10);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  padding-top: 76px;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: auto;
}

img { max-width: 100%; display: block; }

/* ========== HEADER ========== */
.header {
  background: var(--primary);
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  font-size: 30px;
  line-height: 1;
}
.logo-text h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}
.logo-text span {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.nav .nav-call {
  background: var(--accent);
  color: #fff;
  margin-left: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
}
.nav .nav-call:hover { background: var(--accent-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 25px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #3d0f73 0%, #5c1e9e 45%, #1a6b8a 100%);
  color: #fff;
  padding: 90px 0 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  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.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 .accent { color: #ffd166; }
.hero > .hero-content > p {
  font-size: clamp(15px, 2vw, 18px);
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-secondary {
  border: 2px solid rgba(255,255,255,0.6);
  padding: 13px 28px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; padding: 14px; border-radius: 10px; font-size: 16px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #ffd166;
}
.hero-stats span { font-size: 13px; opacity: 0.75; }

/* ========== SECTION COMMON ========== */
.section-label {
  display: inline-block;
  background: rgba(92,30,158,0.1);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
}

/* ========== QUOTE ========== */
.quote-section {
  background: var(--bg-soft);
  padding: 80px 0;
  text-align: center;
}
.quote-form {
  max-width: 560px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92,30,158,0.1);
}

/* ========== SERVICES ========== */
.services { padding: 80px 0; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.service-card {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.service-icon { font-size: 38px; margin-bottom: 14px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p { color: var(--text-muted); font-size: 14px; }

/* ========== PROCESS ========== */
.process {
  background: var(--bg-soft);
  padding: 80px 0;
  text-align: center;
}
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.process-step {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  width: 160px;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.process-step:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.step-icon { font-size: 30px; margin-bottom: 10px; }
.process-step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.process-step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.process-arrow {
  font-size: 22px;
  color: var(--primary);
  opacity: 0.4;
  align-self: center;
  padding: 0 4px;
}

/* ========== STATS ========== */
.stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; padding: 0 30px; }
.stat-item h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: #ffd166;
  margin-bottom: 6px;
}
.stat-item p { font-size: 14px; opacity: 0.8; letter-spacing: 0.5px; }
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.2);
}

/* ========== REVIEWS ========== */
.reviews { padding: 80px 0; text-align: center; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.review-card {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.reviewer strong { font-size: 14px; color: var(--text); }

/* ========== CONTACT ========== */
.contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-item > span { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); margin-bottom: 4px; }
.contact-item a {
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}
.contact-item a:hover { color: var(--primary); }
.contact-item p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }
.map-wrap {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ========== FOOTER ========== */
.footer {
  background: #0f0f1a;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 28px 20px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.footer p { font-size: 13.5px; }

/* ========== FLOATING BUTTONS ========== */
.float-btn {
  position: fixed;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 999;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.float-btn.whatsapp { left: 16px; background: #25D366; }
.float-btn.call { right: 16px; background: var(--accent); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 300px; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  body { padding-top: 68px; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    gap: 10px;
    min-height: 100vh;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 1050;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { font-size: 18px; padding: 12px 30px; width: 100%; text-align: center; }
  .nav .nav-call { margin-left: 0; margin-top: 8px; }

  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 20px; }
  .hero-stats strong { font-size: 22px; }

  .form-row { grid-template-columns: 1fr; }

  .process-arrow { display: none; }
  .process-grid { flex-direction: column; align-items: center; gap: 14px; }
  .process-step { width: 100%; max-width: 320px; }

  .stats-grid { gap: 30px; }
  .stat-item { padding: 0 10px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }

  .float-btn span { display: none; }
  .float-btn { padding: 13px; border-radius: 50%; }
  .float-btn svg { width: 24px; height: 24px; }
  .float-btn.whatsapp { left: 14px; }
  .float-btn.call { right: 14px; }
}