/* =========================================================
   ROOT / TOKENS
========================================================= */
:root {
  /* Verde primario */
  --primary-50: hsl(104, 64%, 90%);
  --primary-100: hsl(104, 64%, 80%);
  --primary-200: hsl(104, 64%, 65%);
  --primary-300: hsl(104, 64%, 50%);
  --primary-400: hsl(104, 64%, 35%);
  --primary-500: hsl(104, 64%, 18%);
  --primary-600: hsl(104, 64%, 15%);
  --primary-700: hsl(104, 64%, 12%);
  --primary-800: hsl(104, 64%, 9%);
  --primary-900: hsl(104, 64%, 6%);

  /* Secundario tierra */
  --secondary-50: hsl(41, 20%, 92%);
  --secondary-100: hsl(41, 20%, 82%);
  --secondary-200: hsl(41, 20%, 70%);
  --secondary-300: hsl(41, 20%, 60%);
  --secondary-400: hsl(41, 20%, 55%);
  --secondary-500: hsl(41, 20%, 51%);
  --secondary-600: hsl(41, 20%, 45%);
  --secondary-700: hsl(41, 20%, 38%);
  --secondary-800: hsl(41, 20%, 30%);
  --secondary-900: hsl(41, 20%, 22%);

  /* Fondo */
  --bg-50: hsl(0, 0%, 100%);
  --bg-100: hsl(0, 0%, 97%);
  --bg-200: hsl(0, 0%, 95%);
  --bg-300: hsl(0, 0%, 90%);
  --bg-400: hsl(0, 0%, 85%);

  /* Texto */
  --text-50: hsl(0, 0%, 30%);
  --text-100: hsl(0, 0%, 20%);
  --text-200: hsl(0, 0%, 10%);
  --text-300: hsl(0, 0%, 7%);
  --text-400: hsl(0, 0%, 5%);
  --text-500: hsl(0, 0%, 2%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-50);
  color: var(--text-400);
  font-family: "Inter", sans-serif;
}

h1,
h2,
.logo-text {
  font-family: "Cinzel", serif;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0.9rem 1.25rem;
  animation: navFadeDown 0.7s ease;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: hsla(0, 0%, 100%, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid hsla(41, 20%, 70%, 0.45);
  border-radius: 16px;
  box-shadow: 0 10px 30px hsla(0, 0%, 5%, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.logo:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-100);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  border-radius: 999px;
  transition: width 0.28s ease;
}

.nav-links a:hover {
  color: var(--primary-500);
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 46px;
  padding: 0 1.35rem;
  border-radius: 999px;

  background: var(--primary-500);
  color: var(--bg-50);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;

  box-shadow: 0 8px 20px hsla(104, 64%, 18%, 0.18);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-btn:hover {
  background: var(--primary-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px hsla(104, 64%, 18%, 0.24);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-toggle {
  min-width: 68px;
  height: 42px;
  padding: 0 0.9rem;
  border: 1px solid var(--bg-300);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-toggle .fi {
  font-size: 1rem;
  line-height: 1;
  border-radius: 2px;
  overflow: hidden;
}

.lang-toggle-text {
  line-height: 1;
}

.mobile-language {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.35rem;
}

.mobile-lang-toggle {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   MOBILE MENU
========================================================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-300);
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
}

.mobile-menu {
  position: fixed;
  top: 90px;
  right: 1.5rem;
  width: 260px;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 1.2rem;

  background: hsla(0, 0%, 100%, 0.92);
  backdrop-filter: blur(12px);

  border-radius: 16px;
  border: 1px solid hsla(41, 20%, 70%, 0.4);

  box-shadow: 0 15px 40px hsla(0, 0%, 5%, 0.12);

  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;

  transition: all 0.25s ease;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-200);
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--primary-500);
}

.mobile-cta {
  margin-top: 0.5rem;
  text-align: center;
  background: var(--primary-500);
  color: white !important;
  padding: 0.7rem;
  border-radius: 999px;
  font-weight: 600;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1s ease,
    transform 6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    hsla(0, 0%, 5%, 0.68) 0%,
    hsla(0, 0%, 5%, 0.52) 32%,
    hsla(0, 0%, 5%, 0.26) 58%,
    hsla(0, 0%, 5%, 0.12) 100%
  );
  z-index: -2;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--bg-50);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  animation: heroFadeUp 0.9s ease;
  transform: translateY(-1rem);
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border: 1px solid hsla(0, 0%, 100%, 0.24);
  border-radius: 999px;
  background: hsla(0, 0%, 100%, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--secondary-100);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--bg-50);
  text-wrap: balance;
  text-shadow: 0 4px 18px hsla(0, 0%, 0%, 0.22);
}

