/* ================= GENERAL STYLES ================= */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 10px 0;
}

a {
  color: #e63946;
  text-decoration: none;
}

section {
  padding: 60px 20px;
  text-align: center;
}

/* ================= NAVIGATION ================= */
.sticky-nav {
  position: sticky;
  top: 0;
  background: #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.nav-logo,
.nav-links a {
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  font-weight: 500;
}

.nav-links a:hover {
  color: #e63946;
}

/* ================= HERO ================= */
.hero {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.logo-text {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.red-plus {
  color: #e63946;
}

.hero-tagline {
  font-size: 20px;
  margin: 20px 0;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e63946;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #d62828;
}

/* ================= SERVICES ================= */
.services {
  text-align: center;
}

.services-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* ================= TESTIMONIALS ================= */
.testimonial-slider {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-text {
  font-style: italic;
}

.testimonial-author {
  margin-top: 10px;
  font-weight: 700;
}

/* Navigation dots */
.dots {
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #e63946;
}

/* ================= ENQUIRY FORM ================= */
.enquiry-section {
  background: #f5f5f5;
}

.enquiry-container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.enquiry-form button {
  background: #e63946;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.enquiry-form button:hover {
  background: #d62828;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

