:root {
  --primary-50: hsl(12, 80%, 95%);
  --primary-100: hsl(12, 75%, 88%);
  --primary-200: hsl(12, 70%, 75%);
  --primary-300: hsl(12, 68%, 62%);
  --primary-400: hsl(12, 66%, 52%);
  --primary-500: hsl(12, 70%, 45%);
  --primary-600: hsl(12, 75%, 40%);
  --primary-700: hsl(12, 80%, 34%);
  --primary-800: hsl(12, 85%, 28%);
  --primary-900: hsl(12, 90%, 22%);
  --primary-950: hsl(12, 95%, 15%);

  --accent-50: hsl(195, 100%, 95%);
  --accent-100: hsl(195, 95%, 85%);
  --accent-200: hsl(195, 90%, 75%);
  --accent-300: hsl(195, 85%, 65%);
  --accent-400: hsl(195, 80%, 55%);
  --accent-500: hsl(195, 85%, 50%);
  --accent-600: hsl(195, 90%, 45%);
  --accent-700: hsl(195, 95%, 38%);
  --accent-800: hsl(195, 100%, 30%);
  --accent-900: hsl(195, 100%, 22%);
  --accent-950: hsl(195, 100%, 15%);

  --text-50: hsl(210, 30%, 95%);
  --text-100: hsl(210, 28%, 85%);
  --text-200: hsl(210, 26%, 70%);
  --text-300: hsl(210, 24%, 55%);
  --text-400: hsl(210, 22%, 45%);
  --text-500: hsl(210, 20%, 35%);
  --text-600: hsl(210, 25%, 28%);
  --text-700: hsl(210, 30%, 22%);
  --text-800: hsl(210, 35%, 18%);
  --text-900: hsl(210, 40%, 12%);
  --text-950: hsl(210, 45%, 8%);

  --bg-50: hsl(0, 0%, 100%);
  --bg-100: hsl(0, 0%, 97%);
  --bg-200: hsl(0, 0%, 94%);
  --bg-300: hsl(0, 0%, 90%);
  --bg-400: hsl(0, 0%, 85%);
  --bg-500: hsl(0, 0%, 75%);
  --bg-600: hsl(0, 0%, 65%);
  --bg-700: hsl(0, 0%, 50%);
  --bg-800: hsl(0, 0%, 35%);
  --bg-900: hsl(0, 0%, 20%);
  --bg-950: hsl(0, 0%, 10%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #4d4d4d transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-100);
  color: var(--text-800);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--text-900);
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #4d4d4d;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a3a3a;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
  background: transparent;
  transition:
    background 0.25s ease,
    padding 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

.navbar.scrolled {
  padding: 8px 0;
  background: hsla(210, 45%, 8%, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px hsla(210, 45%, 8%, 0.16);
}

.navbar__container {
  width: min(1180px, calc(100% - 40px));
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand img {
  height: 80px;
  display: block;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.navbar__mobile-logo {
  display: none;
}

.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: var(--bg-50);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.navbar__link:hover {
  color: var(--bg-50);
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-500);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link svg {
  display: none;
}

.navbar__cta {
  padding: 0.58rem 1.15rem;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  border-radius: 10px;
  background: transparent;
}

.navbar__cta::after {
  display: none;
}

.navbar__cta:hover {
  background: var(--bg-50);
  color: var(--text-900);
}

.navbar__cta svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.navbar__toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  padding: 0;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--bg-50);
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--text-950);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.9s ease,
    transform 1.4s ease;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      hsla(210, 45%, 8%, 0.92) 0%,
      hsla(210, 45%, 8%, 0.72) 42%,
      hsla(210, 45%, 8%, 0.28) 100%
    ),
    linear-gradient(0deg, hsla(210, 45%, 8%, 0.55) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.8rem;
  color: var(--bg-50);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 3px solid var(--primary-500);
  background: hsla(0, 0%, 100%, 0.08);
  backdrop-filter: blur(10px);
}

.hero__title {
  max-width: 760px;
  color: var(--bg-50);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1.3rem;
}

.hero__text {
  max-width: 600px;
  color: hsla(0, 0%, 100%, 0.68);
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

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

.hero__btn--primary {
  color: var(--bg-50);
  background: var(--primary-600);
  border: 1px solid var(--primary-600);
}

.hero__btn--primary:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
}

.hero__btn--secondary {
  color: var(--bg-50);
  background: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.45);
}

.hero__btn--secondary:hover {
  background: hsla(0, 0%, 100%, 0.1);
}

