/* Hero Section */
.services-hero {
  background: #4a5d45;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  height: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(3rem, 6vw, 5rem);
  justify-content: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: #c8b68e;
  border-radius: 50%;
}

.hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-left p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 520px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 0.5rem;
  width: fit-content;
  transition: all 0.3s ease;
}

.hero-link:hover {
  gap: 1.25rem;
  color: #ffffff;
}

.hero-arrow-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-link:hover .hero-arrow-circle {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(4px);
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  height: 100%;
  min-height: 650px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.hero-overlay-card {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: #ffffff;
  padding: 1.75rem 2.25rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 240px;
}

.card-arrow-icon {
  font-size: 1.5rem;
  color: #4a5d45;
  line-height: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #575945;
  margin: 0;
  line-height: 1.3;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .services-hero {
    min-height: 600px;
  }

  .hero-right {
    min-height: 600px;
  }

  .hero-left {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
  }

  .hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .hero-overlay-card {
    bottom: 2rem;
    left: 2rem;
    padding: 1.5rem 2rem;
  }
}

/* iPad and smaller tablets */
@media (max-width: 900px) {
  .services-hero {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-left {
    padding: clamp(3rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem);
  }

  .hero-right {
    min-height: 500px;
    justify-content: stretch;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-overlay-card {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .services-hero {
    min-height: auto;
  }

  .hero-container {
    gap: 0;
  }

  .hero-left {
    padding: clamp(2.5rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
  }

  .hero-right {
    min-height: 400px;
  }

  .hero-left h1 {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .hero-left p {
    font-size: 1rem;
  }

  .hero-link {
    font-size: 1rem;
  }

  .hero-arrow-circle {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  .hero-overlay-card {
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 1.25rem 1.5rem;
    min-width: 200px;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-arrow-icon {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 2rem 1.5rem;
  }

  .hero-right {
    min-height: 350px;
  }

  .hero-left h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero-overlay-card {
    bottom: 1rem;
    left: 1rem;
    padding: 1rem 1.25rem;
    min-width: 180px;
  }

  .card-title {
    font-size: 1rem;
  }
}

/* Existing Services Section Styles */
.services-section {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.8rem, 4vw, 2.5rem);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.service-card h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(31, 32, 24, 0.72);
  font-size: 0.97rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.cta-strip {
  position: relative;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: url("../assets/images/img4.jpg") center/cover no-repeat;
  color: var(--color-text-light);
  border-radius: 0;
  padding: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 29, 20, 0.4);
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

.cta-strip p {
  margin: 1rem 0 2rem;
  color: rgba(250, 249, 242, 0.88);
}
