/* ============================================
   LORAND AUTO SERVICE — Modern One-Pager
   Light Gray + Intense Red · Auto Service Theme
   ============================================ */

:root {
  --gray-950: #1c1c20;
  --gray-900: #26262c;
  --gray-800: #32323a;
  --gray-700: #404048;
  --gray-600: #55555f;
  --gray-500: #80808a;
  --gray-400: #adadb5;
  --gray-300: #d4d4da;
  --gray-200: #ededf0;
  --gray-100: #f7f7f9;

  --red-muted: #e03e3e;
  --red-soft: #ef5555;
  --red-glow: rgba(224, 62, 62, 0.35);
  --red-dark: #c42828;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--gray-950);
  color: var(--gray-200);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Scroll parallax background ---- */
.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.parallax-bg > * {
  position: absolute;
  will-change: transform;
}

.parallax-bg__orb {
  border-radius: 50%;
  filter: blur(90px);
}

.parallax-bg__orb--1 {
  width: 55vw;
  max-width: 620px;
  height: 55vw;
  max-height: 620px;
  top: -12%;
  right: -8%;
  background: rgba(224, 62, 62, 0.14);
}

.parallax-bg__orb--2 {
  width: 45vw;
  max-width: 480px;
  height: 45vw;
  max-height: 480px;
  bottom: 8%;
  left: -10%;
  background: rgba(80, 80, 92, 0.35);
}

.parallax-bg__orb--3 {
  width: 28vw;
  max-width: 320px;
  height: 28vw;
  max-height: 320px;
  top: 42%;
  right: 18%;
  background: rgba(224, 62, 62, 0.08);
}

.parallax-bg__lines {
  inset: -30% -10%;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 48px,
    rgba(224, 62, 62, 0.025) 48px,
    rgba(224, 62, 62, 0.025) 50px
  );
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  opacity: 0.7;
}

.parallax-bg__ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.parallax-bg__ring--1 {
  width: 90vw;
  max-width: 900px;
  height: 90vw;
  max-height: 900px;
  top: 15%;
  left: -25%;
  border-width: 2px;
  border-color: rgba(224, 62, 62, 0.06);
}

.parallax-bg__ring--2 {
  width: 50vw;
  max-width: 500px;
  height: 50vw;
  max-height: 500px;
  bottom: -10%;
  right: -12%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.05);
}

.section,
.footer {
  position: relative;
  z-index: 1;
}

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

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

.accent { color: var(--red-muted); }

.section {
  padding: 100px 0;
  position: relative;
}

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-muted);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 560px;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--red-muted);
  color: #fff;
  border-color: var(--red-muted);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn--outline {
  background: transparent;
  color: var(--gray-200);
  border-color: var(--gray-600);
}

.btn--outline:hover {
  border-color: var(--red-muted);
  color: var(--red-soft);
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--gray-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  width: 80px;
  height: 80px;
  animation: spin 1.5s linear infinite;
}

.preloader__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: var(--gray-300);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(28, 28, 32, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 50px;
  transition: var(--transition);
}

.nav__link:hover { color: #fff; }

.nav__link--cta {
  background: var(--red-muted);
  color: #fff !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--red-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-200);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  background: var(--red-glow);
  top: -10%;
  right: -10%;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(60, 60, 70, 0.5);
  bottom: -5%;
  left: -10%;
  animation-delay: -4s;
}

.hero__tread {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(224, 62, 62, 0.08) 20px,
    rgba(224, 62, 62, 0.08) 22px
  );
  mask-image: linear-gradient(to top, black, transparent);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 24px 100px;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__main {
  min-width: 0;
}

.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 16px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(50, 50, 58, 0.85), rgba(38, 38, 44, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--red-muted);
  border-radius: 4px 12px 12px 4px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(224, 62, 62, 0.12);
  border: 1px solid rgba(224, 62, 62, 0.25);
  border-radius: 10px;
  color: var(--red-soft);
}

.hero__badge-icon svg {
  width: 22px;
  height: 22px;
}

.hero__badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__badge-location {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-soft);
}

.hero__badge-tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-200);
  letter-spacing: 0.01em;
}

.hero__badge-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(224, 62, 62, 0.08) 100%);
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero__title {
  margin-bottom: 24px;
}

.hero__title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero__title-line--accent {
  color: var(--red-muted);
  text-shadow: 0 0 60px var(--red-glow);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-400);
  max-width: 580px;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero__schedule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  max-width: 100%;
}

.hero__schedule:hover {
  border-color: rgba(224, 62, 62, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero__schedule.open {
  border-color: rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.06);
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.08);
}

