* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; color: #1a1a1a; }

/* NAV */
nav {
  background: #6B0000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: #185FA5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 4px;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.nav-cta {
  background: #185FA5;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: #0d4a82; }

/* HERO */
.hero {
  background: #8B0000;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 20px
  );
}
.hero-badge {
  display: inline-block;
  background: #185FA5;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}
.hero h1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  position: relative;
}
.hero h1 span { color: #B5D4F4; }
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* PAGE HERO (smaller, for inner pages) */
.page-hero {
  background: #8B0000;
  color: #fff;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 20px
  );
}
.page-hero h1 {
  font-size: 28px;
  font-weight: 500;
  position: relative;
  margin-bottom: 6px;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  position: relative;
}

/* BUTTONS */
.btn-primary {
  background: #185FA5;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #0d4a82; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-red {
  background: #C0152A;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-red:hover { background: #a01122; }

/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #C0152A;
}
.stat {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 500; color: #fff; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 2px; }

/* SECTIONS */
section { padding: 3rem 2rem; }
section.alt { background: #f5f5f5; }

.section-tag {
  font-size: 12px;
  font-weight: 500;
  color: #C0152A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.section-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}
.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: #FCEBEB;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 22px;
  color: #C0152A;
}
.service-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}
.why-item {
  padding: 1.25rem;
  border-left: 3px solid #C0152A;
  background: #fff;
  border-radius: 0 8px 8px 0;
}
.why-item h3 { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.why-item p { font-size: 13px; color: #666; line-height: 1.6; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}
.review-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.25rem;
}
.stars { color: #C0152A; font-size: 16px; margin-bottom: 10px; }
.review-text { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.reviewer { display: flex; align-items: center; gap: 8px; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #FCEBEB;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: #C0152A;
  flex-shrink: 0;
}
.reviewer-name { font-size: 13px; font-weight: 500; }
.reviewer-sub { font-size: 11px; color: #888; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
  width: 38px; height: 38px;
  background: #FCEBEB;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #C0152A;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; color: #888; margin-bottom: 2px; }
.contact-value { font-size: 14px; font-weight: 500; }

.form-group { margin-bottom: 14px; }
.form-group label { font-size: 13px; color: #555; display: block; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C0152A;
}
.form-group textarea { height: 90px; resize: vertical; }
.form-submit {
  width: 100%;
  background: #C0152A;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 4px;
}
.form-submit:hover { background: #a01122; }

/* PHOTO GALLERY */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}
.photo-slot {
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  border: 2px dashed #ccc;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  text-align: center;
  gap: 8px;
}
.photo-slot i { font-size: 32px; color: #ccc; }
.photo-slot.filled {
  border: none;
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA BANNER */
.cta-banner {
  background: #8B0000;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.cta-banner h2 { font-size: 24px; font-weight: 500; margin-bottom: 0.5rem; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

/* FOOTER */
footer {
  background: #6B0000;
  color: rgba(255,255,255,0.6);
  padding: 2rem;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
}
footer strong { color: #fff; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: #fff; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0.75rem;
  list-style: none;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .page-hero h1 { font-size: 22px; }
}
