/* ============================
   About Us Page Stylesheet
   (Ben Franklin Print Co.)
   ============================ */

:root {
  --brand-primary: #284735;
  --brand-dark: #1B3B2B;
  --brand-gold: #C89B3C;
  --brand-gold-light: #D4AF37;
  --brand-bg-light: #F7F9F7;
  --brand-border: #E2E8E4;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Great+Vibes&family=Inter:wght@400;500;600;700&display=swap');

.about-page {
  font-family: 'Inter', sans-serif;
  color: #333333;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

.about-header {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
  background-color: #FAFCFA;
  border-bottom: 1px solid var(--brand-border);
}

.about-main-title {
  font-size: 4.5rem;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.gold-divider-line {
  height: 3px;
  width: 80px;
  background-color: var(--brand-gold);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.gold-script-subtitle {
  font-family: 'Great Vibes', cursive;
  color: var(--brand-gold);
  font-size: 2rem;
  line-height: 1.2;
}

/* Feature Cards Section */
.about-intro-card {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-card-title {
  font-size: 2.2rem;
  color: var(--brand-dark);
  line-height: 1.1;
}

.about-card-text {
  color: #555555;
  line-height: 1.7;
  font-size: 1rem;
}

/* Section Containers */
.about-section {
  padding: 4rem 0;
}

.about-section-alt {
  background-color: #F7F9F7;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 4rem 0;
}

.about-section-title {
  font-size: 3rem;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

/* Team Member Cards */
.team-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--brand-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-gold);
}

.team-badge-icon {
  width: 48px;
  height: 48px;
  background-color: var(--brand-dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  /* margin-bottom: 1.25rem; */
}

/* .team-badge-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
} */

.team-card-name {
  font-size: 1.8rem;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.team-card-role {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--brand-gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.team-card-desc {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Culture Quote Box */
.culture-quote-box {
  background-color: var(--brand-dark);
  color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(27, 59, 43, 0.2);
}

.culture-quote-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* Commitment Box */
.commitment-box {
  background-color: #ffffff;
  border-left: 5px solid var(--brand-gold);
  border-radius: 0 8px 8px 0;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.commitment-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444444;
}

/* Buttons */
.btn-gold-brand {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  padding: 0.65rem 1.75rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-gold-brand:hover {
  background-color: var(--brand-gold-light);
  border-color: var(--brand-gold-light);
  color: var(--brand-dark);
}

.btn-dark-brand {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  padding: 0.65rem 1.75rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-dark-brand:hover {
  background-color: #12291d;
  border-color: #12291d;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .about-main-title {
    font-size: 3.2rem;
  }

  .about-section-title {
    font-size: 2.3rem;
  }
}
.about-hero-title {
  font-size: 4.8rem;
  line-height: 0.95;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}
.about-hero-sub {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2rem;
    max-width: 480px;
}
.about-hero-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.about-hero-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.about-section-title {
  font-size: 3.2rem;
  line-height: 1;
  color: var(--brand-dark);
}
.our-story-img-wrapper, .different-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.our-story-img, .different-image img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
}
/* .trust-badge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.trust-badge-desc {
  font-size: 0.82rem;
  color: #666666;
  margin-bottom: 0;
} */
@media (max-width: 767.98px) {
  .about-hero-title {
    font-size: 3.4rem;
  }
  .about-section-title {
    font-size: 2.4rem;
  }
}






/* ========================================
   LEFT CONTENT
======================================== */

.different-content {
    padding: 40px 45px;
}




/* ========================================
   FEATURE ITEM
======================================== */

.different-item {
    display: flex;
    align-items: flex-start;

    margin-bottom: 18px;
}


/* ========================================
   ICON
======================================== */

.different-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}


/* ========================================
   TEXT
======================================== */

.different-info {
    padding-top: 2px;
}

.different-info h3 {
  font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--brand-dark);
    line-height: 1;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.different-info p {
    margin: 0;
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.45;
    max-width: 430px;
}


/* ========================================
   RIGHT IMAGE
======================================== */

.different-image {
    width: 100%;
    height: 100%;

    min-height: 430px;

    overflow: hidden;
}

.different-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
       Show the right side of the image
       and crop the unwanted middle area.
    */
    object-position: right center;
}


/* ========================================
   DESKTOP
======================================== */

@media (min-width: 992px) {

    .different-section {
        min-height: 430px;
    }

    .different-content {
        padding: 35px 45px;
    }

    .different-image {
        min-height: 430px;
    }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .different-content {
        padding: 35px 30px;
    }

    .different-heading h2 {
        font-size: 27px;
    }

    .different-image {
        min-height: 400px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .different-content {
        padding: 30px 25px;
    }

    .different-heading {
        margin-bottom: 25px;
    }

    .different-heading h2 {
        font-size: 25px;
    }

    .different-item {
        margin-bottom: 20px;
    }

    .different-image {
        height: 350px;
        min-height: 350px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 575px) {

    .different-content {
        padding: 30px 20px;
    }

    .different-heading {
        gap: 10px;
    }

    .different-heading h2 {
        font-size: 23px;
    }

    .heading-line {
        width: 30px;
    }

    .different-icon {
        width: 42px;
        min-width: 42px;
        margin-right: 10px;
    }

    .different-info h3 {
        font-size: 16px;
    }

    .different-info p {
        font-size: 14px;
    }

    .different-image {
        height: 280px;
        min-height: 280px;
    }

}
/* ========================================
   OUR TEAM
======================================== */

.our-team-section {
    padding: 90px 0;
    background: #f7f7f5;
}


/* ========================================
   SECTION HEADING
======================================== */

.team-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.team-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c49a45;
}

.team-heading h2 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #123b2a;
    text-transform: uppercase;
}

.team-heading p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}


/* ========================================
   TEAM CARD
======================================== */

.team-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* ========================================
   TEAM IMAGE
======================================== */

.team-image {
    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    /* background: #ddd; */
}

.team-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}


/* ========================================
   TEAM CONTENT
======================================== */

.team-content {
    padding: 25px 0 8px;
    /* text-align: center; */
}

.team-content h3 {
    margin: 0 0 5px;

    font-size: 24px;
    font-weight: 800;

    color: #163d2d;

    text-transform: uppercase;
}

.team-role {
    display: block;

    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #bd913b;

    text-transform: uppercase;
}

.team-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #666;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .our-team-section {
        padding: 70px 0;
    }

    .team-heading {
        margin-bottom: 40px;
    }

    .team-heading h2 {
        font-size: 40px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 575px) {

    .our-team-section {
        padding: 60px 0;
    }

    .team-heading {
        margin-bottom: 35px;
    }

    .team-heading h2 {
        font-size: 34px;
    }

    .team-heading p {
        font-size: 15px;
    }

    .team-content {
        padding: 22px 20px 25px;
    }

}
/* ========================================
   TEAM QUOTE SECTION
======================================== */

.team-quote-section {
    padding: 55px 0;
    background: #073b2a;
    color: #ffffff;
}

.team-quote-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    max-width: 1000px;
    margin: 0 auto;
}

.quote-icon {
    flex-shrink: 0;

    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #d2a34a;
    border-radius: 50%;

    color: #d2a34a;
    font-size: 34px;
}

.quote-text h3 {
  font-family: 'Great Vibes', cursive;
    margin: 0 0 10px;

    font-size: 28px;
    line-height: 1.3;
    /* font-weight: 700; */

    color: #d2a34a;
}

.quote-text p {
    margin: 0;

    max-width: 850px;

    font-size: 18px;
    line-height: 1.6;

    color: #ffffff;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 767px) {

    .team-quote-section {
        padding: 45px 0;
    }

    .team-quote-content {
        gap: 20px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;

        font-size: 27px;
    }

    .quote-text h3 {
        font-size: 23px;
    }

    .quote-text p {
        font-size: 16px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 575px) {

    .team-quote-content {
        flex-direction: column;
        text-align: center;
    }

    .quote-text h3 {
        font-size: 21px;
    }

    .quote-text p {
        font-size: 15px;
    }
}

 /* ---- Bottom Trust Badges ---- */
.sp-trust-section {
  background-color: #ffffff;
  border-top: 1px solid var(--brand-border);
}

.trust-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-dark);
}

.trust-badge-icon svg {

  fill: currentColor;
}

.trust-badge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.trust-badge-desc {
  font-size: 0.82rem;
  color: #666666;
  margin-bottom: 0;
}
/* ========================================
   OUR COMMITMENT
======================================== */

.commitment-section {
    padding: 100px 0;
    background: #f7f7f5;
}


/* ========================================
   PARAGRAPHS
======================================== */

.commitment-intro {
    font-size: 19px !important;
    line-height: 1.7 !important;
    color: #333 !important;
}

/* ========================================
   COMMITMENT LIST
======================================== */

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.commitment-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-top: 1px solid #dedede;
}