.hero h1 span {
  display: block;
  color: var(--secondary-100);
}

.hero-description {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.75;
  color: hsla(0, 0%, 100%, 0.9);
  text-shadow: 0 2px 10px hsla(0, 0%, 0%, 0.18);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  min-height: 50px;
  padding: 0 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.hero-btn-primary {
  background: var(--primary-500);
  color: var(--bg-50);
  box-shadow: 0 10px 24px hsla(104, 64%, 18%, 0.3);
}

.hero-btn-primary:hover {
  background: var(--primary-400);
}

.hero-btn-secondary {
  border: 1px solid hsla(0, 0%, 100%, 0.38);
  background: hsla(0, 0%, 100%, 0.12);
  color: var(--bg-50);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-btn-secondary:hover {
  background: hsla(0, 0%, 100%, 0.2);
  border-color: hsla(0, 0%, 100%, 0.5);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 3;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: hsla(0, 0%, 100%, 0.35);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.hero-dot:hover {
  transform: scale(1.1);
  background: hsla(0, 0%, 100%, 0.65);
}

.hero-dot.active {
  background: var(--bg-50);
  transform: scale(1.15);
}

/* =========================================================
   SERVICES
========================================================= */
.services {
  padding: 6rem 1.5rem;
  background: var(--bg-50);
}

.services-container {
  max-width: 1180px;
  margin: 0 auto;
}

.services-heading {
  max-width: 680px;
  margin-bottom: 2.8rem;
}

.services-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary-500);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-heading h2 {
  color: var(--text-400);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.services-intro {
  color: var(--text-100);
  font-size: 1rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px hsla(0, 0%, 5%, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px hsla(0, 0%, 5%, 0.1);
  border-color: var(--secondary-200);
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.05);
}

.service-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.35rem 1.25rem 1.4rem;
}

.service-card-content h3 {
  color: var(--text-400);
  font-size: 1.28rem;
  line-height: 1.2;
  font-family: "Cinzel", serif;
}

.service-card-content p {
  color: var(--text-100);
  font-size: 0.97rem;
  line-height: 1.7;
}

.service-link {
  margin-top: auto;
  color: var(--primary-500);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* =========================================================
   REVIEWS / WHY CHOOSE US
========================================================= */
.reviews {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-50) 0%, var(--bg-100) 100%);
}

.reviews-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.reviews-info {
  max-width: 560px;
}

.reviews-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary-500);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-info h2 {
  color: var(--text-400);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.reviews-description {
  color: var(--text-100);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.reviews-highlight {
  padding: 1.2rem 1.2rem;
  border-radius: 18px;
  background: var(--bg-50);
  border: 1px solid var(--secondary-200);
  box-shadow: 0 12px 30px hsla(0, 0%, 5%, 0.05);
  margin-bottom: 1.5rem;
}

.reviews-stars {
  margin-bottom: 0.55rem;
}

.reviews-stars span {
  color: var(--secondary-600);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.reviews-highlight p {
  color: var(--text-100);
  font-size: 0.97rem;
  line-height: 1.75;
}

.reviews-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reviews-points li {
  color: var(--text-100);
  font-size: 0.97rem;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.reviews-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-500);
}

.reviews-slider-wrapper {
  position: relative;
}

.reviews-slider {
  position: relative;
  min-height: 320px;
}

.review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 40px hsla(0, 0%, 5%, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.review-card-stars {
  color: var(--secondary-600);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--text-200);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-author strong {
  color: var(--text-400);
  font-size: 1rem;
}

.review-author span {
  color: var(--text-50);
  font-size: 0.92rem;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
}

.review-btn {
  border: 1px solid var(--secondary-200);
  background: var(--bg-50);
  color: var(--text-200);
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.review-btn:hover {
  background: var(--primary-500);
  color: var(--bg-50);
  border-color: var(--primary-500);
  transform: translateY(-1px);
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--bg-300);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.review-dot.active {
  background: var(--primary-500);
  transform: scale(1.18);
}

/* =========================================================
   SERVICE AREA
========================================================= */
.service-area {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-100) 0%, var(--bg-50) 100%);
}

.service-area-container {
  max-width: 1180px;
  margin: 0 auto;
}

.service-area-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.service-area-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary-500);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-area-heading h2 {
  color: var(--text-400);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.service-area-intro {
  color: var(--text-100);
  font-size: 1rem;
  line-height: 1.8;
}

.service-area-card {
  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px hsla(0, 0%, 5%, 0.08);
}

.service-area-map-wrapper {
  padding: 1rem;
}

.service-area-map {
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 22px;
  display: block;
  background: var(--bg-200);
}

.service-area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0 1.25rem 1.5rem;
}

.service-area-cities span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--secondary-50);
  border: 1px solid var(--secondary-200);
  color: var(--text-200);
  font-size: 0.94rem;
  font-weight: 600;
}

