:root {
  --primary: #191933;
  --accent: #c10c1d;
  --accent-soft: #f04b4b;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #f5f7fb;
  --card: #ffffff;
  --line: #e5e7eb;
  --radius: 14px;
  --shadow: 0 12px 28px rgba(25, 25, 51, 0.12);
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0.55rem 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--accent);
  backdrop-filter: blur(8px);
  color: #fff;
}

.nav {
  width: var(--container);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand span {
  font-size: 1rem;
  color: #303046;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 600;
  color: #303046;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(193, 12, 29, 0.25);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.hero {
  background:
    linear-gradient(130deg, rgba(25, 25, 51, 0.95), rgba(25, 25, 51, 0.85)),
    url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  margin: 0.9rem 0;
}

.hero p {
  max-width: 48ch;
  color: #d7d9e4;
}

.hero-ctas {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.hero-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.stats {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.stats li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 0.45rem;
}

section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.section-title p {
  margin: 0.7rem auto 0;
  max-width: 66ch;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  color: var(--primary);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: #ffe5e8;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.badge {
  background: #edf0fa;
  color: var(--primary);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
}

.rating-summary {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.stars {
  color: #ffc107;
  letter-spacing: 2px;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.35s ease;
}

.slide {
  min-width: 100%;
}

.quote {
  margin: 0;
  color: #111827;
  font-size: 0.95rem;
}

.reviewer {
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1000px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(193, 12, 29, 0.15);
  border-radius: 16px;
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:nth-child(2) {
  transform: translateY(8px) translateX(-4px);
  background: rgba(255, 255, 255, 0.8);
}

.testimonial-card:nth-child(3) {
  transform: translateY(16px) translateX(4px);
  background: rgba(255, 255, 255, 0.9);
}

.testimonial-card:hover {
  transform: translateY(0) !important;
  box-shadow: 0 16px 32px rgba(193, 12, 29, 0.12);
}

.testimonial-card .stars {
  margin-bottom: 0.8rem;
  display: block;
}

.testimonial-card .quote {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  color: #111827;
  font-style: italic;
}

.testimonial-card .reviewer {
  margin: 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary), #2d2d55);
  color: #fff;
  padding: 3rem 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.page-hero p {
  margin-top: 0.6rem;
  color: #d7d9e4;
  max-width: 68ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.info-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
}

.info-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
}

form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.28rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cdd2dd;
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

footer {
  background: #131327;
  color: #fff;
  margin-top: 3rem;
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 2.2rem 0;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-inner h4 {
  margin-top: 0;
}

.footer-link {
  display: block;
  color: #d8dbea;
  margin-bottom: 0.35rem;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: #c0c6db;
  font-size: 0.88rem;
  padding: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 55;
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 4vw;
    left: 4vw;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 680px) {
  section {
    padding: 3rem 0;
  }

  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 2.6rem 0;
  }
}
