:root {
  --bg: #f5fbfd;
  --surface: #ffffff;
  --surface-soft: #ecfeff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0ea5a4;
  --primary-dark: #0b7f7e;
  --accent: #0284c7;
  --line: #dbeafe;
  --shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top right, #dff8ff 0%, var(--bg) 42%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 78px;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: 0 12px 25px rgba(14, 165, 164, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(120deg, var(--primary-dark), #0369a1);
  box-shadow: 0 18px 32px rgba(14, 165, 164, 0.4);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.08rem;
  color: #0c4a6e;
}

.nav {
  display: none;
  gap: 1.3rem;
  font-weight: 600;
  color: #1e293b;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary-dark);
}

.phone-chip {
  color: #fff;
  background: #0f766e;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}

.phone-chip:hover,
.phone-chip:focus-visible {
  background: #115e59;
}

.hero {
  padding: 4.7rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-subtitle {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.hero-phone {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f766e;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #d6f4fb;
  min-height: 280px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid #dcf4fb;
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(15, 118, 110, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--surface-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0f766e;
}

.feature-card h3 {
  margin: 0;
  font-size: 1rem;
}

.feature-card p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #a5f3fc;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

/* ── Reviews Rotator ── */
.reviews-rotator {
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card-g {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem 1.2rem;
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: box-shadow 0.2s ease;
}

.rcg-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rcg-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  text-transform: uppercase;
}

.rcg-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
}

.rcg-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 1px;
}

.rcg-google-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.rcg-google-badge:hover {
  opacity: 1;
}

.rcg-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
  flex: 1;
}

.rcg-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #94a3b8;
}

.rcg-source {
  background: #f0f9ff;
  color: #0369a1;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  border: 1px solid #bae6fd;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.rcg-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.rcg-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(14, 165, 164, 0.3);
}

.rcg-dots {
  display: flex;
  gap: 0.4rem;
}

.rcg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s, transform 0.25s;
}

.rcg-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.reviews-google-link {
  text-align: center;
  margin-top: 1.2rem;
}

.reviews-google-link a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.reviews-google-link a:hover {
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.review-rating {
  margin-top: 0.8rem;
  color: #0f766e;
  font-weight: 700;
  font-size: 0.95rem;
}

.cta {
  padding: 4.5rem 0;
}

.cta-box {
  background: linear-gradient(130deg, #0f766e 0%, #0284c7 55%, #38bdf8 100%);
  color: #fff;
  border-radius: calc(var(--radius-lg) + 4px);
  text-align: center;
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: 0 24px 44px rgba(2, 132, 199, 0.28);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cta-box p {
  margin: 0.9rem auto 1.2rem;
  max-width: 56ch;
  color: #e0f2fe;
}

.cta-phone {
  margin: 0.2rem 0 1.4rem;
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cta-box .btn-primary {
  background: #ffffff;
  color: #0f766e;
  box-shadow: 0 10px 24px rgba(12, 74, 110, 0.3);
}

.cta-box .btn-primary:hover,
.cta-box .btn-primary:focus-visible {
  background: #ecfeff;
  color: #0b5f58;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-line {
  margin-top: 0.8rem !important;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  color: #0c4a6e;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #0ea5a4;
  color: #ffffff;
  transform: translateY(-1px);
}

.map-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  min-height: 300px;
  background: #dbeafe;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.footer {
  padding: 2rem 0 5.2rem;
  color: #0f172a;
}

.footer-inner {
  display: grid;
  gap: 0.7rem;
}

.footer small {
  color: #64748b;
}

.sticky-call {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1200;
  display: block;
}

.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(120deg, var(--primary-dark), var(--accent));
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.35);
}

.sticky-call a:hover,
.sticky-call a:focus-visible {
  background: linear-gradient(120deg, #0b6665, #0369a1);
}

[data-animate="fade"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

[data-animate="fade"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {

  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .gallery-item {
    min-height: 180px;
  }

  .sticky-call {
    display: none;
  }
}