.hero__controls {
  position: absolute;
  right: 3rem;
  bottom: 2.8rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hero__counter {
  color: var(--bg-50);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero__counter span:nth-child(2),
.hero__counter span:nth-child(3) {
  color: var(--bg-400);
}

.hero__buttons {
  display: flex;
  gap: 0.7rem;
}

.hero__arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsla(0, 0%, 100%, 0.45);
  border-radius: 10px;
  background: hsla(0, 0%, 100%, 0.08);
  color: var(--bg-50);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.hero__arrow:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  transform: translateY(-2px);
}

.hero__arrow svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

/* ABOUT */

.about-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-50) 0%, var(--bg-100) 100%);
  overflow: hidden;
}

.about-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.2rem;
  align-items: center;
}

.about-media {
  order: 2;
}

.about-content {
  order: 1;
}

.about-media {
  position: relative;
  min-height: 500px;
}

.about-image {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-300);
  box-shadow: 0 24px 60px hsla(210, 45%, 8%, 0.16);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image--main {
  left: 0;
  top: 0;
  width: 82%;
  height: 420px;
}

.about-image--small {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 230px;
  border: 8px solid var(--bg-100);
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: 42px;
  width: 128px;
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-50);
  background: var(--primary-600);
  border-radius: 18px;
  box-shadow: 0 18px 40px hsla(12, 75%, 40%, 0.28);
}

