/* Increase size of service description images in hero-grid */
.hero-grid img {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
/* Base Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; }
body { color: #1f1f1f; background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.3; letter-spacing: 0.2px; }
p { margin-top: 0; }

:root {
  --primary: #c8102e;
  --primary-dark: #9f0d25;
  --light: #fff5f7;
  --text: #1f1f1f;
  --muted: #6c6c6c;
  --border: #ececec;
  --max-width: 1200px;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* Header / Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.top-strip {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  gap: 1rem;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo img {
  width: 150px;
  height: 60px;
  object-fit: cover;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.5rem 0.65rem;
  font-size: 1rem;
  border-radius: 6px;
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  color: var(--text);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.nav-links > li > a:hover,
.dropdown-toggle:hover,
.nav-links > li > a.active {
  background: var(--light);
  color: var(--primary);
}

.submenu {
  list-style: none;
  position: absolute;
  top: 105%;
  left: 0;
  min-width: 255px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  margin: 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: none;
}

.submenu li a {
  display: block;
  padding: 0.6rem;
  border-radius: 6px;
  font-size: 0.93rem;
}

.submenu li a:hover,
.submenu li a.active {
  background: var(--light);
  color: var(--primary);
}

.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu,
.has-dropdown.open .submenu {
  display: block;
}

.cta-btn {
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover { background: var(--primary-dark); }
.cta-btn:active { transform: translateY(1px); }

/* Sections */
.section { padding: 3.5rem 0; }
.section.alt { background: #fafafa; }
.section-title { margin: 0 0 1rem; font-size: 2rem; color: #111; }
.section-subtitle { margin: 0 0 1.5rem; color: var(--muted); max-width: 760px; }
.section ul { margin: 0.35rem 0 1rem; padding-left: 1.1rem; }
.section li { margin-bottom: 0.35rem; }

.hero {
  background: linear-gradient(120deg, #fff, #ffe6eb);
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.25;
}

.hero p { margin: 0 0 1.2rem; color: #404040; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.58rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.card-body { padding: 1rem; }
.card h3 { margin: 0 0 0.5rem; font-size: 1.12rem; }
.card p { margin: 0 0 0.75rem; color: #555; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  background: #fff;
  text-align: center;
}

.stat-box strong {
  display: block;
  color: var(--primary);
  font-size: 1.3rem;
}

.contact-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 2rem 1rem;
}

.contact-cta .cta-btn {
  background: #fff;
  color: var(--primary);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: span 2; }
label { font-weight: 600; }
input, select, textarea {
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  padding: 0.7rem;
  font: inherit;
}

textarea { min-height: 130px; resize: vertical; }

.map-placeholder {
  border: 2px dashed #bbb;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: #666;
  background: #f8f8f8;
}

/* Footer */
.site-footer {
  background: #141414;
  color: #e8e8e8;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 2.5rem 0 1.4rem;
}

.site-footer h4 { margin-top: 0; color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer p { color: #d0d0d0; }
.footer-bottom {
  border-top: 1px solid #2f2f2f;
  text-align: center;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  color: #bdbdbd;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 1001;
}

.floating-contact-btn {
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.floating-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.floating-contact-btn.call {
  background: var(--primary);
}

.floating-contact-btn.whatsapp {
  background: var(--text);
}

/* Utilities */
.page-title {
  padding: 2.2rem 0 1.4rem;
  background: #fff5f7;
  border-bottom: 1px solid #f0dfe3;
}

.page-title h1 { margin: 0 0 0.4rem; }
.breadcrumbs { color: #666; font-size: 0.92rem; }

main .section .container > p + p { margin-top: 0.8rem; }

@media (max-width: 992px) {
  .hero-grid,
  .grid-3,
  .stats,
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open { display: flex; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .submenu {
    position: static;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 0.3rem;
  }

  .hero-grid,
  .grid-3,
  .stats,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }

  .form-group.full { grid-column: auto; }

  .floating-contact {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-contact-btn {
    min-width: 126px;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
  }
}
