:root {
  --primary: #d9232d;
  --primary-dark: #aa1620;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --border: #e5e7eb;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.85);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.brand strong { display: block; font-size: 1.2rem; }
.brand span { display: block; color: var(--muted); font-size: .92rem; }
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
nav a { font-weight: 700; color: #374151; }
nav a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 12px; }
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 18px rgba(217, 35, 45, .22);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--border);
  background: #fff;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; }

.hero {
  padding: 72px 0 42px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 55%, #f3f4f6 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  color: var(--primary);
  font-weight: 800;
  margin: 0 0 8px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2;
  margin: 0 0 18px;
}
.hero h1 span { color: var(--primary); }
.lead { color: #4b5563; font-size: 1.08rem; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.stat-card, .card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card { padding: 18px; }
.stat-card strong { display: block; font-size: 1.15rem; margin-bottom: 4px; }
.stat-card span { color: var(--muted); }

.section { padding: 78px 0; }
.section-muted { background: var(--bg-soft); }
.section-heading { text-align: center; margin-bottom: 34px; }
.section-heading.align-right { text-align: right; }
.section-heading h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.features, .info-grid, .contact-grid, .gallery {
  display: grid;
  gap: 20px;
}
.features { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 24px; }
.info-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { padding: 24px; }
.card h3 { margin-top: 0; margin-bottom: 10px; }
.info-card ul, .contact-cards { margin: 0; padding: 0; }
.info-card ul { list-style: none; }
.info-card li { padding: 8px 0; border-bottom: 1px dashed #ececec; }
.info-card li:last-child { border-bottom: 0; }

.gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.section-subtitle {
  max-width: 900px;
  margin: 14px auto 0;
  color: #4b5563;
  font-size: 1.02rem;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, opacity .25s ease;
}
.gallery-item:hover img { transform: translateY(-4px) scale(1.01); opacity: .95; }

.contact-cards { display: grid; gap: 16px; }
.contact-form { display: grid; gap: 14px; }
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(217,35,45,.1);
}
.form-note { margin: 0; color: var(--muted); font-size: .92rem; }

.site-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 24px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(37,211,102,.35);
  z-index: 1000;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.85);
  z-index: 2000;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  border-radius: 18px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    grid-template-areas: "brand toggle" "nav nav" "actions actions";
    padding: 14px 0;
  }
  .brand { grid-area: brand; }
  .menu-toggle { grid-area: toggle; justify-self: end; display: inline-flex; }
  nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 0;
    gap: 8px;
  }
  nav.open { display: flex; }
  nav a {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
  }
  .nav-actions { grid-area: actions; display: none; }
  .nav-actions.open { display: flex; }
  .hero-grid,
  .features,
  .info-grid,
  .contact-grid,
  .gallery { grid-template-columns: 1fr; }
  .hero-media img { height: 320px; }
  .footer-wrap { flex-direction: column; }
}


@media (max-width: 1100px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 768px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } .section-subtitle { font-size: .98rem; } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } .gallery-item img { height: 320px; } }


.map-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
}

.map-heading {
  margin-bottom: 0;
}

.map-frame-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  background: #f3f4f6;
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.map-actions {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .map-frame-wrap,
  .map-frame-wrap iframe {
    min-height: 300px;
  }
}
