@charset "utf-8";
/* ========================================
   GADETIN About Us Page Styles
   ======================================== */

/* Hero Banner */
.about-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 59, 105, 0.6);
}
.about-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.about-hero .hero-title {
    font-family: 'LibreBaskerville-Regular-2', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.about-hero .hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section common */
.about-section {
    padding: 5rem 0;
}
.bg-light {
    background: #f2f5f1;
}
.about-section-title {
    font-family: 'LibreBaskerville-Regular-2', Georgia, serif;
    font-size: var(--fz-h2);
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #1C1C1C;
    font-weight: normal;
}

/* ========================================
   Our Story Begins — Full-bleed Layout
   ======================================== */
.story-section {
    background: #fff;
}
.story-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.story-img-col {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 400px;
    overflow: hidden;
}
.story-img-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.7s ease;
}
.story-img-col img:hover {
    transform: scale(1.05);
}
.story-text-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 2rem 60px 2rem;
}
.story-title {
    font-family: 'LibreBaskerville-Regular-2', Georgia, serif;
    font-size: clamp(24px, 3vw, 36px);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: #1C1C1C;
    margin-bottom: 32px;
    font-weight: normal;
}
.story-body p {
    font-size: var(--fz-btn);
    line-height: 1.5;
}
.story-cta {
    margin-top: 40px;
}
.btn-lime {
    display: inline-block;
    background: #C5F870;
    color: #1C1C1C;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}
.btn-lime:hover {
    background: #b0f05f;
    color: #1C1C1C;
    text-decoration: none;
}

/* ========================================
   Our Team — Sage Background + Zero-gap Card
   ======================================== */
.team-section {
    background: #EEF0EC;
    padding: 3rem 0px;
}
.team-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    border-bottom: 1px solid #084734;
    padding-bottom: 24px;
}
.team-header .about-section-title {
    margin-bottom: 0;
}
.team-arrows {
    display: flex;
    gap: 12px;
}
.team-arrow-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #084734;
    border: none;
}
.team-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.team-card {
    flex: 0 0 50%;
    max-width: 50%;
    background: #fff;
    padding: 50px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
}
.team-card-title {
    font-family: 'LibreBaskerville-Regular-2', Georgia, serif;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: #1C1C1C;
    line-height: 1.5;
    margin-bottom: 32px;
    font-weight: normal;
}
.team-card-strength {
    font-size: var(--fz-body-lg);
    color: #1C1C1C;
    margin-bottom: 32px;
}
.team-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.team-detail-item {
    /* each detail block */
    font-size: var(--fz-btn);
}
.team-detail-title {
    color: #505050;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.team-detail-desc {
    color: #666;
    line-height: 1.4;
    font-weight: 300;
}
.team-img-col {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 450px;
    overflow: hidden;
}
.team-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.team-img-col img:hover {
    transform: scale(1.05);
}

/* Team Slider */
.team-slider {
    position: relative;
    overflow: hidden;
}
.team-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.team-slide--active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.team-slide--exit-left {
    opacity: 0;
    transform: translateX(-60px);
}
.team-slide--exit-right {
    opacity: 0;
    transform: translateX(60px);
}
.team-slide--enter-left {
    transform: translateX(-60px);
}
.team-slide--enter-right {
    transform: translateX(60px);
}

/* Two-column layout: image + text */
.about-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.about-row .about-img-col {
    flex: 0 0 50%;
    max-width: 50%;
}
.about-row .about-text-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-row .about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /*max-width: 720px;*/
}
.about-text-inner {
    padding: 2rem 2.5rem 2rem 2.5rem;
}
.about-text-inner p{
    font-size: var(--fz-btn);
}
.mission-section .about-text-inner p{
    font-size: var(--fz-btn);
    line-height: 1.6;
    margin: 0;
    padding: 15px 1rem;
    text-align: justify;
}
.mission-section .about-text-inner p:first-of-type{
    padding-top: 0;
    margin-top: 2rem;
    padding-bottom: 1.5rem;
}
.about-img-wrapper{
    position: relative;
}
.sustainability-section .about-img-wrapper:before{
    content: "";
    display: block;
    position: absolute;
    width: 286px;
    height: 267px;
    background: url(../images/diqiu.png) center center no-repeat;
    background-size: cover;
    right: 0px;
    top: 50%;
     -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    transform:translateY(-50%);
    transition: all 0.4s ease 0s;
}

