/* --- CSS VARIABLES & RESET --- */
:root {
  --bg-color: white;
  --primary-orange: #d27e2b;
  --primary-orange-dark: #d27e2b;
  --text-dark: black;
  --text-gray: #555555;
  --card-bg: #faefce;
  --white: #ffffff;
  --max-width: 1250px;
}

.highlight-text {
  color: var(--primary-orange);
}

/* --- LAYOUT UTILITIES --- */
.container {
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: 40px 40px;
}

/* ================= SECTION 1: HEADER (Desktop Base) ================= */
.header-section {
  background: linear-gradient(to top, rgba(255, 229, 179, 0.4853), #fff 50%);
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  position: relative;
  gap: 60px;
  text-align: left;
}

.header-content {
  width: 100%;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.header-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.logo-area img {
  width: 65px;
  height: auto;
  aspect-ratio: 1/1;
}

.header-title {
  margin: 0;
}

.header-subtitle {
  /* Matching main.css h2/subtitles */
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}

.header-desc {
  /* Matching main.css p */
  
  line-height: 1.6;
}

@keyframes floatGem {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.header-image {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.header-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 187/228;
  animation: floatGem 4s ease-in-out infinite;
}

.breadcrumb {
  bottom: -60px;
}

/* ================= SECTION 2: CARDS (Desktop Base) ================= */
.cards-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}


.section-subheading {
  max-width: 800px;
  
  line-height: 1.6;
}

/* GRID SYSTEM */
.cards-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 70px;
  width: 100%;
  max-width: 1300px;
}

.about-card {
  background: #faefce;
  width: calc(33.333% - 20px);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* The transition is already in your CSS, so just add the hover state */
.about-card:hover {
  transform: translateY(-5px); /* Lifts up */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Adds a soft, deep shadow */
}

.card-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.card-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 367/215;
  transition: transform 0.6s ease;
}

/* 2. Zoom in when hovering the parent card */
.about-card:hover .card-image-wrapper img {
  transform: scale(1.03); /* Zooms in 10% */
}

.card-title {
  /* Matching main.css h3/titles */
  font-weight: bold;
  font-size: 22px;
  color: black;
  margin: 0;
}

.card-desc {
  
  margin: 0;
}

/* ================= SECTION 3: VALUE PROPS (Desktop Base) ================= */
.value-section {
  background: linear-gradient(to bottom, rgba(255, 229, 179, 0.4853), #fff 69%);
  margin-bottom: 30px;
}

.value-section-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.value-image-container {
  margin-top: 20px;
  position: relative;
  max-width: 600px;
  aspect-ratio: 1/1;
}

.soft-circle-mask {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.customer-white-circle {
  position: absolute;
  top: -1%;
  left: -2%;
  width: 105%;
  height: auto;
  aspect-ratio: 1/1;
}

.value-content {
  width: 100%;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-content-intro {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 580px;
  width: 100%;
}

.value-heading {
  text-align: left;
}

.value-subtext {
  
  text-align: left;
  line-height: 1.6;
}

.prop-list {
  display: grid;
  grid-auto-rows: 1fr; /* 🔑 equal height rows */
  gap: 19px;
}

.prop-item {
  background-color: white;
  border-radius: 46px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 14.4px 0 rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default; /* Indicates it's for reading, not clicking */
}

.prop-item:hover {
  transform: translateX(10px); /* Slides right */
  /* Adds a soft orange glow using your primary color variable */
  box-shadow: 0 8px 20px rgba(210, 126, 43, 0.15);
  background-color: #fffaf4; /* Very subtle background tint */
}

.icon-circle {
  background-color: #fbc289;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 60%;
  height: auto;
  aspect-ratio: 1/1;
}

.prop-text {
  font-size: 24px;
  line-height: 1.3;
  color: black;
}

/* ================= MEDIA QUERY: TABLET (max-width: 1024px) ================= */
@media (max-width: 1024px) {
  /* Header */
  .header-section {
    padding: 0px 30px 40px;
  }

  .header {
    gap: 40px;
  }

  .header-content {
    gap: 12px;
  }


  .header-subtitle {
    /* main.css Tablet h2/subtitle -> 22px - 26px range */
    font-size: 24px;
  }

  .header-image {
    width: 150px;
  }

  .cards-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  /* Cards */
  .about-card {
    width: calc(50% - 15px);
    gap: 0px;
  }

  .card-title {
    /* main.css Tablet h3 -> 20px - 22px */
    font-size: 24px;
  }

  /* Value Props */
  .value-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .value-section-grid {
    gap: 20px;
  }

  .value-image-container {
    max-width: 250px;
  }

  .value-heading {
    font-size: 32px; /* Matching Section Heading */
  }

  .value-content {
    gap: 14px;
  }

  .value-content-intro {
    margin-top: 20px;
    gap: 10px;
  }

  .icon-circle {
    width: 42px;
    height: 42px;
  }

  .prop-list {
    gap: 12px;
  }

  .prop-text {
    font-size: 22px;
  }
}

/* ================= MEDIA QUERY: MOBILE (max-width: 767px) ================= */
@media (max-width: 767px) {
  /* Global */
  .section {
    padding: 40px 20px;
  }

  /* Header */
  .header-section {
    text-align: center;
    padding: 0 25px 40px;
  }

  .header {
    flex-direction: column;
    gap: 24px;
  }

  .header-content {
    align-items: center;
  }

  .header-intro {
    text-align: center;
  }

  .logo-area {
    justify-content: center;
    gap: 4px;
  }

  .logo-area img {
    width: 50px;
  }


  .header-subtitle {
    /* main.css Mobile subtitle/h3 -> 20px */
    font-size: 22px;
  }

  .header-image {
    width: 187px;
    margin: 0 auto;
  }

  .breadcrumb {
    bottom: -60px;
    padding: 2px 10px;
  }

  /* Cards */
  .cards-container {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .about-card {
    width: 100%;
    max-width: 400px;
  }

  .card-title {
    /* main.css Mobile h3 -> 20px */
    font-size: 22px;
  }

  .value-section {
    padding: 10px 20px 40px;
  }

  .value-section-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .value-image-container {
    max-width: 340px;
  }

  .value-content {
    align-items: center;
  }

  .value-heading {
    font-size: 30px;
    text-align: center;
  }

  .value-subtext {
    text-align: center;
  }

  .prop-list {
    width: 100%;
  }

  .prop-item {
    padding: 8px;
    gap: 10px;
  }

}