.about-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-badge strong {
  font-size: 2rem;
  line-height: 1;
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding-left: 0.8rem;
  color: var(--primary-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-left: 3px solid var(--primary-600);
}

.about-title {
  max-width: 590px;
  color: var(--text-900);
  font-size: clamp(2.25rem, 3.15vw, 3.85rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 1.15rem;
}

.about-text {
  max-width: 590px;
  color: var(--text-500);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.about-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  border-radius: 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: hsla(12, 70%, 45%, 0.28);
  box-shadow: 0 18px 40px hsla(210, 45%, 8%, 0.08);
}

.about-card svg {
  width: 24px;
  height: 24px;
  color: var(--primary-600);
  stroke-width: 2.2;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-card h3 {
  color: var(--text-900);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.about-card p {
  color: var(--text-500);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* TABLET */

@media (max-width: 980px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-media {
    min-height: 500px;
    max-width: 620px;
  }

  .about-content {
    max-width: 720px;
  }

  .about-title {
    max-width: 680px;
  }
}

/* MOBILE */

@media (max-width: 820px) {
  .navbar {
    top: 10px;
    padding: 0;
  }

  .navbar.scrolled {
    top: 0;
    padding: 6px 0;
  }

  .navbar__container {
    width: calc(100% - 48px);
    min-height: 70px;
  }

  .navbar__brand img {
    height: 68px;
  }

  .navbar__toggle {
    display: block;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84%, 350px);
    height: 100vh;
    background: hsla(210, 45%, 8%, 0.97);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.6rem;
    gap: 0.6rem;
    transform: translateX(100%);
    pointer-events: none;
  }

  .navbar__menu.active {
    pointer-events: auto;
  }

  .navbar__mobile-logo {
    display: flex;
    margin-bottom: 2rem;
  }

  .navbar__mobile-logo img {
    height: 60px;
  }

  .navbar__link {
    width: 100%;
    justify-content: flex-start;
    font-size: 1rem;
    padding: 0.9rem 0.3rem;
  }

  .navbar__link:hover::after {
    width: 40px;
  }

  .navbar__link svg {
    display: block;
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: var(--primary-500);
  }

  .navbar__cta {
    margin-top: 1rem;
    justify-content: center;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__slide img {
    object-position: center;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      hsla(210, 45%, 8%, 0.92) 0%,
      hsla(210, 45%, 8%, 0.78) 38%,
      hsla(210, 45%, 8%, 0.9) 100%
    );
  }

  .hero__content {
    width: calc(100% - 48px);
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 120px;
    justify-content: center;
  }

  .hero__eyebrow {
    max-width: 280px;
    margin-bottom: 1rem;
    padding: 0.42rem 0.75rem;
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.07em;
  }

  .hero__title {
    max-width: 330px;
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    margin-bottom: 1rem;
  }

  .hero__text {
    max-width: 310px;
    color: hsla(0, 0%, 100%, 0.68);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.7rem;
  }

  .hero__actions {
    width: 100%;
    max-width: 260px;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero__btn {
    width: 100%;
    min-height: 52px;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
  }

  .hero__controls {
    right: 24px;
    bottom: 24px;
    gap: 0.75rem;
  }

  .hero__counter {
    font-size: 0.82rem;
  }

  .hero__arrow {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
}

@media (max-width: 620px) {
  .about-section {
    padding: 4.5rem 0;
  }

  .about-container {
    width: calc(100% - 32px);
    gap: 2.4rem;
  }

  .about-media {
    min-height: 360px;
  }

  .about-image--main {
    width: 88%;
    height: 300px;
  }

  .about-image--small {
    width: 56%;
    height: 160px;
    border-width: 6px;
  }

  .about-badge {
    width: 102px;
    height: 102px;
    left: 18px;
    bottom: 28px;
    border-radius: 14px;
  }

  .about-badge strong {
    font-size: 1.6rem;
  }

  .about-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 1rem;
  }
}

@media (max-width: 420px) {
  .hero__title {
    max-width: 300px;
    font-size: clamp(2.55rem, 12.5vw, 3.45rem);
  }

  .hero__text {
    max-width: 295px;
  }

  .hero__actions {
    max-width: 230px;
  }
}

/* SERVICES LIGHT VERSION */

.services-section {
  position: relative;
  padding: 7rem 0;
}

.services-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */

.services-header {
  max-width: 700px;
  margin-bottom: 3rem;
}

.services-title {
  color: var(--text-900);
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.services-description {
  color: var(--text-500);
  font-size: 1rem;
  line-height: 1.7;
}

/* GRID */

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

/* CARD */

.service-card {
  position: relative;
  min-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  box-shadow: 0 18px 50px hsla(210, 45%, 8%, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px hsla(210, 45%, 8%, 0.12);
}

.service-card--featured {
  transform: translateY(-28px);
}

/* IMAGE */

.service-card__image {
  position: absolute;
  inset: 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsla(0, 0%, 100%, 0.25) 25%,
    hsla(0, 0%, 100%, 0.75) 50%,
    var(--bg-50) 75%,
    var(--bg-50) 100%
  );
}

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

/* CONTENT */

.service-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ICON */

.service-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-600);
  color: white;
  border-radius: 12px;
  box-shadow: 0 12px 28px hsla(12, 75%, 40%, 0.25);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

/* NUMBER */

.service-card__number {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  color: var(--text-300);
  font-size: 0.8rem;
  font-weight: 700;
}

/* TEXT */

.service-card h3 {
  color: var(--text-900);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* LIST */

.service-card ul {
  display: grid;
  gap: 0.45rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-700);
  font-size: 0.85rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--primary-500);
  border-radius: 50%;
}

/* CTA */

.services-bottom {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--bg-100);
  border: 1px solid var(--bg-300);
  border-radius: 16px;
}

.services-bottom p {
  color: var(--text-700);
  font-size: 0.95rem;
  font-weight: 600;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.7rem 1.1rem;
  border-radius: 10px;

  background: var(--primary-600);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.services-cta:hover {
  background: var(--primary-500);
  transform: translateY(-2px);
}

.service-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card:visited {
  color: inherit;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 440px;
  }

  .service-card--featured,
  .service-card--featured:hover {
    transform: none;
  }
}

@media (max-width: 620px) {
  .services-section {
    padding: 5rem 0;
  }

  .services-container {
    width: calc(100% - 32px);
  }

  .services-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .service-card {
    min-height: 480px;
  }

  .services-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .services-cta {
    width: 100%;
    justify-content: center;
  }
}


/* GALLERY */

.gallery-section {
  padding: 6.5rem 0;
  background: var(--bg-100);
}

.gallery-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */

.gallery-header {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.gallery-title {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.gallery-description {
  color: var(--text-500);
  line-height: 1.7;
}

/* GRID */

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

/* ITEMS */

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-300);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    hsla(210, 45%, 8%, 0.25)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item:hover::after {
  opacity: 1;
}

/* FOOTER */

.gallery-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.8rem 1.3rem;
  border-radius: 10px;

  background: var(--primary-600);
  color: white;
  font-weight: 700;

  transition: transform 0.25s ease, background 0.25s ease;
}

.gallery-cta:hover {
  background: var(--primary-500);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* TESTIMONIALS */

.testimonials-section {
  padding: 6.5rem 0;
}

.testimonials-container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */

.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.8rem;
}

.testimonials-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.testimonials-description {
  color: var(--text-500);
  line-height: 1.7;
}

/* WIDGET AREA */

.testimonials-widget {
  position: relative;
  min-height: 260px;
  border-radius: 18px;
  border: 1px solid var(--bg-300);
  background: var(--bg-100);

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

  overflow: hidden;
}

/* PLACEHOLDER */

.testimonials-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-400);
  font-size: 0.95rem;
}

.testimonials-placeholder svg {
  width: 26px;
  height: 26px;
  opacity: 0.6;
}

/* SERVICE AREAS */

.areas-section {
  padding: 6.5rem 0;
  background: var(--bg-100);
}

.areas-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.areas-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.areas-title {
  max-width: 620px;
  color: var(--text-900);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.areas-description {
  max-width: 620px;
  color: var(--text-500);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.areas-list span {
  padding: 0.65rem 0.9rem;
  color: var(--text-800);
  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.areas-note {
  max-width: 560px;
  color: var(--text-500);
  font-size: 0.95rem;
  line-height: 1.65;
}

.areas-map-wrap {
  min-height: 520px;
  padding: 0.7rem;
  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  border-radius: 22px;
  box-shadow: 0 24px 70px hsla(210, 45%, 8%, 0.1);
}

.areas-map {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

/* HOURS CARD */

.areas-hours {
  margin-top: 2.2rem;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: auto 0.8fr 1.2fr;
  gap: 1.4rem;
  align-items: center;

  background: var(--bg-50);
  border: 1px solid var(--bg-300);
  border-radius: 20px;
  box-shadow: 0 18px 50px hsla(210, 45%, 8%, 0.08);
}

.areas-hours__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--primary-600);
  color: white;
  border-radius: 14px;
}

.areas-hours__icon svg {
  width: 24px;
  height: 24px;
}

.areas-hours__badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-600);
}

.areas-hours h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.areas-hours__schedule {
  margin-top: 0.5rem;
  color: var(--text-700);
  font-size: 0.95rem;
}

.areas-hours__schedule strong {
  display: block;
  color: var(--text-900);
  font-size: 1.05rem;
}

.areas-hours__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.areas-hours__info p {
  color: var(--text-500);
  font-size: 0.92rem;
  line-height: 1.6;
}

.areas-hours__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.7rem 1rem;
  border-radius: 10px;

  background: var(--primary-600);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;

  transition: transform 0.25s ease, background 0.25s ease;
}

