/* ================================
   ASAP MECHANIC – CUSTOM STYLES
   ================================ */

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f3fafc;
  color: #123047;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* VARIABLES */
:root {
  --teal: #005f73;
  --teal-dark: #004355;
  --teal-soft: #0a6f80;
  --bg-light: #f3fafc;
  --bg-card: #00505f;
  --accent: #f4a261;
  --white: #ffffff;
  --text-muted: #5a7184;
}

/* CONTAINER */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 95, 115, 0.35);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--teal);
  border-color: rgba(0, 95, 115, 0.25);
}

.btn-outline:hover {
  background: #e9f4f6;
}

/* PILLS */
.pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pill-accent {
  background: #ffe8cc;
  color: #b35b00;
}

.pill-muted {
  background: #e0f1f5;
  color: #0b4d5e;
}

/* HEADINGS */
h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
}

h3 {
  font-size: 1.1rem;
}

.accent {
  color: var(--teal-soft);
}

/* HERO */
.hero {
  background: linear-gradient(180deg, #e3f4f8 0%, #f3fafc 100%);
  padding: 3.5rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-subtitle {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  max-width: 560px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.badge {
  background: var(--white);
  padding: 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* HERO IMAGE */
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  background: radial-gradient(circle at top, #0b8793, #360033);
  position: relative;
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.3);
}

.hero-image-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #ffffff;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-size: 0.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ABOUT */
.about-section {
  padding: 3.5rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: linear-gradient(135deg, #f87171, #fb923c);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.bubble {
  position: absolute;
  top: 12%;
  right: 8%;
  background: var(--accent);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(244, 162, 97, 0.6);
}

/* SERVICES */
.services-section {
  padding: 3.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--bg-card);
  color: white;
  padding: 1.4rem;
  border-radius: 18px;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.3);
}

.service-card ul li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.9rem;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

/* PRICING */
.pricing-section {
  padding: 3.5rem 0;
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pricing-card {
  background: var(--bg-card);
  color: white;
  padding: 1.6rem;
  border-radius: 22px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
}

.pricing-card ul li {
  padding-left: 1rem;
  position: relative;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

/* CTA */
.cta-section {
  background: #004a5a;
  color: white;
  padding: 3.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.contact-card {
  background: #016779;
  padding: 1.4rem;
  border-radius: 18px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.35);
}

/* FOOTER */
.site-footer {
  background: #00313c;
  color: #b8cfd5;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner,
  .about-inner,
  .pricing-inner {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }


}

/* Keep Storefront header, but remove Storefront spacing around our template */
.page-template-page-asap-home .site-main,
.page-template-page-asap-home .content-area,
.page-template-page-asap-home .site-content,
.page-template-page-asap-home #primary,
.page-template-page-asap-home #main {
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide the page title area Storefront sometimes injects */
.page-template-page-asap-home .entry-header,
.page-template-page-asap-home header.entry-header,
.page-template-page-asap-home .page-header {
  display: none !important;
}

/* Let our sections go full-width while keeping nice inner container */
.page-template-page-asap-home .col-full {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Fix the big gap above the hero */
.page-template-page-asap-home .hero {
  margin-top: 0 !important;
  padding-top: 3.5rem !important;
}

/* Make CTA section text always readable */
.page-template-page-asap-home .cta-section h2,
.page-template-page-asap-home .cta-section h3,
.page-template-page-asap-home .cta-section p,
.page-template-page-asap-home .cta-section a {
  color: #fff !important;
}