.hero__schedule.closed {
  border-color: rgba(224, 62, 62, 0.2);
  background: rgba(224, 62, 62, 0.05);
}

.hero__schedule-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.schedule__status-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  font-weight: 600;
}

.hero__schedule .schedule__status-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-100);
  line-height: 1.3;
}

.hero__schedule-arrow {
  margin-left: auto;
  padding-left: 8px;
  font-size: 1.1rem;
  color: var(--gray-500);
  transition: var(--transition);
  flex-shrink: 0;
}

.hero__schedule:hover .hero__schedule-arrow {
  color: var(--red-soft);
  transform: translateX(4px);
}

.hero__schedule .schedule__status-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero services grid */
.hero__services-panel {
  position: relative;
}

.hero__services-panel::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(224, 62, 62, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-services {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(145deg, rgba(50, 50, 58, 0.9), rgba(38, 38, 44, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-service {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 10px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--gray-100);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  min-height: 118px;
}

.hero-service::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(224, 62, 62, 0.2), transparent);
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero-service:nth-child(3n)::after,
.hero-service:nth-child(3n) {
  border-right: none;
}

.hero-service:nth-child(n+7) {
  border-bottom: none;
}

.hero-service:hover {
  background: rgba(224, 62, 62, 0.08);
}

.hero-service:hover .hero-service__icon {
  transform: translateY(-3px);
  color: #fff;
}

.hero-service:hover .hero-service__line {
  width: 36px;
  background: var(--red-soft);
}

.hero-service__icon {
  width: 52px;
  height: 52px;
  color: var(--gray-200);
  transition: var(--transition);
}

.hero-service__icon svg {
  width: 100%;
  height: 100%;
}

.hero-icon-accent {
  fill: var(--red-muted);
  stroke: var(--red-muted);
}

.hero-service__name {
  font-size: clamp(0.55rem, 1.1vw, 0.68rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: var(--gray-200);
}

.hero-service__line {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--red-muted);
  border-radius: 2px;
  transition: var(--transition);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ---- About ---- */
.about {
  background: rgba(38, 38, 44, 0.82);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about__gallery-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}

.about__gallery-item--square {
  aspect-ratio: 1 / 1;
}

.about__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about__gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 32, 0.35), transparent 50%);
  pointer-events: none;
  transition: opacity 0.4s;
}

.about__gallery-item:hover::after {
  opacity: 0.6;
}

.about__card {
  background: var(--gray-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.about__card--main {
  position: relative;
  z-index: 2;
}

.about__card--main:hover {
  border-color: rgba(224, 62, 62, 0.3);
  transform: translateY(-4px);
}

.about__card--float {
  position: absolute;
  bottom: 20px;
  right: -20px;
  z-index: 3;
  padding: 20px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

.about__card-icon {
  width: 56px;
  height: 56px;
  color: var(--red-muted);
  margin-bottom: 20px;
}

.about__card-icon svg { width: 100%; height: 100%; }

.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.about__card p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.about__rating-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.about__rating-text {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.about__text {
  color: var(--gray-400);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about__features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(224, 62, 62, 0.15);
  color: var(--red-soft);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Services ---- */
.services {
  position: relative;
  overflow: hidden;
}

.services__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(224, 62, 62, 0.06), transparent 60%);
}

.facility-banner {
  position: relative;
  margin-top: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 280px;
}

.facility-banner__image {
  position: absolute;
  inset: 0;
}

.facility-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.facility-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 40px;
  background: linear-gradient(to top, rgba(28, 28, 32, 0.95) 0%, rgba(28, 28, 32, 0.4) 60%, transparent 100%);
}

.facility-banner__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 8px;
}

.facility-banner__content p {
  max-width: 480px;
  font-size: 1.15rem;
  color: var(--gray-200);
  line-height: 1.5;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.service-card {
  position: relative;
  background: var(--gray-800);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  transition: var(--transition);
  transition-delay: calc(var(--delay, 0) * 0.05s);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-muted), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(224, 62, 62, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--red-muted);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
  color: var(--red-soft);
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-card__line {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at bottom right, rgba(224, 62, 62, 0.08), transparent 70%);
  pointer-events: none;
}

/* ---- Reviews ---- */
.reviews {
  background: rgba(38, 38, 44, 0.82);
}

.reviews__slider {
  position: relative;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.reviews__track--no-transition {
  transition: none !important;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--gray-800);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(224, 62, 62, 0.2);
}

.review-card__stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  flex: 1;
  color: var(--gray-300);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red-muted), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.review-card__author strong {
  display: block;
  font-size: 0.9rem;
}

