
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ================= HERO (SAME AS CONTACT) ================= */
.services-hero {
  width: 100%;
  height: 400px;
  background: url("../images/serv.jpeg") center/cover no-repeat;
  position: relative;
}

.services-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-overlay h1 {
  color: #ffffff;
  font-size: 70px;
  letter-spacing: 4px;
  font-weight: 300;
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 80px 60px;
  background: #0e0e0e; /* 🔥 same as contact */
}

/* ================= GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #161616; /* 🔥 dark card */
  border: 1px solid #2a2a2a;
  transition: 0.3s;
}

/* IMAGE */
.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* NORMAL CONTENT */
.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
  color: #ffffff; /* 🔥 white text */
}

.card-content p {
  font-size: 14px;
  color: #cfcfcf; /* 🔥 light grey */
  line-height: 1.6;
}

/* ================= HOVER ================= */
.card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 30px;
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover .card-hover {
  opacity: 1;
}

/* HOVER TEXT */
.card-hover h3 {
  color: #c6a47e;
  margin-bottom: 15px;
}

.hover-text {
  font-size: 14px;
  line-height: 1.8;
  color: #e5e5e5;
  max-width: 90%;
}

/* ================= GOLD CORNERS ================= */
.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #c6a47e;
}

.top-left { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.top-right { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.bottom-left { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.bottom-right { bottom: 15px; right: 15px; border-left: none; border-top: none; }

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-overlay h1 {
    font-size: 45px;
  }

  .services-section {
    padding: 60px 30px;
  }
}

/* MOBILE */
@media (max-width: 500px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    height: 300px;
  }

  .services-overlay h1 {
    font-size: 32px;
  }

  .services-section {
    padding: 40px 20px;
  }
}

/* ================= INTRO ================= */
.services-intro {
  background: #0e0e0e;
  padding: 30px 60px 10px;
  text-align: center;
}

.services-intro p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

@media (max-width: 900px) {
  .services-intro {
    padding: 20px 30px;
  }
}

@media (max-width: 500px) {
  .services-intro {
    padding: 20px;
  }

  .services-intro p {
    font-size: 14px;
  }
}

/* ================= CTA ================= */
.services-cta {
  background: #161616;
  padding: 80px 60px;
  text-align: center;
}

/* TAG */
.cta-tag {
  color: #c6a47e;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* HEADING */
.services-cta h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 20px;
}

/* TEXT */
.cta-text {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #c6a47e;
  color: #0e0e0e;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #a88a66;
}

@media (max-width: 900px) {
  .services-cta {
    padding: 60px 30px;
  }

  .services-cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .services-cta {
    padding: 50px 20px;
  }

  .services-cta h2 {
    font-size: 24px;
  }

  .cta-text {
    font-size: 14px;
  }
}