/**
 * COMPONENT STYLES
 * All component-specific styles organized by section
 */

/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR (Betriebsferien / Ankündigungen)
   Konfiguration: /betriebsferien-config.php
═══════════════════════════════════════════════════════════ */

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.announcement-bar--closing {
  opacity: 0;
  height: 0 !important;
}

/* Farb-Varianten */
.announcement-bar--warning {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

.announcement-bar--info {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.announcement-bar--urgent {
  background: linear-gradient(90deg, #b91c1c, #ef4444);
}

.announcement-bar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.announcement-bar__text {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  margin: 0;
  letter-spacing: 0.1px;
}

.announcement-bar__text strong {
  font-weight: 700;
}

.announcement-bar__close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.announcement-bar__close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Nav nach unten schieben wenn Bar aktiv */
body.has-announcement nav {
  top: 44px;
}

body.has-announcement .mobile-menu {
  top: calc(44px + 73px); /* bar + nav height */
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 45px;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0px;
  text-transform: lowercase;
  display: inline-block;
}

.logo em {
  font-style: normal;
  color: var(--green);
}

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

.nav-links a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--green);
}

.nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
  flex-shrink: 0;
}

.nav-btn {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: #333;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* ── MOBILE MENU FULLSCREEN OVERLAY ── */
.mobile-menu {
  display: none; /* hidden on desktop always */
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 80px 0 50px 44px;
  overflow-y: auto;
}

.mobile-menu::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,189,90,0.1) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .mobile-menu.active {
    display: flex;
    animation: menuFadeIn 0.25s ease forwards;
  }
}

@keyframes menuFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Close Button — div statt button um Browser/Astra-Defaults zu vermeiden */
#mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

#mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

#mobile-menu-close::before,
#mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  display: block;
}

#mobile-menu-close::before { transform: rotate(45deg); }
#mobile-menu-close::after  { transform: rotate(-45deg); }

.mobile-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: -0.3px;
  line-height: 1;
  transition: color 0.2s;
  text-align: left;
  padding: 10px 0;
  display: block;
  border-bottom: none;
  width: 100%;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: #ffffff;
}

.mobile-menu a[href^="tel"] {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0;
  margin-top: 16px;
  padding: 4px 0;
}

.mobile-menu a[href^="tel"]:hover {
  color: rgba(255, 255, 255, 0.6);
}

.mobile-menu a:last-child {
  background: #3EBD5A;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
  margin-top: 20px;
  width: auto;
  display: inline-block;
  transition: background 0.2s;
}

.mobile-menu a:last-child:hover {
  background: #2a9d46;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  background: var(--cream);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 40%, rgba(62, 189, 90, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.hero-left {
  padding: 140px 48px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 189, 90, 0.1);
  border: 1px solid rgba(62, 189, 90, 0.25);
  color: var(--green-dark);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(46px, 5.5vw, 70px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}

.hero h1 strong {
  font-weight: 800;
}

.hero h1 .g {
  color: var(--green);
  font-weight: 800;
}

.hero h1 .d {
  color: #bbb;
  font-weight: 300;
}

.hero-sub {
  color: #666;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 52px;
}

.btn-dark {
  background: var(--black);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #555;
  padding: 15px 26px;
  border-radius: 10px;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: #aaa;
  color: var(--black);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

.hero-right {
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.55);
  padding: 140px 48px 60px;
  display: flex;
  flex-direction: column;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 189, 90, 0.1);
  border: 1px solid rgba(62, 189, 90, 0.3);
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 28px;
}

.open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}

.shop-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.shop-addr {
  color: #888;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.hours-list {
  margin-bottom: 28px;
}

.h-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13px;
}

.h-row:last-child {
  border-bottom: none;
}

.h-day {
  color: #999;
}

.h-time {
  color: #333;
  font-weight: 500;
}

.h-time.closed {
  color: #ccc;
  font-weight: 400;
}

.h-today {
  background: rgba(62, 189, 90, 0.07);
  border-radius: 7px;
  padding: 9px 12px;
  margin: 0 -12px;
}

.h-today .h-day {
  color: var(--green-dark);
  font-weight: 600;
}