.areas-hours__cta:hover {
  background: var(--primary-500);
  transform: translateY(-2px);
}

.areas-hours__cta svg {
  width: 16px;
  height: 16px;
}

/* LEAFLET */

.leaflet-popup-content-wrapper {
  border-radius: 12px;
}

.leaflet-popup-content {
  font-family: "Inter", sans-serif;
  color: var(--text-800);
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .areas-main {
    grid-template-columns: 1fr;
  }

  .areas-map-wrap {
    min-height: 420px;
  }

  .areas-map {
    height: 400px;
  }

  .areas-hours {
    grid-template-columns: auto 1fr;
  }

  .areas-hours__info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .areas-section {
    padding: 5rem 0;
  }

  .areas-container {
    width: calc(100% - 32px);
  }

  .areas-main {
    gap: 2rem;
  }

  .areas-list span {
    font-size: 0.84rem;
  }

  .areas-map-wrap {
    min-height: 340px;
    padding: 0.5rem;
    border-radius: 18px;
  }

  .areas-map {
    height: 320px;
    border-radius: 14px;
  }

  .areas-hours {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .areas-hours__info {
    flex-direction: column;
    align-items: flex-start;
  }

  .areas-hours__cta {
    width: 100%;
    justify-content: center;
  }
}

.faq-section {
  padding: 6.5rem 0;
  background: var(--bg-100);
}

.faq-container {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.faq-description {
  color: var(--text-500);
}

/* ITEMS */

.faq-item {
  border-bottom: 1px solid var(--bg-300);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 0;
  background: none;
  border: none;

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

  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-900);
}

.faq-question:hover {
  color: var(--primary-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding-bottom: 1rem;
  color: var(--text-500);
  line-height: 1.6;
}

.faq-icon {
  width: 10px;
  height: 10px;

  border-right: 2px solid var(--text-600);
  border-bottom: 2px solid var(--text-600);

  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* ACTIVE */

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-question:hover .faq-icon {
  border-color: var(--primary-600);
}

/* ACTIVO (cuando abre) */

.faq-item.active .faq-icon {
  transform: rotate(-135deg); /* flecha hacia arriba */
}

.footer {
  background: var(--text-900);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}

.footer-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* TOP */

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

/* BRAND */

.footer-brand img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* LINKS */

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-hours {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-powered {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-powered a {
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-powered a:hover {
  color: var(--primary-400);
}

@media (max-width: 620px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* SOCIALS */

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;

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

  background: rgba(255,255,255,0.05);
  color: white;

  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .footer-container {
    width: calc(100% - 32px);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}