/* CSS untuk Halaman Tentang Kami */

/* Page Banner */
.page-banner {
    background-image: url('../img/about-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    position: relative;
    margin-bottom: 60px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 71, 42, 0.7);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb i {
    font-size: 12px;
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* Section Titles */
.section-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.3;
}

/* About Intro */
.about-intro {
    padding: 80px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content {
    padding-right: 20px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(12, 113, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-content p {
    font-size: 16px;
    color: var(--text-color);
}

.about-intro-images {
    position: relative;
}

.about-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 500px;
}

.about-img-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
}

.about-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-img-item:hover img {
    transform: scale(1.05);
}

.about-img-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.about-img-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.about-img-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 15px;
    box-shadow: var(--shadow-md);
}

.experience-badge .years {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    margin-top: 5px;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-box,
.vision-box,
.values-box {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover,
.values-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 30px;
}

.mission-box h3,
.vision-box h3,
.values-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mission-box p {
    color: var(--text-color);
    line-height: 1.7;
}

.vision-box ul {
    text-align: left;
    padding-left: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.vision-box ul li {
    margin-bottom: 10px;
    position: relative;
}

.values-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.value-item {
    padding: 8px 16px;
    background-color: rgba(12, 113, 61, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

/* Our Story / Timeline */
.our-story {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--gray-300);
}

.timeline-item {
    position: relative;
    margin-bottom: 70px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    left: calc(50% - 10px);
    top: 20px;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    border: 10px solid transparent;
    border-right-color: var(--white);
    top: 20px;
    left: -20px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    border: 10px solid transparent;
    border-left-color: var(--white);
    top: 20px;
    right: -20px;
}

.timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-position {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-content p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    position: relative;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.rating {
    color: var(--secondary-color);
    font-size: 16px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--dark-color);
}

.user-info span {
    font-size: 14px;
    color: var(--gray-500);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Partners */
.partners-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.partner-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-item img {
    max-width: 80%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Office Map */
.office-map {
    padding: 80px 0;
}

.map-container {
    margin-top: 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.office-branches {
    margin-top: 50px;
}

.office-branches h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.branch-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.branch-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.branch-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(12, 113, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.branch-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.branch-content p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-intro-grid {
        gap: 30px;
    }
    
    .about-img-grid {
        height: 450px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-content {
        padding-right: 0;
    }
    
    .about-img-grid {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -20px;
        border-right-color: var(--white);
        border-left-color: transparent;
        right: auto;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-img-grid {
        height: 400px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 100px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .about-img-grid {
        display: block;
        height: auto;
    }
    
    .about-img-item {
        height: 250px;
        margin-bottom: 15px;
    }
    
    .about-img-item:last-child {
        margin-bottom: 0;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
    }
    
    .experience-badge .years {
        font-size: 24px;
    }
    
    .experience-badge .text {
        font-size: 10px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}