/* Hero Section */
.hero {
  padding-top: 1rem;
}

.hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 1024 / 394;
  background-color: #F8F3EE;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

@media (min-width: 1024px) {
  .hero-container {
    aspect-ratio: 1024 / 394;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 44%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 2.5vw, 2.75rem);
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .hero-content {
    padding: 3.25rem 2.75rem;
    max-width: 530px;
    width: 44%;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.3vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 0.95rem;
  color: var(--color-text-main);
  text-align: left;
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.15rem;
    line-height: 1.06;
  }
}

.hero-title span {
  color: var(--color-brand-orange);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.25vw, 1.125rem);
  margin-bottom: 1.65rem;
  color: #475569;
  line-height: 1.5;
  max-width: 440px;
  text-align: left;
}

.btn-hero {
  background-color: #111827;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.btn-hero:hover {
  background-color: #1f2937;
}

.btn-hero-wa {
  background-color: #16a34a;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-hero-wa:hover {
  background-color: #15803d;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.hero-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--color-brand-orange);
}

/* Trust Badges inside Hero Banner */
.hero-features-bar {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.hero-features-bar .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-features-bar .feature-icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
  color: #FF5E14;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-features-bar .feature-title {
  font-weight: 700;
  font-size: 0.8125rem;
  color: #111827;
  line-height: 1.2;
}

.hero-features-bar .feature-desc {
  font-size: 0.7188rem;
  color: #6B7280;
  line-height: 1.2;
}


/* Service Banner */
.service-banner {
  background-color: #FFF9F6;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #FFDEC9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.service-banner-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #FFF9F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-banner-img-container::after {
  content: '';
  display: none;
}

.service-banner-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.service-banner-content {
  padding: clamp(1.25rem, 4vw, 3rem) clamp(1rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  container-type: inline-size;
  width: 100%;
}

.service-banner-title {
  font-size: clamp(1.25rem, 7.5cqi, 2.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: clamp(0.35rem, 1vw, 0.5rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-banner-desc {
  color: #1F2937;
  margin-bottom: clamp(1.25rem, 3.5vw, 2.25rem);
  font-size: clamp(0.6rem, 3.5cqi, 1.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.service-features {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(1.25rem, 3.5vw, 2.25rem);
}

.service-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.3rem, 1vw, 0.6rem);
  flex: 1;
  font-size: clamp(0.7rem, 1.8vw, 0.875rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.service-feature svg {
  width: clamp(28px, 5.5vw, 42px);
  height: clamp(28px, 5.5vw, 42px);
  stroke: #111827;
  stroke-width: 2;
}

.service-action {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-service-visit {
  background: #FF4F00;
  color: #FFFFFF;
  border-radius: 9999px;
  padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  font-size: clamp(0.875rem, 2.2vw, 1.05rem);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(255, 79, 0, 0.28);
}

.btn-service-visit:hover {
  background-color: #E04400;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 79, 0, 0.35);
}

@media (min-width: 1024px) {
  .service-banner {
    flex-direction: row;
    align-items: stretch;
  }
  .service-banner-img-container {
    position: relative;
    width: 44%;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF9F6;
    border-radius: 20px 0 0 20px;
  }
  .service-banner-img-container::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35%;
    background: linear-gradient(to right, rgba(255, 249, 246, 0) 0%, rgba(255, 249, 246, 0.85) 60%, #FFF9F6 100%);
    pointer-events: none;
    z-index: 2;
  }
  .service-banner-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    display: block;
  }
  .service-banner-content {
    width: 56%;
    padding: 3rem 3.5rem;
  }
}

.btn-pill {
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 700;
}

/* Promo Banners Section */
.promo-offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 768px) {
  .promo-offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.discount-banner-card {
  position: relative;
  border-radius: var(--border-radius-xl, 16px);
  overflow: hidden;
  min-height: 220px;
  background-color: var(--color-bg-alt, #FFF9F6);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid #FFDEC9;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discount-banner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.discount-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  line-height: 0;
  position: absolute;
  inset: 0;
}

.discount-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 767px) {
  .discount-banner-card {
    min-height: unset;
    height: auto;
    aspect-ratio: 1024 / 375;
    width: 100%;
  }
}






/* --- Exact Proportional Mobile & Tablet Hero (<1024px) --- */
@media (max-width: 1023px) {
  .hero {
    padding-top: 0.5rem;
  }
  .hero-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    aspect-ratio: 1024 / 394;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #F8F3EE;
    padding: 0;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-content {
    position: relative;
    z-index: 10;
    width: 44%;
    max-width: 44%;
    padding: clamp(10px, 2.5vw, 28px) clamp(10px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    box-sizing: border-box;
  }
  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 3.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: clamp(3px, 0.8vw, 8px);
    color: #111827;
    text-align: left;
  }
  .hero-title span {
    color: var(--color-brand-orange);
  }
  .hero-desc {
    font-family: var(--font-body);
    font-size: clamp(0.55rem, 1.6vw, 0.95rem);
    line-height: 1.35;
    color: #475569;
    margin-bottom: clamp(6px, 1.2vw, 14px);
    max-width: 100%;
    text-align: left;
  }
  .hero-content div[style*="display: flex"] {
    gap: clamp(4px, 0.9vw, 10px) !important;
    align-items: flex-start !important;
  }
  .btn-hero {
    padding: clamp(4px, 0.9vw, 8px) clamp(8px, 1.6vw, 16px);
    font-size: clamp(0.52rem, 1.5vw, 0.88rem);
    border-radius: clamp(4px, 0.7vw, 7px);
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
  }
  .btn-hero svg {
    width: clamp(8px, 1.5vw, 14px);
    height: clamp(8px, 1.5vw, 14px);
    margin-left: clamp(2px, 0.4vw, 4px) !important;
  }
  .btn-hero-wa {
    padding: clamp(4px, 0.9vw, 8px) clamp(8px, 1.6vw, 16px);
    font-size: clamp(0.52rem, 1.5vw, 0.88rem);
    border-radius: clamp(4px, 0.7vw, 7px);
    font-weight: 700;
    gap: clamp(3px, 0.7vw, 6px);
    white-space: nowrap;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
  }
  .btn-hero-wa svg {
    width: clamp(8px, 1.5vw, 14px);
    height: clamp(8px, 1.5vw, 14px);
  }
  .hero-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(6px, 1.2vw, 12px) clamp(10px, 2vw, 24px);
    width: 100%;
    max-width: none;
    transform: none;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 0 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    z-index: 20;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 767px) {
  .hero-container {
    aspect-ratio: 1024 / 394;
    border-radius: 14px;
  }
  .hero-content {
    width: 44%;
    max-width: 44%;
    padding: 12px 10px;
    justify-content: center;
  }
  .hero-title {
    font-size: clamp(0.85rem, 3.8vw, 1.35rem);
    line-height: 1.12;
    margin-bottom: 4px;
  }
  .hero-desc {
    font-size: clamp(0.52rem, 2.2vw, 0.76rem);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .btn-hero, .btn-hero-wa {
    padding: 4px 9px;
    font-size: clamp(0.52rem, 2.2vw, 0.74rem);
    border-radius: 4px;
  }
  .btn-hero svg, .btn-hero-wa svg {
    width: 10px;
    height: 10px;
  }
  .hero-features-bar {
    display: none !important;
  }
}

/* Hide WhatsApp floating button on homepage for phones */
@media (max-width: 767px) {
  .whatsapp-float {
    display: none !important;
  }
}


