/* =====================
   HERO SECTION
===================== */
.page-hero {
  position: relative;
  height: 45vh;
  background: #D95427;
  display: flex;
  align-items: center;
  color: #fff;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-hero-content {
  position: relative;
  max-width: 700px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.2rem;
  color: #eaeaea;
}

/* =====================
   SERVICES GRID
===================== */
.services {
  padding: 100px 0;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.services p {
  color: var(--gray);
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* SERVICE CARD */
.service-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.service-icon {
  color: var(--primary-red);
  margin-bottom: 20px;
}

/* SERVICE CARD TEXT */
.service-card h3 {
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* CTA BUTTON */
.cta-section {
  margin-top: 60px;
}

.cta-section .btn-primary {
  font-size: 1rem;
  padding: 15px 40px;
  border-radius: 50px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* PREMIUM GET A QUOTE BUTTON */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #E14139, #D95427);
  color: #fff;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(225,65,57,0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(225,65,57,0.6);
  transform: translateY(-5px) scale(1.05);
}

.btn-primary i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px) rotate(10deg);
}
