/* ===================================
   KING MOBILE — STYLES
   Partner of _rt
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500;600&display=swap');

/* ===================================
   CSS VARIABLES
=================================== */
:root {
  --yellow: #f0cc52;
  --blue: #173c72;
  --red: #db0223;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f5f3ee;
  --gray: #888;
  --light-gray: #f0eeea;
  --border: rgba(23, 60, 114, 0.15);
  --header-h: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overscroll-behavior: none; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===================================
   TYPOGRAPHY
=================================== */
.display-font { font-family: 'Bebas Neue', cursive; letter-spacing: 0.02em; }
.condensed-font { font-family: 'Barlow Condensed', sans-serif; }

h1, h2, h3, h4 { font-family: 'Bebas Neue', cursive; letter-spacing: 0.03em; line-height: 1.05; }

/* ===================================
   LOADING SCREEN
=================================== */
.loading-screen {
  position: fixed; inset: 0;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 1.5rem;
  animation: loadingFadeOut 0.6s ease 2.4s forwards;
}

.loading-screen svg { filter: drop-shadow(0 0 20px rgba(240,204,82,0.5)); }

.loading-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 0.3em;
  animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-bar-wrap {
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loading-bar {
  height: 100%;
  background: var(--yellow);
  width: 0%;
  animation: loadingBar 2.2s ease-in-out forwards;
}

@keyframes loadingFadeOut {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}
@keyframes loadingPulse {
  0%, 100% { opacity: 0.6; } 50% { opacity: 1; }
}
@keyframes loadingBar {
  0% { width: 0%; } 80% { width: 90%; } 100% { width: 100%; }
}
@keyframes spinBounce {
  0% { transform: rotate(0deg) scale(0.22); }
  85% { transform: rotate(360deg) scale(0.22); }
  92% { transform: rotate(370deg) scale(0.22); }
  100% { transform: rotate(360deg) scale(0.22); }
}
.spin-bounce { transform-origin: 12px 12px; animation: spinBounce 2.2s ease-in-out infinite; }

/* ===================================
   HEADER
=================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex; align-items: center;
  padding: 0 2rem;
  background: rgba(23,60,114,0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 2px solid rgba(240,204,82,0.25);
  transition: var(--transition);
}

.header-logo {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.header-logo-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.header-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.header-logo-main {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.08em;
}
.header-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  color: var(--yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.header-nav {
  display: flex; align-items: center;
  gap: 0; margin: 0 auto;
}
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 1.1rem;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; background: var(--yellow);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 1.1rem; right: 1.1rem;
}

.header-actions {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}

.header-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.header-phone:hover { color: var(--yellow); }
.header-phone svg { flex-shrink: 0; }

.btn-book {
  background: var(--yellow);
  color: var(--blue);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,204,82,0.4);
}

/* ===================================
   HAMBURGER MENU
=================================== */
.hamburger {
  display: none;
  width: 36px; height: 27px;
  position: relative; cursor: pointer;
  flex-shrink: 0;
}
.hamburger b {
  position: absolute; left: 0;
  width: 36px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger b:nth-child(1) { top: 0; }
.hamburger b:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger b:nth-child(3) { bottom: 0; }

.hamburger.active b:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.hamburger.active b:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0); }
.hamburger.active b:nth-child(3) {
  bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg);
}

/* ===================================
   MOBILE NAV OVERLAY
=================================== */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--blue);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.active { opacity: 1; visibility: visible; }

.mobile-nav .nav-link {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.mobile-nav.active .nav-link {
  opacity: 1; transform: translateY(0);
}
.mobile-nav.active .nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.active .nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.active .nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.active .nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.active .nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.active .nav-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav .nav-link:hover { color: var(--yellow); }

.mobile-nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--yellow);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
.mobile-nav.active .mobile-nav-phone { opacity: 1; transform: translateY(0); }

.mobile-nav-book {
  margin-top: 0.5rem;
  background: var(--yellow);
  color: var(--blue);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 2rem;
  border-radius: 6px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}
.mobile-nav.active .mobile-nav-book { opacity: 1; transform: translateY(0); }

/* ===================================
   PAGE WRAPPER
=================================== */
.page { padding-top: var(--header-h); min-height: 100vh; display: none; }
.page.active { display: block; }

/* ===================================
   BUTTONS (general)
=================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.15rem; letter-spacing: 0.08em;
  padding: 0.65rem 1.8rem;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--blue); color: var(--white);
}
.btn-primary:hover {
  background: var(--red); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219,2,35,0.35);
}
.btn-yellow {
  background: var(--yellow); color: var(--blue);
}
.btn-yellow:hover {
  background: var(--white); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,204,82,0.4);
}
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue); color: var(--white);
}
.btn-red {
  background: var(--red); color: var(--white);
}
.btn-red:hover {
  background: #b0011b; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(219,2,35,0.35);
}

/* ===================================
   SECTION UTILITIES
=================================== */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
}

