/* ==================================================
   ABOUT PAGE – ALIGNED WITH HOME
================================================== */

/* PAGE HERO */
.page-hero {
  background: url("../images/about/about-hero.png") center/cover no-repeat;
  height: 260px;
}

.page-hero-overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  display: flex;
  align-items: center;
}

.page-hero-content {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  color: #ffffff;
}

.page-hero-content h1 {
  font-size: 42px;
}

.page-hero-content p {
  color: #e0c097;
  margin-top: 6px;
}

/* ABOUT INTRO – WHO WE ARE */
.about-intro {
  padding: 80px 0;
  background: #faf7f3;
}

.about-intro .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* LEFT text, RIGHT image */
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.about-content h2 {
  font-size: 28px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #333;
}

.about-content .strength-title {
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* Strength List */
.strength-list {
  list-style: none;
  padding: 0;
}

.strength-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14.5px;
}

.strength-list li i {
  color: var(--gold);
  font-size: 15px;
}

/* RIGHT IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Image Caption */
.image-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

.image-caption i {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-intro .container {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-top: 30px;
  }
}
/* MISSION & VISION */

.mission-vision {
  padding: 80px 0;
  background: #ffffff;
}

.mission-vision .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* IMAGE LEFT | CONTENT RIGHT */
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.mission-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* CONTENT */
.mission-content h2 {
  font-size: 28px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-content h2 i {
  color: var(--gold);
}

.mission-content h4 {
  font-size: 17px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mission-content h4 i {
  color: var(--gold);
}

.mission-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mission-vision .container {
    grid-template-columns: 1fr;
  }

  .mission-image {
    margin-bottom: 30px;
  }
}

/* ==========================
   WHAT WE DO
========================== */

.what-we-do {
  padding: 70px 0 50px;
  background: #faf7f3;
}

/* CONTAINER ALIGNMENT (MATCH ABOVE SECTIONS) */
.what-we-do .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* SECTION TITLE */
.section-title {
  font-size: 26px;
  font-weight: 600;
  color: #2b1d14;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 45px;
}

/* FONT AWESOME ICON IN TITLE */
.section-title i {
  font-size: 26px;
  color: var(--gold);
}

/* GRID */
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

/* SERVICE CARD (ANCHOR LINK) */
.service-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  cursor: pointer;

  /* LINK FIX */
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ICON */
.service-box i {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

/* TEXT */
.service-box h4 {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #2b1d14;
}

/* HOVER EFFECT */
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* OPTIONAL: HOVER COLOR ENHANCEMENT */
.service-box:hover h4,
.service-box:hover i {
  color: var(--gold);
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-choose {
  padding: 70px 0;
  background: #ffffff;
}

/* CONTAINER ALIGNMENT (MATCH OTHER SECTIONS) */
.why-choose .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* GRID */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* BOX (DIV OR LINK) */
.why-box {
  text-align: center;
  padding: 20px 10px;
  transition: all 0.35s ease;
  cursor: pointer;

  /* LINK SAFE */
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ICON (FONT AWESOME OR SVG SAFE) */
.why-box i,
.why-box svg {
  font-size: 38px;
  width: 38px;
  height: 38px;
  color: var(--gold);
  fill: var(--gold);
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* TITLE */
.why-box h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2b1d14;
}

/* TEXT */
.why-box p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.4;
}

/* HOVER */
.why-box:hover {
  transform: translateY(-6px);
}

.why-box:hover h4,
.why-box:hover i,
.why-box:hover svg {
  color: var(--gold);
  fill: var(--gold);
}

/* ==========================
   RESPONSIVE (KEEPING YOUR LOGIC)
========================== */

@media (max-width: 1200px) {
  .what-we-do-grid,
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .what-we-do-grid,
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .what-we-do-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   FULL WIDTH CTA
========================= */

.cta-full {
  position: relative;
  width: 100%;
  min-height: 360px;

  background: url("../images/about/cta.png") center center / cover no-repeat;

  display: flex;
  align-items: center;

  /* IMPORTANT: removes side gaps */
  margin: 0;
  padding: 0;
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* adjust darkness if needed */
  z-index: 1;
}

/* CTA content */
.cta-content {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  color: #ffffff;
}

/* Icon */
.cta-icon {
  font-size: 34px;
  color: #b07a3c; /* golden brown */
  margin-bottom: 18px;
  display: block;
}

/* Heading */
.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: #b07a3c;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #8b5a2b;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 30px;
  }
}


/* =====================================
   GOLDEN ICON COLOR – ABOUT PAGE
===================================== */

/* Section title icons */
.section-title i {
  color: #8b5a2b;
}

/* What We Do icons */
.service-box i {
  color: #8b5a2b;
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

/* Why Choose icons */
.why-box i {
  color: #8b5a2b;
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}
