:root {
  --navy: #10233d;
  --navy-light: #17324f;
  --yellow: #f5b800;
  --yellow-dark: #d99f00;
  --text: #1c2b3a;
  --text-light: #5a6b7b;
  --bg-alt: #f5f7fa;
  --border: #e2e8ee;
  --radius: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 28px;
  background: var(--navy);
  color: var(--yellow);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-title { font-weight: 700; font-size: 18px; color: var(--navy); }
.logo-sub { font-size: 12px; color: var(--text-light); }

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:hover { color: var(--yellow-dark); }

.btn {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-call { background: var(--yellow); color: var(--navy); white-space: nowrap; }
.btn-call:hover { background: var(--yellow-dark); }

.btn-primary { background: var(--yellow); color: var(--navy); }
.btn-primary:hover { background: var(--yellow-dark); }

.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-light); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 64px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(245,184,0,0.15);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 16px;
  color: #c9d4de;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #c9d4de;
}

.hero-points li::before { content: "✓ "; color: var(--yellow); font-weight: 700; }

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: 30px;
  text-align: center;
  margin: 0 0 10px;
  color: var(--navy);
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  margin: 0 0 40px;
  font-size: 15px;
}

.example-tag {
  color: #b56a00;
  background: #fff3cd;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}
.section-sub.example-tag { display: block; width: fit-content; margin: 0 auto 40px; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 12px 30px rgba(16,35,61,0.1);
  transform: translateY(-3px);
}

.card-icon { font-size: 30px; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); }
.card p { margin: 0; color: var(--text-light); font-size: 14px; }

/* Zone */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.zone-list h3 { color: var(--navy); margin: 18px 0 6px; }
.zone-list h3:first-child { margin-top: 0; }
.zone-list p { color: var(--text-light); margin: 0; }

.map-placeholder {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 60px 30px;
  text-align: center;
}

.map-pin { font-size: 40px; margin-bottom: 10px; }
.map-note { color: #c9d4de; font-size: 13px; margin-top: 8px; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery img { width: 100%; height: 260px; object-fit: cover; }

.gallery figcaption {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-light);
  background: #fff;
}

.chantier-title {
  margin: 44px 0 20px;
  font-size: 20px;
  color: var(--navy);
  text-align: center;
}

.chantier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}

.chantier-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* Pricing */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}

.rate-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.rate-icon { font-size: 32px; margin-bottom: 12px; }

.rate-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

.rate-value span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
}

.rate-label {
  margin-top: 6px;
  font-size: 15px;
  color: var(--text-light);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 18px;
  font-style: italic;
}

/* Google Business Profile card */
.gbp-card {
  max-width: 560px;
  margin: 0 auto 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(16,35,61,0.08);
}

.gbp-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.gbp-logo {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}

.gbp-name { font-weight: 700; font-size: 17px; color: var(--navy); }
.gbp-category { font-size: 13px; color: var(--text-light); }
.gbp-rating { font-size: 14px; margin-top: 4px; }
.gbp-count { color: var(--text-light); }
.stars { color: var(--yellow-dark); letter-spacing: 1px; }

.gbp-info {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

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

.review-card p { font-size: 14px; color: var(--text); margin: 10px 0; }
.review-author { font-size: 13px; color: var(--text-light); font-weight: 600; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-label { font-size: 13px; color: var(--text-light); }
.contact-value { display: block; font-size: 16px; font-weight: 600; color: var(--navy); text-decoration: none; }
.contact-value-secondary { font-size: 14px; font-weight: 500; color: var(--text-light); margin-top: 2px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.contact-form h3 { margin-top: 0; color: var(--navy); }

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}

.contact-form button { width: 100%; margin-top: 6px; padding: 13px; font-size: 15px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #c9d4de;
  padding: 28px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-fb-link { color: #c9d4de; text-decoration: none; }
.footer-fb-link:hover { color: var(--yellow); text-decoration: underline; }

.footer-note { color: #8b9aad; line-height: 1.6; }
.footer-note a { color: var(--yellow); text-decoration: none; }
.footer-note a:hover { text-decoration: underline; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 30px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .rates-grid { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; }
}
