/* ============================================================
   landing.css — Apple-Inspired Clean & Interactive Light Theme
   Royal Car Care
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Apple Signature Light Palette */
  --bg-canvas:      #ffffff;
  --bg-subtle:      #f5f5f7;
  --bg-card:        #ffffff;
  --bg-card-hover:  #ffffff;
  --bg-frosted:     rgba(255, 255, 255, 0.82);

  /* Hairlines & Borders */
  --border:         rgba(0, 0, 0, 0.08);
  --border-subtle:  rgba(0, 0, 0, 0.04);
  --border-focus:   #0071e3;

  /* Apple Light Accent Colors */
  --apple-blue:       #0071e3;
  --apple-blue-hover: #0077ed;
  --apple-blue-faint: rgba(0, 113, 227, 0.08);
  --apple-blue-glow:  rgba(0, 113, 227, 0.18);

  --accent-cyan:      #30b0c7;
  --accent-indigo:    #5856d6;

  --green:            #34c759;
  --green-faint:      rgba(52, 199, 89, 0.1);
  --orange:           #ff9500;
  --orange-faint:     rgba(255, 149, 0, 0.1);
  --red:              #ff3b30;
  --red-faint:        rgba(255, 59, 48, 0.1);

  /* Apple High-Contrast Clean Typography */
  --text-primary:   #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary:  #86868b;
  --text-on-dark:   #ffffff;

  /* Elevations & Shapes */
  --radius-pill:    980px;
  --radius-lg:      22px;
  --radius-md:      16px;
  --radius-sm:      10px;

  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md:      0 8px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0,0,0,0.02);
  --shadow-lg:      0 20px 50px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-glow:    0 10px 30px rgba(0, 113, 227, 0.15);

  --ease-apple:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:    cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-canvas);
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg-canvas);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s var(--ease-apple);
}

/* ============================================================
   APPLE FROSTED NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.35s var(--ease-apple);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  flex-shrink: 0;
  text-decoration: none;
}

.logo-car-badge {
  width: 46px;
  height: 32px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.12) 0%, rgba(0, 113, 227, 0.04) 100%);
  border: 1px solid rgba(0, 113, 227, 0.22);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-apple);
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.08);
  padding: 2px 4px;
}

.nav-logo:hover .logo-car-badge {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.2);
  border-color: rgba(0, 113, 227, 0.4);
}

.car-logo-svg {
  width: 36px;
  height: 22px;
  display: block;
}

.footer-brand .logo-car-badge {
  margin-bottom: 12px;
}

.logo-gold {
  color: var(--apple-blue);
  background: linear-gradient(135deg, #0071e3 0%, #4393e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease-smooth);
  position: relative;
  padding: 6px 0;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn-staff-nav {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease-apple);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

.btn-staff-nav:hover {
  background: var(--apple-blue-faint);
  border-color: var(--apple-blue);
  color: var(--apple-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.15);
}

.mobile-only-staff {
  display: none;
}

.btn-call {
  background: var(--apple-blue);
  color: #ffffff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease-apple);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
  text-decoration: none;
}

.btn-call:hover {
  background: var(--apple-blue-hover);
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.35);
}

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

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-apple);
  display: block;
}

/* ============================================================
   HERO SECTION (Apple Pure Light Canvas)
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 40px;
  background: radial-gradient(circle at 50% 10%, rgba(0, 113, 227, 0.05) 0%, transparent 55%),
              linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.38;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.04) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 245, 247, 0.82) 50%, #ffffff 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  padding: 30px 24px 20px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 113, 227, 0.2);
  color: var(--apple-blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(0, 113, 227, 0.06);
  letter-spacing: -0.01em;
  animation: appleFadeUp 0.8s var(--ease-apple) both;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 18px;
  animation: appleFadeUp 0.8s 0.1s var(--ease-apple) both;
}

.hero-gold {
  color: var(--apple-blue);
  background: linear-gradient(135deg, #0071e3 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 19.5px);
  color: var(--text-secondary);
  line-height: 1.55;
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 32px;
  letter-spacing: -0.01em;
  animation: appleFadeUp 0.8s 0.2s var(--ease-apple) both;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: appleFadeUp 0.8s 0.3s var(--ease-apple) both;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--apple-blue);
  color: #ffffff;
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease-apple);
  box-shadow: 0 4px 18px rgba(0, 113, 227, 0.28);
}

.btn-primary-lg:hover {
  background: var(--apple-blue-hover);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0, 113, 227, 0.38);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--apple-blue);
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 113, 227, 0.25);
  transition: all 0.25s var(--ease-apple);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-outline-lg:hover {
  background: var(--apple-blue-faint);
  border-color: var(--apple-blue);
  transform: scale(1.02);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  animation: appleFadeUp 0.8s 0.4s var(--ease-apple) both;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  display: inline-flex;
  box-shadow: var(--shadow-sm);
}

.hstat { text-align: center; }
.hstat-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--apple-blue);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hstat-label {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hstat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ============================================================
   INTERACTIVE LIVE WARRANTY CHECKER WIDGET
   ============================================================ */