.h-today .h-time {
  color: var(--green-dark);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.contact-link:hover {
  background: #fff;
  border-color: var(--green);
  color: var(--black);
}

.cl-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.cl-label {
  font-weight: 500;
  color: #222;
}

.cl-sub {
  font-size: 11px;
  color: #aaa;
}

/* ═══════════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════════ */

.trust {
  background: var(--black);
  display: flex;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child {
  border-right: none;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM SECTION
═══════════════════════════════════════════════════════════ */

.contact-section {
  padding: 90px 60px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 189, 90, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--black);
}

.contact-left h2 strong {
  font-weight: 800;
}

.contact-left p {
  color: #777;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.response-promise {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-light);
  border: 1px solid rgba(62, 189, 90, 0.25);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 32px;
}

.rp-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rp-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.rp-text {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.alt-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alt-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
}

.alt-contact a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.alt-contact a:hover {
  text-decoration: underline;
}

.alt-icon {
  font-size: 16px;
}

.repair-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(62, 189, 90, 0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  color: #666;
}

.form-group select option {
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.device-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.device-chip {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.device-chip:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.device-chip.selected {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.device-chip-label {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62, 189, 90, 0.35);
}

.form-submit:active {
  transform: translateY(0);
}

.form-footer-note {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: #aaa;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.visible {
  display: block;
}

.form-success .success-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
}

.form-success p {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════ */

.services-section {
  padding: 90px 60px;
  background: var(--cream);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.services-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 0;
}

.services-header h2 strong {
  font-weight: 800;
}

.services-header p {
  color: #777;
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 0;
}

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

.svc-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  border: 1.5px solid transparent;
  transition: all 0.22s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '→';
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 18px;
  color: var(--green);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s;
}

.svc-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(62, 189, 90, 0.1);
}

.svc-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.svc-card.featured {
  background: var(--black);
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 36px;
}

.svc-card.featured::after {
  display: none;
}

.svc-card.featured:hover {
  border-color: rgba(62, 189, 90, 0.5);
}

.svc-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.svc-card.featured .svc-icon {
  font-size: 60px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 7px;
}

.svc-card.featured .svc-title {
  color: #fff;
  font-size: 24px;
}

.svc-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
}

.svc-card.featured .svc-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.svc-tag {
  display: inline-block;
  margin-top: 12px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.svc-card.featured .svc-tag {
  background: rgba(62, 189, 90, 0.2);
  color: var(--green);
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */

.prices-section {
  padding: 90px 60px;
  background: var(--white);
}

.prices-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

.prices-nav {
  margin-top: 36px;
}

.pnav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 4px;
  transition: background 0.2s;
}

.pnav-item:hover,
.pnav-item.active {
  background: var(--cream);
  color: var(--black);
}

.pnav-item.active {
  font-weight: 700;
}

.pnav-icon {
  font-size: 18px;
}

.pnav-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--mid);
  background: var(--gray);
  padding: 2px 8px;
  border-radius: 100px;
}

.prices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.price-item:hover {
  background: var(--white);
  border-color: var(--green);
}

.pi-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
}

.pi-device {
  font-size: 12px;
  color: var(--mid);
}

.pi-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-align: right;
}

.pi-from {
  font-size: 10px;
  color: var(--mid);
  font-weight: 400;
  display: block;
  font-family: 'DM Sans', sans-serif;
}

.prices-more {
  text-align: center;
  margin-top: 20px;
}

.prices-more a {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   LOCATION / WALK-IN
═══════════════════════════════════════════════════════════ */

.walkin-section {
  padding: 90px 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.walkin-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62, 189, 90, 0.1) 0%, transparent 60%);
}

.walkin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.walkin-left .eyebrow {
  color: var(--green);
}

.walkin-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.walkin-left h2 strong {
  font-weight: 800;
}

.walkin-left h2 em {
  font-style: normal;
  color: var(--green);
  font-weight: 800;
}

.walkin-left p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.walkin-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.walkin-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
}

.map-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  overflow: hidden;
}

.map-visual {
  height: 200px;
  background: linear-gradient(145deg, #161616, #1e1e1e);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Custom Logo Pin Overlay */
.map-logo-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  margin-top: -4px;
}

.map-logo-pin__bubble {
  background: #0c0c0c;
  border: 2px solid #3EBD5A;
  border-radius: 12px;
  padding: 7px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.55), 0 0 0 5px rgba(62,189,90,0.12);
}

.map-logo-pin__bubble em {
  color: #3EBD5A;
  font-style: normal;
}

.map-logo-pin__tail {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #3EBD5A;
}

.map-info {
  padding: 22px 26px;
}

.map-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.map-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 18px;
}

.map-btns {
  display: flex;
  gap: 10px;
}

.map-btn {
  flex: 1;
  padding: 11px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.map-btn-green {
  background: var(--green);
  color: #fff;
}

.map-btn-green:hover {
  background: var(--green-dark);
}

.map-btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */

.reviews-section {
  padding: 90px 60px;
  background: var(--cream);
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.rating-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rating-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: var(--black);
}

.rating-stars {
  color: #FFBE00;
  font-size: 20px;
}

.rating-sub {
  font-size: 12px;
  color: var(--mid);
  margin-top: 4px;
}

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

.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: rgba(62, 189, 90, 0.3);
}

.rv-stars {
  font-size: 13px;
  color: #FFBE00;
  margin-bottom: 12px;
}

.rv-text {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.rv-name {
  font-size: 13px;
  font-weight: 600;
}

.rv-repair {
  font-size: 11px;
  color: var(--mid);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER CTA
═══════════════════════════════════════════════════════════ */

.fcta {
  padding: 90px 60px;
  background: var(--black);
  text-align: center;
}

.fcta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 16px;
}

.fcta h2 strong {
  font-weight: 800;
}

.fcta p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  margin-bottom: 36px;
}

.btn-green {
  background: var(--green);
  color: #fff;
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */

footer {
  background: #0a0a0a;
  padding: 56px 60px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

.ft-brand .logo {
  display: block;
  margin-bottom: 14px;
  color: #fff;
}

.ft-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  max-width: 240px;
}

footer h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 9px;
}

footer a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   MOCKUP TAG (Development)
═══════════════════════════════════════════════════════════ */

.mockup-tag {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.mockup-tag span {
  color: var(--green);
  font-weight: 700;
}