/* ============================================
   QuinTech Auto Repair — styles.css
   Colors: Purple #7B2FBE | Silver #C0C0C0 | Dark #0A0A0A
   ============================================ */

:root {
  --purple: #7B2FBE;
  --purple-bright: #9B3DFF;
  --purple-glow: #BF6FFF;
  --silver: #C0C0C0;
  --silver-light: #E8E8E8;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-card: #141414;
  --white: #FFFFFF;
  --gray: #888888;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── ANIMATIONS ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── SCROLL FADE ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.5s;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.btn-primary:hover {
  background: var(--purple-bright);
  box-shadow: 0 0 30px rgba(155, 61, 255, 0.6), 0 0 60px rgba(155, 61, 255, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--silver-light);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(192, 192, 192, 0.3);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.1s;
}

.btn-secondary:hover {
  border-color: var(--purple-glow);
  color: var(--purple-glow);
  transform: translateY(-2px);
}

/* ── SECTION BASE ── */
section {
  padding: 100px 60px;
}

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--purple);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.title-silver {
  background: linear-gradient(135deg, #fff, var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-purple {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 47, 190, 0.3);
  transition: background 0.3s, border-color 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--silver-light), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-logo-text span {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--purple-glow);
}

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border: 1px solid var(--purple-bright) !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--purple-bright) !important;
  box-shadow: 0 0 20px rgba(155, 61, 255, 0.5) !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 65% 50%, rgba(123, 47, 190, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, #0A0A0A 0%, #0D0D0D 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, rgba(123, 47, 190, 0.04) 0, rgba(123, 47, 190, 0.04) 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(120deg, rgba(123, 47, 190, 0.04) 0, rgba(123, 47, 190, 0.04) 1px, transparent 1px, transparent 30px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 47, 190, 0.15);
  border: 1px solid rgba(123, 47, 190, 0.4);
  padding: 6px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin-bottom: 24px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--purple-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple-bright);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.hero h1 .silver {
  background: linear-gradient(135deg, #fff, var(--silver), #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero h1 .purple {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 24px;
  padding-left: 4px;
}

.hero-sub span {
  color: var(--purple-glow);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #AAAAAA;
  max-width: 500px;
  margin-bottom: 40px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.hero-divider {
  width: 2px;
  background: rgba(123, 47, 190, 0.3);
  align-self: stretch;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 0 40px rgba(123, 47, 190, 0.4)) drop-shadow(0 0 80px rgba(123, 47, 190, 0.15));
  animation: float 4s ease-in-out infinite;
}

.hero-qt-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 20px rgba(123, 47, 190, 0.6));
  animation: float 4s ease-in-out infinite 2s;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--purple);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(191, 111, 255, 0.3);
  border-bottom: 1px solid rgba(191, 111, 255, 0.3);
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services {
  background: var(--dark-2);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-desc {
  max-width: 400px;
  color: #888;
  font-size: 16px;
  line-height: 1.7;
}

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

.service-card {
  background: var(--dark-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.2s;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  background: #1A1A1A;
  transform: translateY(-4px);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(123, 47, 190, 0.15);
  border: 1px solid rgba(123, 47, 190, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(123, 47, 190, 0.3);
  box-shadow: 0 0 20px rgba(123, 47, 190, 0.3);
}

.service-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(123, 47, 190, 0.08);
  line-height: 1;
  user-select: none;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #777;
}

/* ── WHY US ── */
.why-us {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 60px;
}

.why-visual {
  position: relative;
}

.why-main-img {
  width: 100%;
  border: 1px solid rgba(123, 47, 190, 0.2);
  filter: drop-shadow(0 0 30px rgba(123, 47, 190, 0.2));
}

.why-badge-img {
  width: 70px;
  height: auto;
}

.why-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--purple);
  padding: 16px 22px;
  z-index: 3;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 0 30px rgba(123, 47, 190, 0.5);
}

.why-badge-float .badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
  color: white;
}

.why-badge-float .badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.why-about-text {
  color: #777;
  font-size: 16px;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 0;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-point-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(123, 47, 190, 0.12);
  border: 1px solid rgba(123, 47, 190, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.right-image {
  width: 200px;
  /* Set your preferred image width */
  height: auto;
  float: right;
  margin-left: 20px;
  /* Pushes the text away from the left side of the image */
  margin-top: auto;
  /* Pushes text away if it wraps underneath */
}

.why-point-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 4px;
}

.why-point-body p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery {
  background: var(--dark-2);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

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

.img-placeholder {
  background: linear-gradient(135deg, #1A1A1A 0%, #141414 100%);
  border: 1px solid rgba(123, 47, 190, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #444;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(123, 47, 190, 0.03) 0, rgba(123, 47, 190, 0.03) 1px, transparent 1px, transparent 20px);
}

.img-placeholder .ph-icon {
  font-size: 40px;
  opacity: 0.3;
  position: relative;
  z-index: 1;
}

.img-placeholder .ph-text {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.6;
}

.ph-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(123, 47, 190, 0.4);
  border-style: solid;
}

.ph-corner.tl {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}

.ph-corner.tr {
  top: 12px;
  right: 12px;
  border-width: 2px 2px 0 0;
}

.ph-corner.bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 2px 2px;
}

.ph-corner.br {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  padding: 20px 16px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* ── PROCESS ── */
.process {
  background: var(--dark);
}

.process-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.process-intro .section-tag {
  justify-content: center;
}

.process-intro .section-title {
  text-align: center;
}

.process-intro p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--purple-glow), var(--purple), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  background: var(--dark-3);
  border: 2px solid var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 28px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 0 4px var(--dark), 0 0 0 5px rgba(123, 47, 190, 0.2);
}

.process-step:hover .step-circle {
  border-color: var(--purple-glow);
  box-shadow: 0 0 20px rgba(155, 61, 255, 0.5), 0 0 0 4px var(--dark);
}

.step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--purple);
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ── REVIEWS ── */
.reviews {
  background: var(--dark-2);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}