/* ===================================
   HOME — HERO
=================================== */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,204,82,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,204,82,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  0% { transform: translate(0,0); }
  100% { transform: translate(60px,60px); }
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(219,2,35,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(240,204,82,0.15);
  border: 1px solid rgba(240,204,82,0.4);
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

.hero-title {
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title .accent { color: var(--yellow); }
.hero-title .accent-red { color: var(--red); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-badges {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
.hero-badge svg { color: var(--yellow); flex-shrink: 0; }

/* Booking Widget */
.hero-widget {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: fadeUp 0.8s ease 0.2s both;
}
.widget-header {
  background: var(--blue);
  padding: 1.2rem 1.5rem;
  border-bottom: 3px solid var(--yellow);
  display: flex; align-items: center; gap: 0.75rem;
}
.widget-header-icon {
  width: 36px; height: 36px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.widget-header-text h3 {
  font-size: 1.2rem; color: var(--white); font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.05em;
}
.widget-header-text p {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.05em;
}
.widget-progress {
  display: flex; gap: 4px; padding: 0 1.5rem;
  background: var(--blue); padding-bottom: 1rem;
}
.widget-progress-step {
  flex: 1; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.2);
  transition: background 0.4s ease;
}
.widget-progress-step.active { background: var(--yellow); }

.widget-body { padding: 1.5rem; }
.widget-question {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.widget-devices {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.widget-device {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--blue);
}
.widget-device:hover {
  border-color: var(--blue);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.widget-device.selected {
  border-color: var(--yellow);
  background: rgba(240,204,82,0.1);
}
.widget-device-icon { font-size: 1.6rem; }

/* ===================================
   HOME — STATS
=================================== */
.stats-bar {
  background: var(--yellow);
  padding: 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem; color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 0.2rem;
}

/* ===================================
   HOME — SERVICES
=================================== */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.service-title {
  font-size: 1.4rem; color: var(--blue);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.9rem; color: var(--gray);
  line-height: 1.7; margin-bottom: 1.2rem;
}
.service-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem; color: var(--red);
  letter-spacing: 0.05em;
}

/* ===================================
   HOME — WHY US
=================================== */
.why-section { background: var(--blue); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.6); }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(240,204,82,0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2rem; margin-bottom: 1rem;
}
.why-title {
  font-size: 1.3rem; color: var(--yellow);
  margin-bottom: 0.5rem;
}
.why-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===================================
   HOME — CTA BANNER
=================================== */
.cta-banner {
  background: var(--red);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-banner h2 { font-size: 3rem; color: var(--white); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--yellow); color: var(--blue); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); font-family: 'Bebas Neue', cursive; font-size: 1.15rem; letter-spacing: 0.08em; padding: 0.65rem 1.8rem; border-radius: 6px; display: inline-flex; align-items: center; transition: var(--transition); }
.btn-outline-white:hover { background: var(--white); color: var(--red); }

/* ===================================
   BY BRAND PAGE
=================================== */
.brands-hero {
  background: var(--blue);
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.brands-hero h1 { font-size: clamp(3rem, 6vw, 5rem); color: var(--white); }
.brands-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 0.5rem; }

.brands-section { padding: 4rem 2rem; background: var(--off-white); }

.brand-category { margin-bottom: 3rem; }
.brand-category-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem; color: var(--blue);
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.brand-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.brand-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.75rem;
}
.brand-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.brand-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.brand-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.04em;
}
.brand-card-tag {
  font-size: 0.75rem; color: var(--gray);
  margin-top: 0.1rem;
}

/* ===================================
   LOCATIONS PAGE
=================================== */
.locations-hero {
  background: var(--blue); padding: 4rem 2rem 3rem;
  text-align: center;
}
.locations-hero h1 { font-size: clamp(3rem, 6vw, 5rem); color: var(--white); }
.locations-hero p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

.locations-section { padding: 4rem 2rem; background: var(--off-white); }
.location-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1000px; margin: 0 auto;
  border: 2px solid var(--border);
}
.location-info { padding: 3rem; }
.location-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(23,60,114,0.1);
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 4px;
  margin-bottom: 1rem;
}
.location-name { font-size: 2rem; color: var(--blue); margin-bottom: 1.5rem; }
.location-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.location-detail {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.location-detail-icon {
  width: 36px; height: 36px;
  background: rgba(240,204,82,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.location-detail-text strong { display: block; font-size: 0.8rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.1rem; }
.location-detail-text a { color: var(--blue); font-weight: 500; }
.location-detail-text a:hover { color: var(--red); }

.location-hours { margin-bottom: 2rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; padding: 0.4rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--gray); font-weight: 500; }
.hours-time { color: var(--blue); font-weight: 600; }

.location-map {
  background: #e8e4dc;
  min-height: 400px;
  position: relative; overflow: hidden;
}
.location-map iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  border: none;
  filter: saturate(0.8) contrast(1.1);
}

.location-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===================================
   CONTACT PAGE
=================================== */
.contact-hero { background: var(--blue); padding: 4rem 2rem 3rem; text-align: center; }
.contact-hero h1 { font-size: clamp(3rem, 6vw, 5rem); color: var(--white); }
.contact-hero p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

.contact-section { padding: 4rem 2rem; background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
}

.contact-info-title { font-size: 2rem; color: var(--blue); margin-bottom: 1.5rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 10px;
  border-left: 4px solid var(--yellow);
  transition: var(--transition);
}
.contact-info-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-info-value { font-size: 1rem; color: var(--blue); font-weight: 600; }
.contact-info-value a { color: var(--blue); }
.contact-info-value a:hover { color: var(--red); }

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-title { font-size: 2rem; color: var(--blue); margin-bottom: 1.5rem; }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: var(--black);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23,60,114,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--blue); color: var(--white);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem; letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(219,2,35,0.3); }
.form-success {
  display: none;
  text-align: center; padding: 2rem;
  color: var(--blue);
}
.form-success-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.form-success h3 { font-size: 1.5rem; }

