/* ==================================================
   VARIABLES / GLOBAL
================================================== */

:root {
  --bg: #f6f2ec;
  --bg-soft: #fffaf3;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;

  --text: #16110c;
  --muted: #6e6257;

  --dark: #0e0d0b;
  --dark-2: #171410;

  --brand: #b5741c;
  --brand-dark: #7c4708;
  --brand-soft: rgba(181, 116, 28, 0.14);

  --line: rgba(32, 24, 15, 0.11);

  --shadow: 0 24px 70px rgba(39, 27, 12, 0.14);
  --shadow-soft: 0 14px 36px rgba(39, 27, 12, 0.1);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;

  --container: min(1180px, calc(100% - 44px));
  --header-h: 84px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(181, 116, 28, 0.16),
      transparent 28rem
    ),
    radial-gradient(circle at 90% 12%, rgba(0, 0, 0, 0.08), transparent 28rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(22, 17, 12, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 17, 12, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.035em;
}

a {
  color: inherit;
}

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

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

.section {
  min-height: auto;
  padding: clamp(86px, 9vw, 132px) 0;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.section h2,
.about-text h2,
.services h2,
.reussites h2,
.reviews h2,
.procedure h2,
.contact h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
}

.section h2::after,
.about-text h2::after,
.services h2::after,
.reussites h2::after,
.reviews h2::after,
.procedure h2::after,
.contact h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #e2b15f);
}

.section-intro {
  max-width: 660px;
  margin: 0 auto 44px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
  text-align: center;
}

/* ==================================================
   NAVBAR
================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  color: #fff;
  background: rgba(12, 11, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.navbar {
  min-height: var(--header-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
}

.logo-nav {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 66px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  list-style: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.nav-links a:hover {
  background: rgba(181, 116, 28, 0.22);
  color: #fff;
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: 0.28s ease;
}

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

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 72px) 22px 78px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: #090807;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(181, 116, 28, 0.2),
      transparent 22rem
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.42) 45%,
      rgba(0, 0, 0, 0.8)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 44%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 8% 46px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.04);
}

.hero-logo {
  position: relative;
  z-index: 3;
  width: clamp(260px, 38vw, 560px);
  margin: 0 auto -18px;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.58));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(226, 177, 95, 0.32);
  background: rgba(181, 116, 28, 0.16);
  color: #ffdca4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.96;
}

.hero h2 {
  margin-bottom: 26px;
  font-size: clamp(20px, 2.6vw, 31px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero p {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==================================================
   BUTTONS
================================================== */

.btn,
.btn-outline,
.btn-whatsapp {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 30px rgba(124, 71, 8, 0.26);
}

.btn:hover,
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(124, 71, 8, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow: none;
}

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

.btn-outline {
  color: var(--brand-dark);
  border: 1px solid rgba(181, 116, 28, 0.32);
  background: rgba(181, 116, 28, 0.08);
}

.btn-outline:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* ==================================================
   ABOUT
================================================== */

.about {
  background: linear-gradient(180deg, var(--bg), #fff);
}

.about-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(26px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-img {
  width: min(420px, 100%);
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

.about-highlight {
  max-width: 520px;
  padding: 24px 26px;
  border: 1px solid rgba(181, 116, 28, 0.2);
  border-left: 5px solid var(--brand);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #fff7eb);
  color: #42382e;
  font-size: 16px;
  line-height: 1.75;
  font-style: italic;
  box-shadow: 0 18px 40px rgba(39, 27, 12, 0.08);
}

.about-text {
  max-width: 620px;
}

.about-text h2 {
  text-align: left;
}

.about-text h2::after {
  margin-left: 0;
}

.about-text p {
  color: #433a31;
  line-height: 1.82;
  font-size: 16px;
}

/* ==================================================
   SERVICES
================================================== */

.services {
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
}

.services-category {
  margin: 54px auto 0;
  text-align: left;
}

.category-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  color: var(--brand-dark);
  font-size: 21px;
  font-weight: 800;
  border-radius: 999px;
  border: 2px solid rgba(181, 116, 28, 0.2);
}

.category-title::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(181, 116, 28, 0.12);
}

.services-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 18px;
  min-height: 138px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(39, 27, 12, 0.06);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), #e3b260);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: rgba(181, 116, 28, 0.32);
  background: #fff;
  box-shadow: 0 24px 58px rgba(39, 27, 12, 0.13);
}

.service-item:hover::before {
  opacity: 1;
}

