:root {
  --bg-page: #f9fafb;
  --bg-hero: #0b1120;
  --bg-surface: #ffffff;
  --border-soft: #e5e7eb;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-soft: #fef3c7;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #fef3c7, #92400e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Nav links */

nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.7);
  border-radius: 0.5rem;
  color: #e5e7eb;
  padding: 0.3rem 0.5rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.nav-links a {
  color: #e5e7eb;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(249, 250, 251, 0.08);
  color: #fefce8;
}

.nav-cta {
  background: var(--accent);
  color: #111827;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-hover);
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, #1f2937, var(--bg-hero));
  color: #f9fafb;
  padding: 4.5rem 1.25rem 3.5rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 250, 251, 0.16);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3.2rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 32rem;
  color: #e5e7eb;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.hero-pill {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.75);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #111827;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(249, 250, 251, 0.3);
  color: #f9fafb;
}

.btn-outline:hover {
  background: rgba(249, 250, 251, 0.1);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.hero-meta strong {
  display: block;
  font-size: 0.9rem;
  color: #f9fafb;
}

.hero-right {
  position: relative;
}

.hero-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.hero-photo {
  border-radius: 14px;
aspect-ratio: 2 / 1;      
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.6);
  height: 120px;
  object-fit: cover;
}

.hero-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.stars {
  color: #fbbf24;
  letter-spacing: 0.05em;
}

.hero-rating-text {
  font-size: 0.8rem;
}

.badge-google {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
}

.hero-card-footer {
  margin-top: 0.6rem;
  font-size: 0.74rem;
  color: #9ca3af;
}

/* SECTIONS */

main {
  flex: 1;
}

section {
  padding: 3rem 1.25rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: #eef2ff;
  color: #1e293b;
  border: 1px solid #c7d2fe;
}

.about-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
}

.about-list {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.1rem;
}

.about-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.7rem;
}

.about-stat {
  flex: 1;
}

.about-stat strong {
  display: block;
  font-size: 1.1rem;
}

/* SERVICES */

/* === SERVICES CAROUSEL === */

.services-carousel {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-soft);
  padding: 1.5rem 3.5rem;
  overflow: hidden;
}

/* Ensure viewport + track behave predictably */
.services-carousel-viewport {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
}

.services-carousel-track {
  display: flex;
  padding: 0;
  margin: 0;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Reset figure default margins for carousel */
.services-slide {
  flex: 0 0 100%;           /* exactly one full-width slide */
  min-width: 100%;
  margin: 0;                /* <-- kills the default figure margin */
  display: flex;
  flex-direction: column;
  background: #000;
}

/* If you want to be extra safe globally: */
figure {
  margin: 0;
}

/* Image stays centered & fills the slide */
.services-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;     /* or 4/3 if you prefer */
  object-fit: cover;        /* crop evenly from sides to stay centered */
  display: block;
}

.services-slide figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: #f9fafb;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.4),
    rgba(15, 23, 42, 0.9)
  );
}

/* Arrows */

.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.services-arrow:hover {
  background: #020617;
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.55);
}

.services-arrow-prev {
  left: 1rem;
}

.services-arrow-next {
  right: 1rem;
}

/* Dots */

.services-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.services-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}

.services-dot.is-active {
  background: var(--accent);
  width: 18px;
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .services-carousel {
    padding: 1rem 2.5rem;
  }
}

@media (max-width: 640px) {
  .services-carousel {
    padding: 0.9rem 1.25rem 1.1rem;
  }

  .services-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }

  .services-arrow-prev {
    left: 0.4rem;
  }

  .services-arrow-next {
    right: 0.4rem;
  }

  .services-slide img {
    aspect-ratio: 4 / 3; /* a bit taller on mobile */
  }
}



/* REVIEWS */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.review {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.reviewer {
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.reviewer span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8rem;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.faq-item h3 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
}

.seo-copy {
  font-size: 0.87rem;
  color: var(--text-muted);
  background: #f3f4f6;
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
}

form {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.field {
  margin-bottom: 0.9rem;
  flex: 1;
  min-width: 140px;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
  color: var(--text-muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.55rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background-color: #f9fafb;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.4);
  background-color: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-meta {
  font-size: 0.9rem;
}

.contact-meta-item {
  margin-bottom: 0.75rem;
}

.contact-meta strong {
  display: block;
}

.contact-meta a {
  color: var(--accent-hover);
  font-weight: 600;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-placeholder {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  border: 1px dashed #d1d5db;
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #fefce8;
}

/* Responsive map wrapper */
.map-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio; adjust if you want it taller */
  margin-top: 0.5rem;
}

/* Make iframe fill the wrapper on all screens */
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* FOOTER */

footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.4rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #f9fafb;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-style: dotted;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .cards-grid,
  .reviews-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-right {
    order: -1;
  }

  .cards-grid,
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 54px;
    right: 16px;
    background: rgba(15, 23, 42, 0.97);
    border-radius: 0.75rem;
    padding: 0.75rem 0.9rem;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 180px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: none;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
