@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --line: #dbe3ef;
  --text: #101828;
  --muted: #667085;
  --accent: #1366ff;
  --accent-strong: #0b4fcc;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; border: none; background: none; cursor: pointer; }

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.3vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.45rem); }
h3 { font-size: 1.2rem; }

.hidden { display: none !important; }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

/* Header */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 56px; height: auto; object-fit: contain; }
.logo-text { font-size: 1.25rem; font-weight: 700; color: #0f172a; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #475467;
}

.desktop-nav a { font-weight: 500; transition: color 0.2s; }
.desktop-nav a:hover { color: var(--accent); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 16px;
}

.menu-toggle { display: none; color: #111827; padding: 6px; }
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 12px 22px 18px;
}

.mobile-nav a {
  display: block;
  padding: 8px 0;
  color: #475467;
  font-weight: 600;
}

/* Shared */
.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title p {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title h2 {
  max-width: 760px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 10px 24px rgba(19, 102, 255, 0.3);
}

.btn-secondary {
  border: 1px solid #c8d8f7;
  background: #f5f9ff;
  color: #0b4fcc;
}

.btn:hover { transform: translateY(-1px); }

/* Hero */
.hero {
  padding: 124px 0 76px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 3.2vw, 34px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-copy p {
  color: var(--muted);
  max-width: 560px;
}

.hero-buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
}

.hero-stats article {
  background: #f8fbff;
  border: 1px solid #dbe8ff;
  border-radius: 12px;
  padding: 10px 12px;
}

.hero-stats strong {
  display: block;
  color: #0f172a;
  font-size: 1.04rem;
}

.hero-stats span {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-media { position: relative; }

.hero-image {
  height: 540px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid #d6deeb;
  box-shadow: 0 20px 36px rgba(16, 24, 40, 0.12);
}

.location-chip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #d6dfef;
  border-radius: 12px;
  padding: 12px 14px;
}

.location-chip p { color: #344054; margin-bottom: 4px; }
.location-chip a { color: var(--accent); font-weight: 700; }

/* Sections */
.services,
.reviews,
.gallery,
.footer-cta {
  padding: 84px 0;
}

.services { background: #edf2f8; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews { background: #fff; }
.gallery { background: #f2f5fa; border-top: 1px solid var(--line); }
.footer-cta {
  padding: 56px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ecf1f9 100%);
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}

.service h3 { margin-bottom: 7px; }
.service p { color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.review-text { color: #475467; }
.review-name { margin-top: 8px; color: var(--accent-strong); font-weight: 700; font-size: 0.86rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7dfec;
  background: #fff;
}

.gallery-item img {
  min-height: 170px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.footer-layout {
  display: block;
}

.map-card iframe {
  border: 1px solid #d7dfec;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.11);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(17, 24, 39, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  right: 14px;
  top: 14px;
  color: #f8fafc;
  font-size: 38px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(17, 24, 39, 0.7);
  color: #ffffff;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-nav:hover {
  background: rgba(17, 24, 39, 0.9);
}

/* Responsive */
@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .logo-text { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-image { height: 430px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .hero { padding-top: 112px; }
  .hero-stats,
  .service-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .hero-image { height: 320px; }
  .location-chip { position: static; margin-top: 10px; }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