/* ===================================
   FAQ PAGE
=================================== */
.faq-hero { background: var(--blue); padding: 4rem 2rem 3rem; text-align: center; }
.faq-hero h1 { font-size: clamp(3rem, 6vw, 5rem); color: var(--white); }
.faq-hero p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

.faq-section { padding: 4rem 2rem; background: var(--off-white); }
.faq-grid {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
}

.faq-sidebar { position: sticky; top: calc(var(--header-h) + 2rem); height: fit-content; }
.faq-sidebar-title { font-size: 1.1rem; color: var(--blue); margin-bottom: 1rem; }
.faq-filter-btn {
  display: block; width: 100%;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--gray);
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: var(--transition);
  margin-bottom: 0.3rem;
  background: none; border-top: none; border-right: none; border-bottom: none;
  cursor: pointer;
}
.faq-filter-btn:hover { color: var(--blue); background: var(--white); }
.faq-filter-btn.active { color: var(--blue); background: var(--white); border-left-color: var(--yellow); font-weight: 700; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border-radius: 10px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[data-open="true"] { border-color: var(--blue); }
.faq-item[data-open="true"] .faq-q { background: rgba(23,60,114,0.04); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  transition: background 0.2s ease;
}
.faq-q:hover { background: var(--off-white); }
.faq-q-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.02em;
}
.faq-q-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--blue); color: var(--white);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  transition: transform 0.3s ease, background 0.2s ease;
}
.faq-item[data-open="true"] .faq-q-icon { background: var(--red); transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.95rem; color: var(--gray);
  line-height: 1.8;
}
.faq-item[data-open="true"] .faq-a { max-height: 500px; }

/* ===================================
   BOOK / REPAIR PAGE
=================================== */
.book-hero { background: var(--blue); padding: 3rem 2rem 2rem; text-align: center; }
.book-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); }
.book-hero p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

.book-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 1.5rem 2rem;
  background: rgba(23,60,114,0.06);
  border-bottom: 1px solid var(--border);
}
.book-step-wrap {
  display: flex; align-items: center;
}
.book-step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.book-step-circle.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.book-step-circle.done { background: var(--yellow); color: var(--blue); border-color: var(--yellow); }
.book-step-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); margin-top: 0.3rem;
  text-align: center;
}
.book-step-label.active { color: var(--blue); }
.book-step-dot { display: flex; flex-direction: column; align-items: center; gap: 0; }
.book-step-line {
  width: 60px; height: 2px;
  background: var(--light-gray);
  margin: 0 0.5rem;
  transition: background 0.4s ease;
}
.book-step-line.done { background: var(--yellow); }

.book-main {
  max-width: 1100px; margin: 0 auto;
  padding: 3rem 2rem;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 3rem; align-items: start;
}

.book-panel { display: none; }
.book-panel.active { display: block; animation: fadeUp 0.4s ease both; }

.book-panel-title { font-size: 2rem; color: var(--blue); margin-bottom: 0.4rem; }
.book-panel-subtitle { font-size: 1rem; color: var(--gray); margin-bottom: 2rem; }

