/* HERO SECTION */
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 2rem 0;
  background: linear-gradient(180deg, #ffffff, #f3f3f3), rgba(0, 0, 0, 0.03);
  background-blend-mode: overlay;
  border-radius: 8px;
  /* border: 1px solid blue; */
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  text-align: left;
  margin: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.7;
  max-width: 800px;
  margin-top: 0.5rem;
  text-align: left;
}

/* Tablet */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
    max-width: 100%; /* full width on tablet */
  }
}

/* Phone */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}
/* ------------------------------------------------------------------------------- */
/* Empty container for spacing */
.section-spacer {
  height: 50px; /* desktop */
}

/* Tablet */
@media (max-width: 768px) {
  .section-spacer {
    height: 35px;
  }
}

/* Phone */
@media (max-width: 480px) {
  .section-spacer {
    height: 25px;
  }
}
/* ------------------------------------------------------------------------------- */
/* SERVICE GRID LAYOUT */
/* Outer container (3 columns) */
.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
}

/* Each service card */
.service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  /* border: 1px solid yellow; */
  background: linear-gradient(180deg, #ffffff, #f3f3f3), rgba(0, 0, 0, 0.03);
  background-blend-mode: overlay;
}

/* Image container (fixed size, perfect centering) */
.service-image-box {
  width: 100%;
  aspect-ratio: 16 / 9; /* consistent size for all 3 */
  overflow: hidden;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills container, crops nicely */
  object-position: center;
  display: block;
}

/* Text container */
.service-text {
  padding: 1rem;
}

.service-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-text p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Responsivness(tablet + phone) */
/* Tablet */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .service-image-box {
    aspect-ratio: 4 / 3; /* taller for mobile */
  }
}

/* Phone */
@media (max-width: 480px) {
  .service-image-box {
    aspect-ratio: 1 / 1; /* square looks best on phones */
  }
}
/* ------------------------------------------------------------------------------- */

/* Privacy Policy Container */
.privacy-section {
  width: 100%;
  background: linear-gradient(180deg, #ffffff, #f3f3f3), rgba(0, 0, 0, 0.03);
  background-blend-mode: overlay;
  border-radius: 8px;
  border: 1px solid #f7f7f7;
}

.privacy-inner {
  width: 100%;
}

.privacy-inner p {
  line-height: 1.25;
  margin: 1rem;
}
