/* =========================
   ABOUT SECTION
========================= */

.about-section {
  padding: 0px 20px 50px 20px;
  /* background: linear-gradient(135deg,
      #f6f1e9 0%,
      #efe7dc 100%); */
}

.about-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.about-gallery {
  position: relative;
  padding: 20px;
  min-height: 470px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(122, 46, 14, .10), rgba(194, 142, 31, .12));
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .10);
  overflow: hidden;
}

.main-image {
  width: 72%;
  border-radius: 26px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.secondary-image {
  position: absolute;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  width: 54%;
  height: 44%;
  border-radius: 22px;
  overflow: hidden;
}

.secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-badge {
  position: absolute;
  top: 20px;
  right: 18px;

  background: var(--darker-primary-background-color);
  color: white;

  padding: 18px 16px;
  border-radius: 18px;
  text-align: center;

  min-width: 120px;
}

.trust-badge span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-badge h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.gallery-card {
  position: absolute;
  left: 20px;
  bottom: 35px;
  width: 65%;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.dot {
  width: 16px;
  height: 16px;
  background: #d39d27;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.gallery-card h4 {
  color: var(--darker-primary-background-color);
  font-size: 1rem;
}

.gallery-card p {
  margin: 0;
  font-size: 13px;
  color: #141414c7;
  line-height: 1.5;
}

/* =========================
   RIGHT SIDE
========================= */

.section-label {
  color: var(--darker-primary-background-color);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label span {
  width: 34px;
  height: 3px;
  border-radius: 20px;
  background: #C28E1F;
}

.about-content h2 {
  font-size: 38px;
  line-height: 1.1;
  margin: 20px 0 30px;
  color: var(--darker-primary-background-color);
  font-weight: 800;
}

.about-content h2 span {
  color: var(--secondary-background-color);
  position: relative;
  text-decoration: underline;
  font-style: italic;
  text-underline-offset: 5px;
}

.about-content p {
  color: #4f4f4f;
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

/* =========================
   FEATURES
========================= */

.features {
  margin-top: 35px;
  border-left: 3px solid #d7b071;
  padding-left: 25px;
}

.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.feature-icon {
  width: 52px;
  height: 52px;

  border-radius: 16px;

  background: #f1e4d1;
  border: 1px solid #d8b888;
  color: var(--darker-primary-background-color);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  flex-shrink: 0;
}

.feature-item h4 {
  margin: 0 0 5px;
  font-size: 1.15rem;
  color: #272727;
}

.feature-item p {
  margin: 0;
  font-size: .95rem;
  color: #414141c7;
  line-height: 1.6;
}

/* =========================
   LARGE TABLETS
========================= */

@media (max-width: 1100px) {

  .about-container {
    gap: 50px;
  }

  .about-content h2 {
    font-size: 2.8rem;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    max-width: 700px;
    margin: auto;
    width: 100%;
  }

  .about-content {
    text-align: center;
  }

  .features {
    border-left: none;
    padding-left: 0;
  }

  .feature-item {
    text-align: left;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .about-section {
    padding: 70px 16px;
  }

  .about-gallery {
    min-height: 480px;
  }

  .main-image {
    width: 100%;
  }

  .main-image img {
    height: 230px;
  }

  .secondary-image {
    width: 60%;
    bottom: 90px;
  }

  .gallery-card {
    width: calc(100% - 40px);
    left: 20px;
    bottom: 20px;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }
}

/* =========================
   380px DEVICES
========================= */

@media (max-width: 380px) {

  .about-gallery {
    min-height: 430px;
    padding: 15px;
  }

  .trust-badge {
    padding: 14px;
    min-width: 95px;
  }

  .trust-badge h4 {
    font-size: 18px;
  }

  .secondary-image {
    width: 65%;
  }

  .gallery-card {
    padding: 14px;
  }

  .gallery-card h4 {
    font-size: 18px;
  }

  .gallery-card p {
    font-size: 12px;
  }

  .about-content h2 {
    font-size: 1.9rem;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }
}