/* Base */
:root {
  --bg: #f7fafc;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #4b5563;
  --primary: #22c55e;
  --primary-600: #16a34a;
  --outline: #e5e7eb;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #e5e7eb;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.4px;
}
.brand img{ display:block; height:36px; width:auto }
.nav { display: flex; gap: 16px; }
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav a:hover { background: rgba(0,0,0,0.05); }

/* Mobile nav */
.nav-toggle{ display:none; background:#ffffff; border:1px solid #e5e7eb; padding:8px 10px; border-radius:10px; box-shadow:0 1px 2px rgba(0,0,0,.04) }
.nav-toggle span{ display:block; width:20px; height:2px; background:#1f2937; position:relative }
.nav-toggle span::before, .nav-toggle span::after{ content:""; position:absolute; left:0; width:20px; height:2px; background:#1f2937 }
.nav-toggle span::before{ top:-6px }
.nav-toggle span::after{ top:6px }

@media (max-width: 860px){
  .header-inner{ gap:10px }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center }
  .nav{ position:absolute; top:60px; right:4%; left:4%; display:none; flex-direction:column; background:#ffffff; border:1px solid #e5e7eb; border-radius:12px; padding:8px; box-shadow:0 10px 30px rgba(0,0,0,.12) }
  .nav.open{ display:flex }
  .nav a{ padding:12px; background:transparent }
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('./images/boya.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 30%, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.9) 100%),
              linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.8));
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 80px 0;
}
.hero-badge{
  display:inline-block;
  margin-bottom:12px;
  padding:6px 10px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  color:#111827;
  font-weight:600;
  box-shadow:0 1px 2px rgba(0,0,0,0.04);
}
@media (min-width: 1024px){
  .hero-badge{ padding:8px 14px; margin-bottom:16px; white-space:nowrap; font-size:14px }
}
.hero h1 { font-size: clamp(28px, 5vw, 48px); margin: 0 0 12px; }
.subtitle { color: var(--muted); font-size: clamp(16px, 2.4vw, 18px); margin: 0 0 24px; }

.hero-title-badge{ display:inline-block; padding:14px 16px; border-radius:16px; background: rgba(255,255,255,0.85); border:1px solid #e5e7eb; box-shadow:0 8px 24px rgba(0,0,0,.08); backdrop-filter: blur(4px); margin-bottom:12px }
.hero-title-badge h1{ margin:0 0 6px; }
.hero-title-badge .subtitle{ margin:0 }

.hero-features{display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin:0 0 18px; padding:0; list-style:none}
.hero-features li{display:flex; align-items:center; gap:8px; background:#ffffff; border:1px solid #e5e7eb; color:#1f2937; padding:8px 12px; border-radius:10px; box-shadow:0 1px 2px rgba(0,0,0,.04)}
.hero-features .icon{color:var(--primary); font-weight:800}

.hero-stats{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:10px; margin-top:18px}
@media (max-width: 720px){ .hero-stats{grid-template-columns:1fr 1fr} }
@media (max-width: 420px){ .hero-stats{grid-template-columns:1fr} }
.stat{background:#ffffff; border:1px solid #e5e7eb; border-radius:12px; padding:12px; box-shadow:0 1px 2px rgba(0,0,0,.04)}
.stat-top{font-weight:700; color:#111827}
.stat-sub{color:var(--muted); font-size:14px}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn.primary {
  background: var(--primary);
  color: #06200f;
}
.btn.primary:hover { background: var(--primary-600); }
.btn.outline {
  background: #ffffff;
  color: var(--text);
  border-color: #e5e7eb;
}
.btn.outline:hover { background: #f3f4f6; }
.cta-group { display: inline-flex; gap: 12px; }

/* Sections */
.section { padding: 72px 0; }
.section h2 { font-size: clamp(22px, 3.6vw, 32px); margin: 0 0 20px; }
.about .about-grid,
.services .services-grid,
.gallery .gallery-grid,
.contact .contact-grid {
  display: grid;
  gap: 16px;
}

/* About */
.about-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.about-card {
  background: var(--card);
  border: 1px solid #edf2f7;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.about-card h3 { margin: 0 0 8px; font-size: 18px; }
.about-card p { margin: 0; color: var(--muted); }

/* Services */
.services-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service-card {
  background: var(--card);
  border: 1px solid #edf2f7;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.service-card h3 { margin: 0 0 8px; font-size: 18px; }
.service-card p { margin: 0; color: var(--muted); }

/* Gallery */
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gallery-item { background: var(--card); border-radius: 14px; overflow: hidden; border: 1px solid #edf2f7; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.gallery-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.gallery-item figcaption { padding: 10px 12px; color: var(--muted); font-size: 14px; }

/* Contact */
.contact-grid { grid-template-columns: 1.1fr 1.5fr; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info li { margin-bottom: 10px; color: var(--muted); }
.contact-info a { color: var(--text); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.contact-form {
  background: var(--card);
  border: 1px solid #edf2f7;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-size: 14px; color: var(--text); }
input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--outline);
  background: #ffffff;
  color: var(--text);
}
input:focus, textarea:focus { outline: 2px solid rgba(34,197,94,0.4); border-color: var(--primary); }
.form-actions { margin-top: 10px; }

/* Footer */
.site-footer { border-top: 1px solid #e5e7eb; margin-top: 32px; background: #ffffff; }
.footer-inner { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding: 24px 0; }
.footer-contact, .footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-contact a, .footer-social a { color: var(--muted); text-decoration: none; }
.footer-contact a:hover, .footer-social a:hover { color: var(--text); }
.footer-bottom { padding: 8px 0 24px; color: var(--muted); }

/* Pricing */
.pricing .pricing-sub{ color: var(--muted); margin: 0 0 16px }
.pricing-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px }
@media (max-width: 900px){ .pricing-grid{ grid-template-columns: 1fr 1fr } }
@media (max-width: 560px){ .pricing-grid{ grid-template-columns: 1fr } }
.price-card{ background: var(--card); border: 1px solid #edf2f7; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.06) }
.price-card .price-head{ padding: 16px; border-bottom: 1px solid #edf2f7; display:flex; align-items:center; justify-content:space-between }
.price-card .price-head h3{ margin:0; font-size: 20px }
.price-card .chip{ background: #e8f9ef; color: #166534; border: 1px solid #bbf7d0; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight:700 }
.price-card .price-body{ padding: 16px }
.price-row{ display:flex; align-items:center; justify-content:space-between; padding: 10px 12px; border:1px solid #edf2f7; border-radius: 12px; background:#ffffff; margin-bottom:10px }
.price-row span{ color: var(--muted) }
.price-row strong{ color: #111827 }
.price-card.highlighted{ border-color: #bbf7d0; box-shadow: 0 10px 28px rgba(34,197,94,.15) }
.pricing-note{ margin-top: 10px; background: #ffffff; border: 1px solid #edf2f7; padding: 12px 14px; border-radius: 12px }
.pricing-note ul{ margin:0; padding-left: 16px; color: var(--muted) }

/* Contact modern */
.contact-modern{ margin-top: 8px }
.contact-columns{ display:grid; grid-template-columns: 1.2fr 1.5fr; gap: 16px }
@media (max-width: 900px){ .contact-columns{ grid-template-columns: 1fr } }
.contact-cta{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-bottom: 12px }
@media (max-width: 640px){ .contact-cta{ grid-template-columns: 1fr 1fr } }
.cta-card{ display:flex; gap:10px; align-items:center; padding:12px; border:1px solid #edf2f7; border-radius:12px; background:#ffffff; text-decoration:none; color:#111827; box-shadow:0 1px 2px rgba(0,0,0,.04) }
.cta-card:hover{ background:#f8fafc }
.cta-icon{ font-size:18px }
.cta-text strong{ display:block; font-size:14px }
.cta-text span{ color: var(--muted); font-size:13px }
.contact-card{ background:#ffffff; border:1px solid #edf2f7; border-radius:14px; padding:14px; box-shadow:0 1px 2px rgba(0,0,0,.04) }
.contact-card h3{ margin:0 0 8px }
.contact-card .muted{ color: var(--muted); margin:8px 0 0 }