.book-device-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.book-device-btn {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.book-device-btn:hover {
  border-color: var(--blue);
  transform: translateY(-3px); box-shadow: var(--shadow);
}
.book-device-btn.selected { border-color: var(--yellow); background: rgba(240,204,82,0.08); }
.book-device-btn-icon { font-size: 2.5rem; }
.book-device-btn-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem; color: var(--blue); letter-spacing: 0.05em;
}

.book-select, .book-input, .book-textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem; color: var(--black);
  background: var(--white);
  transition: var(--transition); outline: none;
  margin-top: 0.4rem;
}
.book-select:focus, .book-input:focus, .book-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23,60,114,0.08);
}
.book-textarea { min-height: 100px; resize: vertical; }

.book-form-group { margin-bottom: 1.25rem; }
.book-form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase;
}

.book-issue-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.book-issue-btn {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--blue); letter-spacing: 0.03em;
}
.book-issue-btn:hover { border-color: var(--blue); background: rgba(23,60,114,0.04); }
.book-issue-btn.selected { border-color: var(--yellow); background: rgba(240,204,82,0.1); }
.book-issue-icon { font-size: 1.4rem; }
.book-price-tag {
  margin-left: auto;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.15rem; color: var(--red); letter-spacing: 0.04em;
}

.book-nav { display: flex; gap: 1rem; margin-top: 2rem; }
.book-back-btn {
  background: var(--light-gray); color: var(--gray);
  font-family: 'Bebas Neue', cursive; font-size: 1.1rem;
  letter-spacing: 0.06em; padding: 0.7rem 1.5rem;
  border-radius: 8px; transition: var(--transition);
}
.book-back-btn:hover { background: var(--border); color: var(--blue); }
.book-next-btn {
  flex: 1; background: var(--blue); color: var(--white);
  font-family: 'Bebas Neue', cursive; font-size: 1.1rem;
  letter-spacing: 0.06em; padding: 0.7rem 1.5rem;
  border-radius: 8px; transition: var(--transition);
}
.book-next-btn:hover { background: var(--red); }
.book-next-btn:disabled { background: var(--light-gray); color: var(--gray); cursor: not-allowed; }

/* Book Summary Sidebar */
.book-summary {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  border: 2px solid var(--border);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.book-summary-title { font-size: 1.3rem; color: var(--blue); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--yellow); }
.book-summary-row { display: flex; justify-content: space-between; gap: 0.5rem; padding: 0.5rem 0; border-bottom: 1px solid var(--light-gray); font-size: 0.9rem; }
.book-summary-row:last-child { border-bottom: none; }
.book-summary-row-label { color: var(--gray); }
.book-summary-row-value { color: var(--blue); font-weight: 600; text-align: right; }
.book-summary-price { font-size: 1.1rem; color: var(--red); font-family: 'Bebas Neue', cursive; letter-spacing: 0.04em; }
.book-summary-badges { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; }
.book-summary-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
}
.book-summary-badge svg { color: var(--yellow); }

.book-confirm-box {
  background: var(--off-white);
  border-radius: 12px; padding: 2rem;
  text-align: center; margin-top: 1rem;
}
.book-confirm-icon { font-size: 3rem; }
.book-confirm-title { font-size: 2rem; color: var(--blue); margin: 0.5rem 0; }
.book-confirm-msg { font-size: 0.95rem; color: var(--gray); margin-bottom: 1.5rem; }
.book-confirm-steps { text-align: left; display: flex; flex-direction: column; gap: 0.75rem; }
.book-confirm-step { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--gray); }

/* ===================================
   FOOTER
=================================== */
.footer {
  background: var(--blue);
  border-top: 4px solid var(--yellow);
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 2rem 3rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem; color: var(--blue);
}
.footer-logo-text { font-family: 'Bebas Neue', cursive; font-size: 1.2rem; color: var(--white); letter-spacing: 0.06em; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--yellow); color: var(--blue); }

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 2rem;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom-text {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-rt-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer-rt-dot { width: 5px; height: 5px; background: var(--yellow); border-radius: 50%; }

/* ===================================
   ANIMATIONS
=================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; max-width: 640px; }
  .hero-widget { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .book-main { grid-template-columns: 1fr; }
  .book-summary { position: static; }
  .location-card { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-phone span { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .hero-cta { flex-direction: column; }
  .book-device-grid { grid-template-columns: 1fr 1fr; }
  .faq-filter-btn { display: inline-block; margin-right: 0.5rem; margin-bottom: 0.5rem; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .book-device-grid { grid-template-columns: 1fr 1fr; }
}
