/* ===================== Reset & Base ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #ED1B24;
  --red-dark: #B0060F;
  --red-darker: #7A0308;
  --red-light: #FF4D4D;
  --ink: #17100F;
  --ink-soft: #2B1F1E;
  --paper: #FFF7F5;
  --cream: #FFFFFF;
  --muted: #6b5c5a;
  --radius: 18px;
  --shadow: 0 20px 50px -20px rgba(176, 6, 15, 0.35);
  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.15; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(176,6,15,.55);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 30px -10px rgba(176,6,15,.6); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23,16,15,.15);
}
.btn--outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }
.btn--white {
  background: #fff;
  color: var(--red-dark);
}
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -10px rgba(0,0,0,.35); }
.btn--messenger {
  background: linear-gradient(135deg, #00B2FF 0%, #006AFF 100%);
  color: #fff;
  box-shadow: 0 12px 24px -8px rgba(0,106,255,.45);
}
.btn--messenger:hover { transform: translateY(-3px); box-shadow: 0 18px 30px -10px rgba(0,106,255,.5); }
.btn--pill { padding: 11px 22px; font-size: .88rem; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }

/* ===================== Top bar ===================== */
.topbar {
  background: var(--ink);
  color: #f5e9e8;
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__item { display: flex; align-items: center; gap: 8px; }
.topbar__item i { color: var(--red-light); }
.topbar__item--discount { color: #ffd7a8; font-weight: 600; }

/* ===================== Header ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,247,245,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23,16,15,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__logo {
  width: 42px; height: 42px;
  border-radius: 10px;
  object-fit: cover;
}
.brand__text {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
}
.brand__text em { color: var(--red); font-style: normal; }

.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--red-dark); }

.header__cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s ease;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  z-index: 0;
}
.hero__blob--1 {
  width: 480px; height: 480px;
  background: var(--red);
  top: -180px; right: -120px;
}
.hero__blob--2 {
  width: 360px; height: 360px;
  background: #ffb199;
  bottom: -160px; left: -100px;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237,27,36,.1);
  color: var(--red-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow--dark { background: rgba(23,16,15,.06); color: var(--ink-soft); }

.hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 22px;
}
.text-outline { color: var(--red); }

.hero__desc {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(23,16,15,.08);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 6px 16px -10px rgba(0,0,0,.2);
}
.badge i { color: var(--red); }

.hero__visual { display: flex; justify-content: center; }
.hero__logo-card {
  background: linear-gradient(145deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  transition: transform .4s ease;
  max-width: 380px;
}
.hero__logo-card:hover { transform: rotate(0deg) scale(1.02); }
.hero__logo-img { border-radius: 18px; }

/* ===================== Marquee ===================== */
.marquee {
  background: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  animation: scroll 22s linear infinite;
}
.marquee__track span {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  letter-spacing: .5px;
}
.marquee__track i { color: var(--red-light); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== Section ===================== */
.section { padding: 90px 0; }
.section--dark { background: var(--ink); color: #f3e9e8; }

.section__head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  margin: 12px 0 14px;
  color: var(--ink);
}
.section--dark .section__head h2 { color: #fff; }
.section__head p { color: var(--muted); }

/* ===================== Cards / Grid ===================== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23,16,15,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card--highlight {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border: none;
}
.card--highlight p { color: rgba(255,255,255,.85); }

.card__media {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #eee;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card__media img { transform: scale(1.08); }
.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.35) 100%);
}

.card__badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: rgba(23,16,15,.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.card__icon {
  position: absolute;
  bottom: -22px; left: 24px;
  z-index: 2;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 15px;
  background: #fff;
  color: var(--red);
  font-size: 1.3rem;
  box-shadow: 0 10px 20px -6px rgba(0,0,0,.3);
}
.card--highlight .card__icon { color: var(--red-dark); }

.card__body { padding: 40px 28px 30px; }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.card__price {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,.12);
}
.card--highlight .card__price { border-top-color: rgba(255,255,255,.3); }
.card__price strong { font-size: 1.5rem; color: var(--red-dark); }
.card--highlight .card__price strong { color: #fff; }

/* ===================== Discount banner ===================== */
.discount-banner {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  background: linear-gradient(120deg, #fff3ef, #ffe4de);
  border: 1px solid rgba(237,27,36,.2);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.discount-banner i {
  font-size: 1.8rem;
  color: var(--red);
}
.discount-banner p { flex: 1; min-width: 240px; font-size: 1rem; }

/* ===================== About ===================== */
.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about__img {
  border-radius: 26px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.about__content .eyebrow { background: rgba(237,27,36,.18); color: #ffb3ae; }
.about__content h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); color: #fff; margin-bottom: 18px; }
.about__content p { color: #cbb9b7; margin-bottom: 24px; }
.about__list { margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; color: #f0e4e3; font-weight: 500; }
.about__list i { color: var(--red-light); background: rgba(255,255,255,.08); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; }

/* ===================== Locations ===================== */
.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}
.location-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid rgba(23,16,15,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.location-card__icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: rgba(237,27,36,.1);
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.location-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.location-card p { color: var(--muted); margin-bottom: 18px; }
.location-card__link {
  font-weight: 700;
  color: var(--red-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
}
.location-card__link:hover { text-decoration: underline; }

.service-areas {
  text-align: center;
}
.service-areas h4 {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.service-areas h4 i { color: var(--red); margin-right: 6px; }
.service-areas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.service-areas__tags span {
  background: #fff;
  border: 1px solid rgba(23,16,15,.1);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ===================== CTA ===================== */
.cta {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 70px 0;
}
.cta__inner { text-align: center; color: #fff; }
.cta__inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.cta__inner p { opacity: .9; margin-bottom: 28px; }

/* ===================== Footer ===================== */
.footer { background: var(--ink); color: #cbb9b7; padding-top: 70px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand--footer .brand__text { color: #fff; }
.footer__col p { margin-bottom: 10px; font-size: .92rem; }
.footer__col h4 { color: #fff; margin-bottom: 18px; font-size: 1rem; }
.footer__col a:hover { color: var(--red-light); }
.footer__col i { color: var(--red-light); margin-right: 6px; width: 14px; }

.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background .25s ease, transform .25s ease;
}
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }

.footer__bottom {
  text-align: center;
  padding: 22px 0;
  font-size: .85rem;
  color: #8a7674;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__ad {
  font-size: .8rem;
  color: #6b5957;
}
.footer__ad a {
  color: #ff8f8a;
  font-weight: 600;
}
.footer__ad a:hover { color: var(--red-light); text-decoration: underline; }

/* ===================== Floating action buttons ===================== */
.fab-group {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  display: none;
  flex-direction: column;
  gap: 14px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform .25s ease;
}
.fab:hover { transform: scale(1.08); }
.fab--call {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 30px -8px rgba(176,6,15,.6);
  animation: pulse 2.4s ease-in-out infinite;
}
.fab--messenger {
  background: linear-gradient(135deg, #00B2FF, #006AFF);
  box-shadow: 0 14px 30px -8px rgba(0,106,255,.6);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(176,6,15,.6); }
  50% { box-shadow: 0 14px 30px -4px rgba(176,6,15,.9); }
}

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 320px; margin: 0 auto; }
  .about { grid-template-columns: 1fr; }
  .about__visual { max-width: 320px; margin: 0 auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px; background: #fff; flex-direction: column; padding: 100px 32px; gap: 26px; transition: right .35s ease; box-shadow: -20px 0 50px rgba(0,0,0,.15); }
  .nav.is-open { right: 0; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .grid { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .discount-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .fab-group { display: flex; }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__left { justify-content: center; }
}