.warranty-checker-section {
  padding: 40px 5% 70px;
  background: #ffffff;
}

.checker-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fbfbfd;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-apple), box-shadow 0.3s var(--ease-apple);
}

.checker-header {
  text-align: center;
  margin-bottom: 22px;
}

.checker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--apple-blue);
  background: var(--apple-blue-faint);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.checker-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.checker-sub {
  font-size: 14px;
  color: var(--text-secondary);
}

.checker-input-row {
  display: flex;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
}

.checker-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  outline: none;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.checker-input:focus {
  border-color: var(--apple-blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

.checker-btn {
  background: var(--apple-blue);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s var(--ease-apple);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.25);
}

.checker-btn:hover {
  background: var(--apple-blue-hover);
  transform: scale(1.02);
}

.checker-result {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: none;
  box-shadow: var(--shadow-sm);
  animation: appleFadeUp 0.4s var(--ease-apple);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 54px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--apple-blue);
  background: var(--apple-blue-faint);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.text-gold {
  color: var(--apple-blue);
  background: linear-gradient(135deg, #0071e3 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   SERVICES SECTION (Apple Bento Grid)
   ============================================================ */
.services-section {
  padding: 90px 0;
  background: var(--bg-subtle);
  position: relative;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.35s var(--ease-apple);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 113, 227, 0.25);
}

.service-card.featured {
  background: #ffffff;
  border-color: rgba(0, 113, 227, 0.35);
  box-shadow: 0 4px 18px rgba(0, 113, 227, 0.08);
}

.service-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.12) 0%, rgba(0, 113, 227, 0.04) 100%);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-apple);
  color: var(--apple-blue);
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.08);
}

.service-card:hover .service-icon-wrap {
  background: var(--apple-blue);
  color: #ffffff;
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 4px 16px rgba(0, 113, 227, 0.35);
  border-color: var(--apple-blue);
}

.service-card:hover .service-icon-wrap svg {
  stroke: #ffffff;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-badge-tag {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--apple-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.service-features li {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li svg {
  flex-shrink: 0;
  color: var(--apple-blue);
}

.service-warranty-tag {
  background: var(--apple-blue-faint);
  border: 1px solid rgba(0, 113, 227, 0.2);
  color: var(--apple-blue);
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   WHY CHOOSE US (Apple Feature Grid)
   ============================================================ */
.why-section {
  padding: 90px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.why-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: transform 0.25s var(--ease-apple);
}

.why-point:hover {
  transform: translateX(4px);
  background: #ffffff;
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: var(--shadow-sm);
}

.why-point-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.03) 100%);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--apple-blue);
  flex-shrink: 0;
  transition: all 0.25s var(--ease-apple);
}

.why-point:hover .why-point-icon {
  background: var(--apple-blue);
  color: #ffffff;
  border-color: var(--apple-blue);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.why-point:hover .why-point-icon svg {
  stroke: #ffffff;
}

.why-point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.why-point p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.why-card-big {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f3ff 100%);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.wcb-icon { font-size: 48px; margin-bottom: 14px; }
.wcb-title { font-size: 26px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 4px; }
.wcb-sub { font-size: 14px; color: var(--apple-blue); margin-bottom: 16px; font-weight: 700; }
.wcb-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.wcb-cta .btn-primary-lg { width: 100%; justify-content: center; }

/* ============================================================
   WARRANTY PROMISE BANNER (Apple Clean Luminous Card)
   ============================================================ */
.warranty-section {
  padding: 70px 0;
  background: var(--bg-subtle);
}

.warranty-banner {
  background: linear-gradient(135deg, #f0f7ff 0%, #eaf4ff 100%);
  border: 1px solid rgba(0, 113, 227, 0.22);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}

.warranty-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 260px;
}

.warranty-icon { font-size: 44px; }
.warranty-left h2 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; color: var(--text-primary); }
.warranty-left p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

.warranty-cards {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wc {
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.05);
}

.wc-number { font-size: 40px; font-weight: 900; color: var(--apple-blue); line-height: 1; }
.wc-unit { font-size: 13px; color: var(--text-secondary); margin-bottom: 4px; font-weight: 700; text-transform: uppercase; }
.wc-desc { font-size: 11px; color: var(--text-muted); max-width: 110px; line-height: 1.3; }

.wc-or {
  font-size: 14px;
  font-weight: 800;
  color: var(--apple-blue);
  background: rgba(0, 113, 227, 0.1);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--apple-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all 0.2s var(--ease-apple);
  box-shadow: 0 2px 10px rgba(0, 113, 227, 0.25);
}

.btn-gold:hover { transform: scale(1.03); background: var(--apple-blue-hover); }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

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

.testimonial-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-apple);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 113, 227, 0.2);
}

.testimonial-card.featured-t {
  background: #ffffff;
  border-color: rgba(0, 113, 227, 0.25);
}