.reviews-rating {
  text-align: right;
}

.reviews-rating .score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--purple-glow);
  line-height: 1;
}

.reviews-rating .stars {
  color: var(--purple-glow);
  font-size: 20px;
  letter-spacing: 3px;
}

.reviews-rating .source {
  color: #555;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Loading spinner */
.reviews-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 0;
  color: #555;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reviews-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(123, 47, 190, 0.2);
  border-top-color: var(--purple-bright);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
  animation: fadeInUp 0.5s ease forwards;
}

.review-card:hover {
  border-color: rgba(123, 47, 190, 0.4);
  transform: translateY(-4px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(123, 47, 190, 0.12);
  line-height: 1;
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.4), rgba(123, 47, 190, 0.15));
  border: 2px solid rgba(123, 47, 190, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--purple-glow);
  flex-shrink: 0;
}

.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-light);
}

.review-date {
  font-size: 12px;
  color: #444;
  margin-top: 2px;
}

.review-stars {
  color: #FFC107;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: #888;
  font-style: italic;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444;
  font-family: 'Barlow Condensed', sans-serif;
}

.review-source-dot {
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 50%;
}

.reviews-cta {
  text-align: center;
  margin-top: 48px;
}

.reviews-cta a {
  color: var(--purple-glow);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(191, 111, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.reviews-cta a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ── CONTACT / BOOKING ── */
.contact {
  background: var(--dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--purple-glow));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}

.contact-btn:hover {
  background: #1A1A1A;
  border-color: rgba(123, 47, 190, 0.3);
  transform: translateX(4px);
}

.contact-btn:hover::before {
  transform: scaleY(1);
}

.contact-btn-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(123, 47, 190, 0.15);
  border: 1px solid rgba(123, 47, 190, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}

.contact-btn:hover .contact-btn-icon {
  background: rgba(123, 47, 190, 0.3);
}

.contact-btn-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin-bottom: 4px;
}

.contact-btn-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--silver-light);
  line-height: 1;
}

.contact-btn-sub {
  font-size: 13px;
  color: #555;
  margin-top: 3px;
}

.contact-btn-arrow {
  margin-left: auto;
  font-size: 20px;
  color: #333;
  transition: color 0.2s, transform 0.2s;
}

.contact-btn:hover .contact-btn-arrow {
  color: var(--purple-glow);
  transform: translateX(4px);
}

/* Hours / info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px;
  margin-bottom: 0;
}

.contact-info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin-bottom: 20px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  color: #666;
}

.hours-time {
  color: var(--silver-light);
  font-weight: 600;
}

.hours-time.open {
  color: var(--purple-glow);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.area-tag {
  background: rgba(123, 47, 190, 0.12);
  border: 1px solid rgba(123, 47, 190, 0.2);
  padding: 5px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #888;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.2) 0%, rgba(123, 47, 190, 0.05) 100%);
  border-top: 1px solid rgba(123, 47, 190, 0.3);
  border-bottom: 1px solid rgba(123, 47, 190, 0.3);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .section-title {
  font-size: clamp(42px, 6vw, 80px);
  letter-spacing: 4px;
  position: relative;
}

.cta-banner p {
  font-size: 18px;
  color: #888;
  margin: 20px auto 40px;
  max-width: 480px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-actions .btn-primary {
  font-size: 18px;
  padding: 18px 48px;
}

.cta-actions .btn-secondary {
  font-size: 18px;
  padding: 17px 48px;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  padding: 64px 60px 32px;
  border-top: 1px solid rgba(123, 47, 190, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.85;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--silver-light), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  display: block;
}

.footer-logo span {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a::before {
  content: '▸';
  color: var(--purple);
  font-size: 10px;
}

.footer-col ul a:hover {
  color: var(--purple-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #333;
}

.footer-bottom p span {
  color: var(--purple-glow);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.social-link:hover {
  background: rgba(123, 47, 190, 0.2);
  border-color: var(--purple);
  color: var(--purple-glow);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 32px;
  }

  .hero {
    padding: 100px 32px 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  section {
    padding: 80px 32px;
  }

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

  .why-us {
    grid-template-columns: 1fr;
    padding: 80px 32px;
  }

  .why-visual {
    display: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .cta-banner {
    padding: 60px 32px;
  }

  footer {
    padding: 48px 32px 24px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 90px 20px 60px;
  }

  section {
    padding: 60px 20px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .cta-banner {
    padding: 48px 20px;
  }

  footer {
    padding: 40px 20px 20px;
  }
}