.service-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(181, 116, 28, 0.14);
  background: linear-gradient(135deg, #fff, #f8ead8);
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.service-name {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.service-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.service-price {
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 14px;
  font-weight: 850;
}

.service-arrow {
  color: rgba(22, 17, 12, 0.34);
  font-size: 34px;
  line-height: 1;
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

.service-item:hover .service-arrow {
  color: var(--brand);
  transform: translateX(3px);
}

.card-details {
  display: none;
}

.tarif {
  margin: 8px 0 22px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  font-weight: 800;
  color: var(--brand-dark);
}

.card-details p {
  margin-bottom: 16px;
  color: #4c443b;
  line-height: 1.75;
}

.card-details ul {
  margin: 14px 0 6px;
  padding-left: 0;
  list-style: none;
  color: #352c23;
}

.card-details li {
  margin-bottom: 8px;
}

.service-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.services-note {
  max-width: 900px;
  margin: 42px auto 0;
  padding: 16px 22px;
  background: rgba(157, 112, 45, 0.1);
  border: 1px solid rgba(157, 112, 45, 0.25);
  border-left: 4px solid #9d702d;
  border-radius: 12px;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* ==================================================
   MODAL SERVICES
================================================== */

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(10, 9, 7, 0.58);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.service-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-content {
  position: relative;
  width: min(720px, 100%);
  max-height: 84svh;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 30px;
  background: #fffaf3;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.service-modal.active .service-modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: var(--brand-soft);
}

.modal-body li {
  list-style: none;
}

.modal-body .service-book {
  display: flex;
  width: fit-content;
  margin: 45px auto 0;
}

/* ==================================================
   RÉUSSITES / AVIS
================================================== */

.reussites,
.reviews {
  text-align: center;
  background: var(--bg-soft);
  overflow: hidden;
}

.reviews {
  background: linear-gradient(180deg, var(--bg-soft), #fff);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 42px;
}

.instagram-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 45%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.instagram-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: var(--shadow);
}

.instagram-card:hover::after {
  opacity: 1;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.instagram-card:hover img {
  transform: scale(1.07);
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  padding: 12px 20px;
  color: #332b23;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.rating-stars,
.stars {
  color: #f5b301;
  letter-spacing: 2px;
}

.reviews-carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto 36px;
}

.reviews-track {
  position: relative;
  min-height: 380px;
}

.review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.32s ease;
}

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

.review-card p {
  max-width: 690px;
  margin: 22px auto;
  color: #443b33;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
}

.review-card h3 {
  margin-bottom: 6px;
  color: var(--text);
}

.review-card span {
  color: var(--brand-dark);
  font-weight: 800;
}

.review-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(14, 13, 11, 0.82);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.review-btn:hover {
  background: var(--brand);
  transform: translateY(-50%) scale(1.06);
}

.review-prev {
  left: -28px;
}

.review-next {
  right: -28px;
}

/* ==================================================
   PROCÉDURE
================================================== */

.procedure {
  text-align: center;
  background: #fff;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 46px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 8px;
  width: 3px;
  height: calc(100% - 78px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), rgba(181, 116, 28, 0.18));
}

.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 22px;
}

.step-number {
  min-width: 52px;
  height: 52px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 24px rgba(124, 71, 8, 0.24);
}

.step-content {
  flex: 1;
  text-align: left;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffaf3;
  box-shadow: 0 12px 30px rgba(39, 27, 12, 0.06);
}

.step-content h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.step-content p {
  color: var(--muted);
  line-height: 1.65;
}

/* ==================================================
   CONTACT
================================================== */

.contact {
  position: relative;
  padding: 110px 0 130px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7efe6 32%,
    #5d5043 68%,
    #211a13 86%,
    #0c0b09 100%
  );
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact h2 {
  text-align: center;
  color: #111;
}

.contact-layout {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-info-bar {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-info-text,
.contact-info-links,
.btn-whatsapp {
  border-radius: 24px;
}

.contact-info-text {
  grid-row: span 2;
  padding: 42px;
  color: white;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.72)),
    url("../img/seat-np-autoecole.png") center / cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.contact-info-text h3 {
  color: #e2b06d;
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info-text p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.contact-info-links {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #302821;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.info-item:hover {
  color: #9d702d;
  transform: translateX(4px);
}

.info-item i {
  width: 20px;
  color: #9d702d;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 18px 28px;
  color: white;
  background: linear-gradient(135deg, #25d366, #159d48);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(37, 211, 102, 0.36);
}

.contact-form {
  margin-top: 34px;
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: 30px;
  background: rgba(255, 250, 243, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.contact-form h3 {
  font-size: 28px;
  color: var(--brand-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.form-field label,
.contact-form label {
  display: block;
  padding-left: 4px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(32, 24, 15, 0.72);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(32, 24, 15, 0.14);
  padding: 0 18px;
  font-family: inherit;
  font-size: 15px;
  color: #111;
  background: rgba(255, 255, 255, 0.82);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(181, 116, 28, 0.13);
  transform: translateY(-1px);
}

.booking-fields {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(181, 116, 28, 0.22);
  background: linear-gradient(
    135deg,
    rgba(181, 116, 28, 0.1),
    rgba(255, 255, 255, 0.58)
  );
}

.booking-fields[hidden] {
  display: none;
}

.booking-intro {
  display: grid;
  gap: 4px;
}

.booking-intro strong {
  font-size: 16px;
  color: var(--text);
}

.booking-intro span,
.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.booking-note {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.contact-submit {
  align-self: center;
  min-width: 280px;
  border: none;
  border-radius: 999px;
}

.form-success {
  text-align: center;
  color: #237a3c;
  font-weight: 800;
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
  background: #0c0b09;
  color: #fff;
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.footer-brand img {
  height: 78px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.96;
}

.footer-brand p,
.footer-contact a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact,
.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact h3,
.footer-actions h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  word-break: break-word;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-contact a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact i,
.footer-actions i {
  width: 18px;
  color: #e2b15f;
}

.footer-btn {
  width: fit-content;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.footer-btn:hover {
  border-color: var(--brand);
}

.footer-bottom {
  width: var(--container);
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

/* ==================================================
   SCROLL ANIMATIONS
================================================== */

.about-container,
.service-item,
.instagram-card,
.step,
.contact-info-bar,
.contact-form {
  opacity: 0;
  transform: translateY(18px);
}

.about-container.is-visible,
.service-item.is-visible,
.instagram-card.is-visible,
.step.is-visible,
.contact-info-bar.is-visible,
.contact-form.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card {
  opacity: 0;
}

.review-card.is-visible.active {
  opacity: 1;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1080px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 0 10px;
    font-size: 13px;
  }

  .services-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
    --container: min(100% - 32px, 1180px);
  }

  .burger {
    display: flex;
  }

  .logo-img {
    height: 58px;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    width: auto;
    padding: 14px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12, 11, 10, 0.94);
    transform: translateY(-16px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

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

  .nav-links a {
    justify-content: center;
    min-height: 44px;
    font-size: 15px;
  }

  .about-container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-text,
  .about-text h2 {
    text-align: center;
  }

  .about-text h2::after {
    margin-left: auto;
  }

  .contact {
    padding: 90px 0 100px;
  }

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

  .contact-info-text {
    grid-row: auto;
  }

  .contact-info-text p {
    margin: 0 auto;
  }

  .contact-info-links {
    align-items: center;
  }

  .footer-brand,
  .footer-contact,
  .footer-actions {
    align-items: center;
    text-align: center;
  }

  .footer-brand img,
  .footer-btn,
  .footer-contact a {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-logo {
    width: min(360px, 82vw);
    margin-bottom: -8px;
  }

  .hero-content {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-item {
    grid-template-columns: 78px 1fr 20px;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  .service-icon {
    width: 78px;
    height: 78px;
    border-radius: 18px;
  }

  .service-price {
    grid-column: 2 / 4;
    width: fit-content;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .review-btn {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .review-prev {
    left: -8px;
  }

  .review-next {
    right: -8px;
  }

  .reviews-track {
    min-height: 460px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-text,
  .contact-info-links,
  .btn-whatsapp,
  .contact-form {
    border-radius: 22px;
  }

  .contact-info-text,
  .contact-info-links,
  .contact-form {
    padding: 28px 22px;
  }

  .contact-submit,
  .btn-whatsapp {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .service-item {
    grid-template-columns: 66px 1fr 18px;
  }

  .service-icon {
    width: 66px;
    height: 66px;
    padding: 7px;
  }

  .service-price {
    grid-column: 1 / 4;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .google-rating {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 22px;
  }

  .reviews-track {
    min-height: 560px;
  }

  .step {
    gap: 14px;
  }

  .step-number {
    min-width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .step-content {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
