:root {
  --bg: #f1f5f9;
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0f766e;
  --primary-dark: #0f4f46;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --border: #dbeafe;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --gradient-hero: linear-gradient(135deg, rgba(11, 78, 75, 0.58), rgba(2, 132, 199, 0.24));
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 251, 0.96));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(31, 122, 110, 0.08), transparent 35%), var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

p {
  margin: 0 0 1.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.whatsapp-logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  min-width: 176px;
  min-height: 62px;
}

.whatsapp-logo {
  height: 42px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 118, 104, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(31, 122, 110, 0.16);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.95);
}

.btn-large {
  min-width: 240px;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1500&q=80") center/cover no-repeat;
  filter: saturate(1.05) brightness(0.55);
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  z-index: 1;
  animation: fadeInUp 1s ease both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(229, 246, 239, 0.95);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.hero-copy {
  color: rgba(236, 249, 243, 0.95);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 1.5rem auto 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.about-card,
.map-card,
.contact-card,
.service-card,
.testimonial-grid blockquote,
.benefit-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.9s ease both;
}

.about-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,252,0.96));
}

.service-card {
  background: var(--gradient-card);
}

.service-card:hover,
.benefit-item:hover,
.testimonial-grid blockquote:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.about-highlight {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.95rem;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.card-grid,
.benefit-grid,
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card.featured {
  border-color: rgba(245, 158, 11, 0.2);
}

.price-list {
  display: grid;
  gap: 0.75rem;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.price-list div strong {
  color: var(--primary-dark);
}

.price-list div span {
  color: var(--accent-dark);
}

.service-note {
  margin-top: auto;
  color: var(--muted);
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-item h3 {
  margin-bottom: 0.5rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.1rem;
  background: rgba(255, 250, 240, 0.8);
}

.testimonial-grid footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.area-list li {
  padding-left: 1rem;
  position: relative;
}

.area-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.map-card {
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  min-height: 300px;
  height: 100%;
  border: 0;
  border-radius: 18px;
  display: block;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 0;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.about-card,
.service-card,
.benefit-item,
.testimonial-grid blockquote,
.map-card,
.contact-card {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

.service-card:nth-child(1) {
  animation-delay: 0.15s;
}

.service-card:nth-child(2) {
  animation-delay: 0.25s;
}

.service-card:nth-child(3) {
  animation-delay: 0.35s;
}

.benefit-item:nth-child(1),
.testimonial-grid blockquote:nth-child(1) {
  animation-delay: 0.18s;
}

.benefit-item:nth-child(2),
.testimonial-grid blockquote:nth-child(2) {
  animation-delay: 0.28s;
}

.benefit-item:nth-child(3),
.testimonial-grid blockquote:nth-child(3) {
  animation-delay: 0.38s;
}

@media (max-width: 920px) {
  .grid-two,
  .card-grid,
  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 740px) {
  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 70vh;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}