.tcard-stars-svg {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-avatar {
  width: 38px; height: 38px;
  background: var(--apple-blue-faint);
  color: var(--apple-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.tcard-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.tcard-author span { font-size: 12px; color: var(--text-tertiary); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 90px 0;
  background: var(--bg-subtle);
}

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

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--ease-apple);
}

.contact-card:hover { border-color: rgba(0, 113, 227, 0.25); box-shadow: var(--shadow-md); }

.cc-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.03) 100%);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--apple-blue);
  flex-shrink: 0;
}

.contact-card strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--text-primary); }
.contact-card p, .contact-card a { font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; }
.contact-card a:hover { color: var(--apple-blue); }

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--apple-blue);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
  transition: all 0.2s var(--ease-apple);
  text-decoration: none;
}

.maps-btn:hover { background: var(--apple-blue-hover); transform: scale(1.02); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.map-embed iframe { display: block; }

/* ============================================================
   FOOTER (Clean Luminous White)
   ============================================================ */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 60px 5% 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .logo-crown { font-size: 26px; }
.footer-name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); }
.footer-brand p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; max-width: 260px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong, .footer-contact strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  font-weight: 700;
}

.footer-links a, .footer-contact a {
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover, .footer-contact a:hover { color: var(--apple-blue); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12.5px; color: var(--text-tertiary); }

.admin-link {
  font-size: 12.5px;
  color: var(--text-secondary);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.admin-link:hover { color: var(--apple-blue); border-color: var(--apple-blue); }

/* ============================================================
   APPLE-GRADE MICRO-ANIMATIONS & REVEALS
   ============================================================ */
@keyframes appleFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes appleBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* Staggered Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s var(--ease-apple), transform 0.8s var(--ease-apple);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   RESPONSIVE
.checker-result-box {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  animation: appleFadeUp 0.35s var(--ease-apple);
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  color: var(--apple-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s var(--ease-apple);
  z-index: 990;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--apple-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.3);
}

.scroll-top-btn:active {
  transform: scale(0.92);
}

/* Mobile Nav Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-apple);
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Floating Quick-Access Dock */
.mobile-quick-dock {
  display: none;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 90px;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-apple), opacity 0.35s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .mobile-only-staff { 
    display: block; 
    border-top: 1px solid var(--border); 
    padding-top: 12px; 
    margin-top: 6px; 
  }
  
  .nav-actions .btn-staff-nav { display: none; }
  .nav-actions .btn-call { padding: 6px 14px; font-size: 12.5px; }

  .hamburger { 
    display: flex;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(0,0,0,0.03);
  }

  .hamburger span {
    transition: all 0.25s var(--ease-apple);
    width: 18px;
    height: 2px;
    background: var(--text-primary);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-content { padding: 40px 5% 36px; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 15px; }
  .hero-ctas { flex-direction: column; gap: 12px; width: 100%; }
  .hero-ctas .btn-primary-lg, .hero-ctas .btn-outline-lg { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 24px; }
  .warranty-banner { flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; }
  .warranty-cards { flex-wrap: wrap; width: 100%; }
  .wc { flex: 1; min-width: 120px; }
  .hero-stats { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .hstat { min-width: 42%; text-align: center; }
  .hstat-divider { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  
  .checker-card { padding: 22px 18px; }
  .checker-input-row { flex-direction: column; gap: 10px; }
  .checker-input { padding: 14px 18px; font-size: 15px; min-height: 48px; }
  .checker-btn { padding: 14px; min-height: 48px; width: 100%; justify-content: center; }

  /* Mobile Quick Action Floating Dock (iOS Native App Style) */
  .mobile-quick-dock {
    display: flex;
    position: fixed;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 6px 4px;
    justify-content: space-around;
    align-items: center;
    animation: appleFadeUp 0.4s var(--ease-apple);
  }

  .dock-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 1;
    padding: 6px 2px;
    border-radius: 16px;
    transition: all 0.2s var(--ease-apple);
    color: var(--text-primary);
    min-height: 46px;
    -webkit-tap-highlight-color: transparent;
  }

  .dock-btn:active {
    transform: scale(0.92);
    background: rgba(0, 113, 227, 0.08);
  }

  .dock-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    transition: transform 0.2s var(--ease-apple);
  }

  .dock-btn-call .dock-icon-circle {
    background: #e8f4fd;
    color: #0071e3;
  }

  .dock-btn-wa .dock-icon-circle {
    background: #e8f8ed;
    color: #25d366;
  }

  .dock-btn-warranty .dock-icon-circle {
    background: #fff4e5;
    color: #ff9500;
  }

  .dock-btn-maps .dock-icon-circle {
    background: #f0edfe;
    color: #5856d6;
  }

  .dock-btn-login .dock-icon-circle {
    background: #f5f5f7;
    color: #1d1d1f;
  }

  .dock-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
  }

  .scroll-top-btn {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: var(--bg-canvas); }
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.25); }