/* =========================================================
   CONTACT
========================================================= */
.contact {
  padding: 6rem 1.5rem;
  background: var(--bg-50);
  margin-bottom: 8rem;
}

.contact-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.contact-kicker {
  color: var(--primary-400);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.contact-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--text-400);
  margin-bottom: 1rem;
}

.contact-description {
  max-width: 520px;
  color: var(--text-100);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn-primary {
  background: var(--primary-500);
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.contact-btn-primary:hover {
  background: var(--primary-400);
  transform: translateY(-2px);
}

.contact-btn-secondary {
  border: 1px solid var(--bg-300);
  color: var(--text-200);
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.contact-btn-secondary:hover {
  background: var(--bg-100);
  transform: translateY(-2px);
}

.contact-right {
  background: var(--bg-100);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--bg-300);
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.contact-phone {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-500);
  text-decoration: none;
  margin-bottom: 1rem;
}

.contact-phone:hover {
  color: var(--primary-400);
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-100);
  line-height: 1.6;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--primary-700);
  color: white;
  padding: 4rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.12);
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  color: hsla(0, 0%, 100%, 0.72);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links-group h3,
.footer-contact h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: hsla(0, 0%, 100%, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-phone {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  padding: 1.5rem 1rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0.25rem 0;
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* link bonito, no el típico azul triste */
.footer-bottom a {
  color: #9BE15D; /* verde suave que ya va con tu fondo */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* hover con intención */
.footer-bottom a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(155, 225, 93, 0.5);
}

/* pequeño detalle pro */
.footer-bottom p:first-child {
  letter-spacing: 0.5px;
}

/* =========================================================
   RESPONSIVE - NAVBAR / MOBILE MENU
========================================================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }
}

/* =========================================================
   RESPONSIVE - SERVICES
========================================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services {
    padding: 4.5rem 1.25rem;
  }

  .services-heading {
    margin-bottom: 2rem;
  }

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

  .service-card-content {
    padding: 1.2rem 1.1rem 1.25rem;
  }

  .service-card-content h3 {
    font-size: 1.15rem;
  }

  .services-intro,
  .service-card-content p {
    font-size: 0.95rem;
  }
}

/* =========================================================
   RESPONSIVE - REVIEWS
========================================================= */
@media (max-width: 980px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-info {
    max-width: 100%;
  }

  .reviews-slider {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .reviews {
    padding: 4.5rem 1.25rem;
  }

  .review-card {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .review-text {
    font-size: 0.97rem;
    line-height: 1.8;
  }

  .review-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =========================================================
   RESPONSIVE - SERVICE AREA
========================================================= */
@media (max-width: 768px) {
  .service-area {
    padding: 4.5rem 1.25rem;
  }

  .service-area-map {
    height: 420px;
  }

  .service-area-cities {
    padding: 0 1rem 1.25rem;
    gap: 0.7rem;
  }

  .service-area-cities span {
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .service-area-map {
    height: 360px;
  }
}

/* =========================================================
   RESPONSIVE - CONTACT
========================================================= */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-right {
    text-align: center;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-btn-primary,
  .contact-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   RESPONSIVE - FOOTER
========================================================= */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 3rem 1.25rem 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo img {
    height: 52px;
  }
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}