.sustainability-section .about-img-wrapper{
    padding-right: 3.5rem;
}
.sustainability-section .about-img-col:hover .about-img-wrapper:before{
    margin-top:-1rem;
}
/* Green CTA Button */
.btn-about {
    display: inline-block;
    background: #86e086;
    color: #004d38;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 28px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.btn-about:hover {
    opacity: 0.9;
    color: #004d38;
    text-decoration: none;
}

/* Section subtitle / accent */
.about-subtitle {
    font-family: 'LibreBaskerville-Regular-2', Georgia, serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1C1C1C;
    margin-bottom: 20px;
}

/* Mission quote style */
.about-quote {
    border-left: 1px solid #86e086;
    color:#505050 ;
}
.about-quote:hover,.about-active{
    border-left: 1px solid #084734;
    color:#000000 ;
}

/* Values subtitle */
.about-detail-item{
    margin-bottom: 1.5rem;
    
}
.about-detail-item p{
    line-height: 1.5em;
}
.about-detail-item .detail-title{
    color: #000;
    font-weight: 600;
}
.about-values-subtitle {
    font-size: 30px !important;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Sustainability icon overlay */
.sustainability-section{
    padding: 2rem 0;
}
.sustainability-section .about-detail-item{
   line-height: 1.6em;
}

/* Rounded top-left image */
.about-rounded-tl img {
    border-top-left-radius: 4rem;
    overflow: hidden;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet landscape */
@media (min-width: 992px) and (max-width: 1199px) {
    .about-text-inner {
        padding: 30px 35px;
    }
    .about-section-title {
        font-size: 28px;
    }
    .story-text-col {
        padding: 48px 36px;
    }
    .team-card {
        padding: 40px 48px;
    }
}

/* Tablet portrait */
@media (min-width: 768px) and (max-width: 991px) {
    .about-hero {
        height: 350px;
    }
    .about-section {
        padding: 50px 0;
    }
    .about-section-title {
        font-size: 24px;
    }
    .about-text-inner {
        padding: 25px 20px;
    }
    .about-hero .hero-subtitle {
        font-size: 16px;
    }
    /* Story section */
    .story-img-col {
        min-height: 350px;
    }
    .story-text-col {
        padding: 36px 24px;
    }
    .story-title {
        font-size: 22px;
    }
    /* Team section */
    .team-section {
        padding: 64px 0 80px;
    }
    .team-card {
        padding: 32px 24px;
    }
    .team-card-title {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-hero {
        height: 280px;
    }
    .about-section {
        padding: 40px 0;
    }
    .about-section-title {
        margin-bottom: 20px;
    }
    .about-row {
        flex-direction: column;
    }
    .about-row .about-img-col,
    .about-row .about-text-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .about-row .about-img-col {
        /*max-height: 580px;*/
        overflow: hidden;
    }
    .about-text-inner {
        padding: 25px 15px;
    }
    .about-hero .hero-subtitle {
        font-size: 14px;
    }
    .about-img-wrapper .about-icon-overlay {
        width: 64px;
        height: 64px;
        bottom: 15px;
        right: 15px;
    }
    .about-values-subtitle {
        font-size: 22px !important;
        margin-bottom: 20px;
    }

    /* Story section mobile */
    .story-grid {
        flex-direction: column;
    }
    .story-img-col,
    .story-text-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    /*.story-img-col {*/
    /*    max-height: 580px;*/
    /*}*/
    .story-text-col {
        padding: 32px 16px;
    }

    /* Team section mobile */
    .team-section {
        padding: 48px 0 60px;
    }
    .team-grid {
        flex-direction: column;
    }
    .team-card,
    .team-img-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .team-card {
        padding: 28px 16px;
    }
    .team-img-col {
        min-height: 260px;
    }
    .team-header {
        margin-bottom: 32px;
        padding-bottom: 16px;
    }
    .team-card-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Wide screen: align text columns with container-fluid boundary */
@media (min-width: 1200px) {
    /* Right-side text: align right edge with container-fluid */
    .story-grid > .story-text-col:nth-child(2) {
        padding-right: 4%;
        padding-left: 85px;
    }
    /* Left-side text: align left edge with container-fluid */
    .story-grid > .story-text-col:nth-child(1) {
        padding-left: 4%;
        padding-right: 85px;
    }
    .about-row > .about-text-col:nth-child(2) {
        padding-right: 4%;
        padding-left: 85px;
    }
    /* Left-side text: align left edge with container-fluid */
    .about-row > .about-text-col:nth-child(1) {
        padding-left: 4%;
        padding-right: 85px;
    }
    /* Reset horizontal padding on inner wrapper (handled by parent now) */
    .about-row > .about-text-col > .about-text-inner {
        padding-left: 0;
        padding-right: 0;
    }
}