.commitment-list li:last-child {
    border-bottom: 1px solid #dedede;
}


/* Check icon */

.commitment-check {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #123b2a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}


/* List heading */

.commitment-list strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #123b2a;
}


/* ========================================
   IMAGE
======================================== */

.commitment-image-wrapper {
    position: relative;

    padding-left: 25px;
}

.commitment-image {
    position: relative;

    overflow: hidden;

    min-height: 600px;

    background: #ddd;
}

.commitment-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        transparent 45%
    );
}

.commitment-image img {
    width: 100%;
    height: 600px;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.commitment-image-wrapper:hover img {
    transform: scale(1.03);
}


/* ========================================
   IMAGE CAPTION
======================================== */

.commitment-image-caption {
    position: absolute;

    left: 0;
    bottom: 30px;

    z-index: 2;

    padding: 22px 25px;

    background: #123b2a;

    color: #ffffff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.commitment-image-caption span {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #d2a34a;
}

.commitment-image-caption strong {
    font-size: 19px;
    font-weight: 700;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .commitment-section {
        padding: 75px 0;
    }

    .commitment-image-wrapper {
        padding-left: 0;
    }

    .commitment-image,
    .commitment-image img {
        min-height: 500px;
        height: 500px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 575px) {

    .commitment-section {
        padding: 60px 0;
    }

    .commitment-intro {
        font-size: 17px !important;
    }

    .commitment-image,
    .commitment-image img {
        min-height: 400px;
        height: 400px;
    }

    .commitment-image-caption {
        bottom: 20px;
        padding: 17px 20px;
    }

    .commitment-image-caption strong {
        font-size: 16px;
    }

}