* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
}



/* =========================
   HERO
========================= */
.page-hero {
  height: 600px;
  background: url('../images/hero-images-desktop/hero-image-services.webp') center/cover no-repeat;
   position: relative;
  width: 100%;
  height: 600px; /* desktop height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  

}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;

}

.hero-overlay h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
}

.hero-overlay p {
  color: #ddd;
  margin-top: 10px;
  font-size: 14px;
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  padding: 80px 20px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 600;
}

.section-title p {
  color: #666;
  margin-top: 10px;
  font-size: 14px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 1px solid transparent; 
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    
  
}
.service-card:hover {
  
  box-shadow: 0 0px 30px rgba(110, 110, 110, 0.05);
    
    border-bottom: 1px solid #eeeeee; 
    
    
}
.service-img-wrapper {
    width: 100%;
    height: 450px; 
    overflow: hidden; 
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.service-card img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover img {
  transform: scale(1.03);
}

/* TEXT */
.service-content {
  padding: 30px 0; 
  text-align: left;
}

.service-content h3 {
  padding: 0px 10px; 
  color: #111;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase; /* Classic luxury aesthetic */
  margin-bottom: 12px;
}

.service-content p {
  padding: 0px 10px; 
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400; /* Lighter weight looks more editorial */
  color: #666666;
  max-width: 90%;
}


/* =========================
   CTA SECTION
========================= */
.cta {
  text-align: center;
  margin-top: 60px;
}

.cta a {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cta a:hover {
  background: #111;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 550px; 
    
    background-image: url('../images/hero-images-mobile/hero-image-services-mobile.webp');
  }

  .hero-overlay h1 {
    font-size: 28px;
    align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.3;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height:450px;
  }
}

