/* ═══════════════════════════════════════════════
   MILLER'S GC — Enhanced Sections
   Built by Artificial Heights
═══════════════════════════════════════════════ */

/* ─── HERO ADDITIONS ─── */
.hero-sub {
  color: #001d66;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-custom {
  display: inline-block;
  padding: 10px 30px;
  background: transparent;
  color: #001d66;
  border: 2px solid #001d66;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline-custom:hover { background: #001d66; color: #fff; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: #001d66;
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 10px 50px;
  flex: 1;
  min-width: 150px;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 { font-size: 30px; font-weight: 700; margin-bottom: 14px; color: #111; }
.section-header p { font-size: 16px; color: #555; max-width: 580px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  color: #001d66;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 2px solid #001d66;
  padding-bottom: 4px;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 80px 0;
  background: #f8f9fc;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.3s;
  border-top: 3px solid transparent;
}
.service-card:hover {
  border-top-color: #001d66;
  box-shadow: 0 8px 30px rgba(0,29,102,0.1);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  color: #001d66;
  margin-bottom: 18px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: #111; }
.service-card p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }

/* ─── ABOUT ADDITIONS ─── */
.about-values {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
.value-icon {
  color: #001d66;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── PREVIOUS WORK SLIDER ─── */
.work-section {
  padding: 80px 0 0;
  background: #fff;
}
.work-section .container { margin-bottom: 40px; }
.work-slider-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
}
.work-slider {
  display: flex;
  transition: transform 0.5s ease;
}
.work-slide {
  min-width: 33.333%;
  position: relative;
  overflow: hidden;
}
.work-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.85);
}
.work-slide:hover img { transform: scale(1.04); filter: brightness(1); }
.work-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  padding: 30px 20px 16px;
  font-size: 14px;
}
.work-caption strong { display: block; margin-bottom: 2px; font-size: 15px; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,29,102,0.85);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: #001d66; }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.slider-dot.active { background: #fff; }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 80px 0;
  background: #f8f9fc;
}
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide { min-width: 100%; padding: 0 60px; }
.testimonial-card {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 4px;
  padding: 40px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  border-top: 3px solid #001d66;
}
.testimonial-stars {
  color: #f5a623;
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.testimonial-author strong { color: #001d66; font-size: 15px; }
.testimonial-author span { color: #888; font-size: 13px; }
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #001d66;
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover { background: #000; }
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
.testimonial-dots {
  text-align: center;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.testimonial-dot.active { background: #001d66; }

/* ─── WHY CHOOSE US ─── */
.why-section {
  padding: 80px 0;
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.why-item { text-align: center; padding: 20px; }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-item h3 { font-size: 16px; font-weight: 600; color: #001d66; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }

/* ─── CONTACT ADDITIONS ─── */
.contact-sub {
  color: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 0;
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-select option { color: #333; background: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .work-slide { min-width: 50%; }
  .stat-divider { display: none; }
  .stat-item { padding: 10px 20px; min-width: 120px; }
  .testimonial-slide { padding: 0 50px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .work-slide { min-width: 100%; }
  .work-slide img { height: 250px; }
  .testimonial-slide { padding: 0 44px; }
  .testimonial-card { padding: 28px 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stat-number { font-size: 2rem; }
}
