/* Look'as Service — Custom CSS */
:root {
  --navy: #0f2f5a;
  --navy-dark: #0a1f3d;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --cream: #fef9f0;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-900: #111827;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--navy);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--navy); color: white; }

.btn-call {
  background: white;
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-call:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.hero-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
}

.hero-pattern {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(249,115,22,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249,115,22,0.05) 0%, transparent 50%);
}

.card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s;
  border: 1px solid var(--gray-100);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}

.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.container-x { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; }

footer { background: var(--navy-dark); color: white; }
footer a { color: #cbd5e1; transition: color 0.2s; }
footer a:hover { color: var(--orange); }

.review-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stars { color: #fbbf24; }

.area-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin: 4px;
  transition: all 0.2s;
}
.area-pill:hover { background: var(--orange); color: white; }

.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
}
.faq-answer {
  margin-top: 12px;
  color: var(--gray-600);
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-question::after {
  content: '+';
  font-size: 24px;
  transition: transform 0.2s;
  color: var(--orange);
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  h1 { font-size: 36px !important; }
  h2 { font-size: 28px !important; }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* Mobile sticky call bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  z-index: 50;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  display: none;
}
@media (max-width: 768px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
}
