/* Masboy Service AC — Landing Page Styles
   Mobile-first, AC-themed (cool blues) */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
img { font-style: italic; }

a { color: #0284c7; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0 0 0 1.25rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0284c7;
  background: #e0f2fe;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: #475569;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-wa {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}
.btn-wa:hover {
  background: #059669;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-ghost {
  background: transparent;
  color: #0284c7;
  border-color: #0284c7;
}
.btn-ghost:hover {
  background: #0284c7;
  color: #ffffff;
  text-decoration: none;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #e2e8f0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.125rem;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.5rem;
  color: #0284c7;
}
.logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-tag { font-size: 0.6875rem; font-weight: 500; color: #64748b; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: none;
  margin-left: auto;
  gap: 1.5rem;
}
.nav-links a {
  color: #334155;
  font-weight: 500;
  font-size: 0.9375rem;
}
.nav-links a:hover { color: #0284c7; text-decoration: none; }

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.75rem;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { color: #0f172a; font-weight: 500; padding: 0.5rem 0; }
.mobile-menu .btn { margin-top: 0.5rem; }

/* Promo banner (image-based, clickable to WA) */
.promo-banner {
  position: relative;
  background: #000000;
  z-index: 90;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.promo-banner[hidden] { display: none; }

.promo-banner-link {
  display: block;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.promo-banner-link:hover { opacity: 0.92; }
.promo-banner-link:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: -2px;
}

.promo-banner-link img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.promo-banner-close {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s ease;
}
.promo-banner-close:hover { background: rgba(0, 0, 0, 0.9); }
.promo-banner-close:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

/* On larger screens cap height so banner doesn't take over viewport */
@media (min-width: 768px) {
  .promo-banner-link img {
    height: 150px;
    object-fit: cover;
    object-position: center;
  }
  .promo-banner-close { right: 1rem; }
}

@media (min-width: 1280px) {
  .promo-banner-link img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .promo-banner-close { width: 28px; height: 28px; font-size: 1.125rem; right: 0.375rem; }
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  background:
    radial-gradient(circle at 100% 0%, #e0f2fe 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, #f0f9ff 0%, transparent 50%),
    #ffffff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-content { max-width: 640px; }
.hero h1 { margin-bottom: 1rem; }
.hero h1 .hl {
  background: linear-gradient(135deg, #0284c7, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 1.75rem;
}
.hero-sub strong { color: #0f172a; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.hero-badges li {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
}
.hero-badges strong {
  color: #0284c7;
  font-size: 1rem;
  font-weight: 700;
}
.hero-badges span {
  color: #64748b;
  font-size: 0.8125rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  background: #e0f2fe;
  aspect-ratio: 3 / 2;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  border: 1px solid #e2e8f0;
}
.hero-card strong { display: block; color: #0f172a; }
.hero-card span { color: #64748b; font-size: 0.75rem; }
.hero-card .check {
  background: #dcfce7;
  color: #16a34a;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-card-trust {
  bottom: 1rem;
  left: -0.5rem;
}
.hero-card-rating {
  top: 1rem;
  right: -0.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-card-rating strong { color: #0284c7; font-size: 1.125rem; }

/* Trust bar */
.trust-bar {
  padding: 2rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.trust-bar p {
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
  margin: 0 0 1rem;
  font-weight: 500;
}
.brand-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  font-weight: 600;
  color: #475569;
  font-size: 0.9375rem;
}

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: #f8fafc; }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 { margin-bottom: 0.75rem; }
.section-head .lead { margin-top: 0.5rem; }

/* Services */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(2, 132, 199, 0.18);
  border-color: #bae6fd;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-card h3 { margin-bottom: 0.5rem; color: #0f172a; }
.service-card p { color: #475569; font-size: 0.9375rem; margin-bottom: 1rem; }

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}
.service-price span { color: #64748b; font-size: 0.8125rem; }
.service-price strong { color: #0284c7; font-size: 1.25rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #0284c7;
  font-size: 0.9375rem;
}
.service-link:hover { color: #075985; text-decoration: none; }

/* Why */
.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.why-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}
.why-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.why-item h3 { color: #0f172a; margin-bottom: 0.5rem; }
.why-item p { color: #475569; font-size: 0.9375rem; margin: 0; }

/* Process */
.process {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.process li {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #06b6d4);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.process h3 { margin-bottom: 0.375rem; color: #0f172a; }
.process p { color: #475569; font-size: 0.9375rem; margin: 0; }

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.about-img {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.2);
  aspect-ratio: 3 / 2;
  background: #e0f2fe;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: #475569; }
.about-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #0f172a;
  font-weight: 500;
}
.about-list span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Coverage */
.coverage-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.coverage-region {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
}
.coverage-region.primary {
  border-color: #bae6fd;
  background: linear-gradient(180deg, #f0f9ff, #ffffff);
}

.coverage-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0284c7;
  background: #e0f2fe;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.coverage-region h3 { color: #0f172a; margin-bottom: 0.75rem; }
.coverage-region ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem 1rem;
  color: #475569;
  font-size: 0.9375rem;
}

.coverage-note {
  text-align: center;
  color: #64748b;
  margin-top: 2rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0;
  transition: border-color 0.2s ease;
}
.faq-list details[open] {
  border-color: #bae6fd;
  box-shadow: 0 4px 12px -4px rgba(2, 132, 199, 0.12);
}

.faq-list summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #0284c7;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: "−"; }

.faq-body { padding: 0 1.25rem 1.25rem; color: #475569; }
.faq-body p { margin: 0; }

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0c4a6e, #075985);
  color: #ffffff;
}
.final-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.final-cta p {
  font-size: 1.125rem;
  color: #bae6fd;
  margin-bottom: 1.75rem;
}
.final-cta .btn-wa {
  background: #ffffff;
  color: #075985;
}
.final-cta .btn-wa:hover {
  background: #f0f9ff;
  color: #0c4a6e;
}
.final-cta-sub {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #bae6fd;
}
.final-cta-sub a { color: #ffffff; font-weight: 600; }

/* Footer */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
}
.site-footer .logo { color: #ffffff; margin-bottom: 1rem; }
.site-footer .logo-tag { color: #94a3b8; }

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.site-footer a { color: #cbd5e1; font-size: 0.9375rem; }
.site-footer a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
}
.footer-bottom p { margin: 0; font-size: 0.875rem; color: #94a3b8; }
.footer-fine { margin-top: 0.5rem; font-size: 0.8125rem; color: #64748b; }

/* Responsive */
@media (min-width: 640px) {
  .hero-badges { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .mobile-menu { display: none !important; }

  .hero { padding: 5rem 0 6rem; }
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}