.review-card__author span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.reviews__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-600);
  background: transparent;
  color: var(--gray-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reviews__btn:hover {
  border-color: var(--red-muted);
  color: var(--red-soft);
  background: rgba(224, 62, 62, 0.1);
}

.reviews__dots {
  display: flex;
  gap: 8px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-600);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.reviews__dot.active {
  background: var(--red-muted);
  width: 24px;
  border-radius: 4px;
}

/* ---- Schedule ---- */
.schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.schedule__note {
  color: var(--gray-400);
  margin: 16px 0 24px;
}

.schedule__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  font-size: 0.9rem;
}

.schedule__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-500);
}

.schedule__status.open .schedule__status-dot {
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.schedule__status.closed .schedule__status-dot {
  background: var(--red-muted);
}

.schedule__table-wrap {
  background: var(--gray-800);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.schedule__table {
  width: 100%;
  border-collapse: collapse;
}

.schedule__table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.schedule__table tr:last-child { border-bottom: none; }

.schedule__table tr.today {
  background: rgba(224, 62, 62, 0.1);
}

.schedule__table tr.today td:first-child {
  color: var(--red-soft);
  font-weight: 600;
}

.schedule__table tr.closed td:last-child {
  color: var(--gray-500);
}

.schedule__table td {
  padding: 16px 24px;
  font-size: 0.95rem;
}

.schedule__table td:first-child {
  font-weight: 500;
  width: 40%;
}

.schedule__table td:last-child {
  color: var(--gray-400);
  text-align: right;
}

/* ---- Contact ---- */
.contact {
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(224, 62, 62, 0.08), transparent 50%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  position: relative;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--gray-800);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-card--phone:hover {
  border-color: rgba(224, 62, 62, 0.3);
  transform: translateX(4px);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(224, 62, 62, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-muted);
  flex-shrink: 0;
}

.contact-card__icon svg { width: 24px; height: 24px; }

.contact-card__label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.contact-card span:not(.contact-card__label) {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.contact__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.contact__map-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 10px 18px;
  background: rgba(28, 28, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray-300);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.contact__map-link:hover {
  color: var(--red-soft);
  border-color: var(--red-muted);
}

/* ---- Footer ---- */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(28, 28, 32, 0.88);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--red-soft); }

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 10px;
}

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--red-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 30px var(--red-glow);
  z-index: 900;
  transition: var(--transition);
  animation: ctaPulse 3s ease-in-out infinite;
}

.floating-cta svg { width: 26px; height: 26px; }

.floating-cta:hover {
  background: var(--red-dark);
  transform: scale(1.1);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 30px var(--red-glow); }
  50% { box-shadow: 0 8px 40px rgba(224, 62, 62, 0.45); }
}

/* ---- Reveal Animations ---- */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__services-panel {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

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

  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88%, 360px);
    height: 100vh;
    height: 100dvh;
    background: var(--gray-900);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 32px) 28px 40px;
    gap: 6px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__menu.open { right: 0; }

  .nav__link {
    display: block;
    width: 100%;
    padding: 18px 20px;
    font-size: 1.1rem;
    line-height: 1.3;
    border-radius: 12px;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 20px;
    padding: 18px 24px;
    text-align: center;
    font-size: 1.05rem;
  }

  .nav__toggle { display: flex; }

  .hero__title-line {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero-service {
    min-height: 100px;
    padding: 16px 8px 14px;
  }

  .hero-service__icon {
    width: 44px;
    height: 44px;
  }

  .about__grid,
  .schedule__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__gallery {
    gap: 10px;
  }

  .about__card--float {
    display: none;
  }

  .facility-banner {
    margin-top: 50px;
    min-height: 220px;
  }

  .facility-banner__content {
    min-height: 220px;
    padding: 28px 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
    row-gap: 8px;
    padding: 22px 20px;
  }

  .service-card__icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .service-card p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .hero__scroll { display: none; }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-service__name {
    font-size: 0.5rem;
    letter-spacing: 0.03em;
  }

  .hero-service__icon {
    width: 36px;
    height: 36px;
  }

  .hero-service {
    min-height: 88px;
    padding: 12px 4px 10px;
    gap: 6px;
  }

  .hero-service__line {
    width: 20px;
    height: 2px;
  }

  .hero__schedule {
    width: 100%;
    padding: 12px 18px;
  }

  .hero__schedule .schedule__status-text {
    font-size: 0.9rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .floating-cta {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}
