/* ----------------------------------------------------------
   Base
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout helpers */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #fafafa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-intro {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}
/* ----------------------------------------------------------
   Topbar
---------------------------------------------------------- */
.topbar {
  background: #f5f5f5;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #444;
  display: flex;
  justify-content: center;
  gap: 20px;
  -webkit-font-smoothing: antialiased;
}

.topbar a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.topbar a:hover {
  color: #005fa3;
}

/* ----------------------------------------------------------
   Header
---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.logo-main {
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.logo-sub {
  margin-top: 2px;
  font-size: 0.82rem;
  color: #666;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ----------------------------------------------------------
   Navigation
---------------------------------------------------------- */
.nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-link.active {
  color: #0077cc;
  opacity: 1;
}

.nav-link:not(.active) {
  opacity: 0.55;
}

/* ----------------------------------------------------------
   Hamburger
---------------------------------------------------------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------------------------
   Hero
---------------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 15px 0;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  color: #555;
  margin-bottom: 25px;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: #0077cc;
  color: #fff;
}

.btn-primary:hover {
  background: #005fa3;
}

.btn-ghost {
  border: 1px solid #0077cc;
  color: #0077cc;
}

.btn-ghost:hover {
  border-color: #005fa3;
  color: #005fa3;
}

/* Hero image wrapper */
.hero-image-wrapper {
  overflow: hidden;
  max-width: 100%;
  border-radius: 12px;
  min-height: 320px; /* stable height on desktop */
}

/* Premium hero zoom */
.hero-image {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  opacity: 0;
  transition: transform 1.2s ease-out, opacity 1.2s ease-out;
  will-change: transform, opacity;
}

.hero-image-visible {
  transform: scale(1);
  opacity: 1;
}

/* Actual image */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fade on scroll */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   Mobile (≤600px) — stack hero vertically
---------------------------------------------------------- */
@media (max-width: 600px) {

  .hero-inner {
    grid-template-columns: 1fr; /* stack */
    gap: 35px;
  }

  .hero-text {
    order: 1;
  }

  .hero-image-wrapper {
    order: 2;
    min-height: 240px; /* stable mobile height */
    border-radius: 10px;
  }

  .hero-image img {
    transform: none; /* no zoom on mobile */
  }

  .hero-text h1 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    max-width: 260px;
  }
}


/* ----------------------------------------------------------
   Grids
---------------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.services-grid-4,
.testimonials-grid-6 {
  display: grid;
  gap: 30px;
}

.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.testimonials-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
/* ----------------------------------------------------------
   FIXED RESPONSIVE GRIDS (minimum 2 columns)
---------------------------------------------------------- */

/* Default desktop */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.testimonials-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* Tablets (≤900px) — collapse to 2 columns minimum */
@media (max-width: 900px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile (≤600px) — force minimum 2 columns */
@media (max-width: 600px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .testimonials-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* ----------------------------------------------------------
   Cards
---------------------------------------------------------- */
.service-card-img,
.testimonial-card-img {
  text-align: center;
}

.service-card-img img,
.testimonial-card-img img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  will-change: transform;
}

/* Optional subtle hover (desktop only) */
@media (hover: hover) {
  .service-card-img img:hover,
  .testimonial-card-img img:hover {
    transform: scale(1.02);
    transition: transform 0.35s ease;
  }
}
/* ----------------------------------------------------------
   Contact — Asymmetric Layout
---------------------------------------------------------- */
.contact-asym {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

/* Left column spacing */
.contact-left h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-left p + h3 {
  margin-top: 28px;
}

.contact-left p + p {
  margin-top: 10px;
}

/* Right column spacing */
.contact-right > * + * {
  margin-top: 32px;
}

/* Responsive images */
.contact-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

/* Parking info box */
.parking-info-strong {
  font-weight: 500;
  color: #333;
  background: #f3f7ff;
  padding: 12px 16px;
  border-left: 3px solid #0077cc;
  border-radius: 6px;
  line-height: 1.45;
  margin: 14px 0 10px;
}

/* Notes block */
.contact-notes-block {
  margin-top: 60px;
}

.contact-notes-block p + p {
  margin-top: 10px;
}

.contact-call-btn {
  margin-top: 22px;
  display: inline-block;
}

/* ----------------------------------------------------------
   Lightbox (Premium Fade-In)
---------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox[style*="display: flex"] {
  opacity: 1;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 95%;
  gap: 18px;
}

.lightbox img {
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
  display: block;
}

.lightbox-caption {
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  line-height: 1.4;
}

/* ----------------------------------------------------------
   Contact — Mobile (≤900px)
---------------------------------------------------------- */
@media (max-width: 900px) {
  .contact-asym {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ----------------------------------------------------------
   Contact — Asymmetric Layout
---------------------------------------------------------- */
.contact-asym {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

/* Left column spacing */
.contact-left h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-left p + h3 {
  margin-top: 28px;
}

.contact-left p + p {
  margin-top: 10px;
}

/* Right column spacing */
.contact-right > * + * {
  margin-top: 32px;
}

/* Responsive images */
.contact-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

/* Parking info box */
.parking-info-strong {
  font-weight: 500;
  color: #333;
  background: #f3f7ff;
  padding: 12px 16px;
  border-left: 3px solid #0077cc;
  border-radius: 6px;
  line-height: 1.45;
  margin: 14px 0 10px;
}

/* Notes block */
.contact-notes-block {
  margin-top: 60px;
}

.contact-notes-block p + p {
  margin-top: 10px;
}

.contact-call-btn {
  margin-top: 22px;
  display: inline-block;
}

/* ----------------------------------------------------------
   Lightbox (Premium Fade-In)
---------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox[style*="display: flex"] {
  opacity: 1;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 95%;
  gap: 18px;
}

.lightbox img {
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
  display: block;
}

.lightbox-caption {
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  line-height: 1.4;
}

/* ----------------------------------------------------------
   Contact — Mobile (≤900px)
---------------------------------------------------------- */
@media (max-width: 900px) {
  .contact-asym {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


