/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", sans-serif;
  color: #444;
  line-height: 1.7;
}

a { color: #e03a3c; text-decoration: none; }
a:hover { color: #c0272a; }

h1, h2, h3, h4, h5, h6 { font-family: "Raleway", sans-serif; }

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

/* ===== Header ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #eee;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 16px 40px;
}
#header.scrolled {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 10px 40px;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.logo { font-family: "Poppins", sans-serif; font-size: 26px; font-weight: 700; flex: 1; }
.logo a { color: #111; }
.logo a span { color: #e03a3c; }

#navbar ul {
  display: flex;
  list-style: none;
  gap: 4px;
}
#navbar a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.3s;
}
#navbar a:hover,
#navbar a.active { color: #e03a3c; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #111;
}

.get-directions-btn {
  background: #e03a3c;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s;
}
.get-directions-btn:hover { background: #111; color: #fff !important; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: url('assets/img/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 40px 60px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.hero-content {
  position: relative;
  max-width: 620px;
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content h2 {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
  font-weight: 400;
}
.btn-get-started {
  display: inline-block;
  background: #e03a3c;
  color: #fff;
  padding: 12px 34px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  border: 2px solid #e03a3c;
  transition: 0.3s;
}
.btn-get-started:hover { background: transparent; color: #fff; }

/* ===== Container ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* ===== Section titles ===== */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: inherit;
}
.section-title p { font-size: 15px; opacity: 0.8; }

/* ===== About ===== */
.about { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; color: #111; }
.about-text .italic { font-style: italic; color: #666; margin-bottom: 20px; }
.about-text p { color: #555; margin-top: 16px; }
.check-list { list-style: none; margin-bottom: 8px; }
.check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #444;
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-size: 14px;
}
.about-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 420px;
}

/* ===== Services ===== */
.section-dark {
  background: #1b1b1b;
  color: #fff;
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #252525;
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.3s, background 0.3s;
}
.service-card:hover { background: #2e2e2e; transform: translateY(-4px); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #bbb; line-height: 1.6; }

/* ===== Testimonials ===== */
.testimonials { padding: 80px 0; background: #f9f9f9; }
.testimonials-track-wrap {
  overflow: hidden;
  border-radius: 12px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-item {
  min-width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  text-align: center;
}
.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid #f0f0f0;
}
.testimonial-item h3 { font-size: 18px; font-weight: 700; color: #111; }
.testimonial-item h4 { font-size: 13px; color: #999; margin: 4px 0 20px; }
.testimonial-item p {
  font-style: italic;
  color: #555;
  max-width: 680px;
  margin: auto;
  line-height: 1.8;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testimonials-nav button {
  background: none;
  border: 2px solid #e03a3c;
  color: #e03a3c;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-nav button:hover { background: #e03a3c; color: #fff; }
.testimonials-dots { display: flex; gap: 8px; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #e03a3c;
  background: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: #e03a3c; }

/* ===== Team ===== */
.team { padding: 80px 0; }
.team-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  flex: 0 1 420px;
}
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.team-info h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.team-info span { font-size: 13px; color: #aaa; }

/* ===== Contact ===== */
.contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-box {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 0 24px rgba(0,0,0,0.07);
  text-align: center;
  display: block;
  color: #444;
  transition: box-shadow 0.3s;
}
.info-box:hover { box-shadow: 0 4px 32px rgba(224,58,60,0.15); }
.info-icon { font-size: 28px; margin-bottom: 10px; color: #e03a3c; }
.info-box h3 { font-size: 17px; color: #555; font-weight: 700; margin-bottom: 6px; }
.info-box p { font-size: 14px; color: #666; line-height: 1.6; }
.info-box a { color: #444; }
.info-box a:hover { color: #e03a3c; }


.contact-form {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 0 24px rgba(0,0,0,0.07);
}
.contact-form h3 { font-size: 20px; color: #555; font-weight: 700; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: #111; }
.form-status {
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}
.form-status.success { display: block; background: #d4edda; color: #155724; }
.form-status.error { display: block; background: #f8d7da; color: #721c24; }
.form-submit { text-align: center; }
.contact-form button[type="submit"] {
  background: #e03a3c;
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button[type="submit"]:hover { background: #c0272a; }

/* ===== Footer ===== */
#footer {
  background: #111;
  color: #aaa;
  padding: 28px 40px;
  text-align: center;
  font-size: 14px;
}
#footer strong { color: #e03a3c; }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  background: #e03a3c;
  color: #fff;
  border-radius: 4px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #111; color: #fff; }

/* ===== Mobile ===== */
@media (max-width: 991px) {
  .mobile-toggle { display: block; }
  #navbar ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  #navbar.open ul { display: flex; }
  .get-directions-btn { display: none; }
}
@media (max-width: 768px) {
  #header { padding: 14px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; text-align: center; flex-basis: 260px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .section-dark, .about, .testimonials, .team, .contact { padding: 60px 0; }
}
