#about {
    background: linear-gradient(135deg, #f8fcf8 0%, #f0f7f0 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    width: 100%;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path fill="%231d4829" fill-opacity="0.02" d="M60,0 C93.137,0 120,26.863 120,60 C120,93.137 93.137,120 60,120 C26.863,120 0,93.137 0,60 C0,26.863 26.863,0 60,0 Z M60,15 C37.909,15 20,32.909 20,55 C20,77.091 37.909,95 60,95 C82.091,95 100,77.091 100,55 C100,32.909 82.091,15 60,15 Z"/></svg>');
    background-size: 180px;
    opacity: 0.4;
}

.section-title {
    color: var(--primary-brown);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
    width: 100%;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-brown);
    border-radius: 2px;
}

/* Layout yang lebih terstruktur */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Profil Perusahaan */
.company-profile {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--soft-shadow);
    width: 100%;
    max-width: 100%;
    text-align: center;
    border: 1px solid rgba(29, 72, 41, 0.1);
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.profile-icon {
    font-size: 3rem;
    color: var(--secondary-brown);
    margin-bottom: 1rem;
    background: rgba(212, 175, 55, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-profile h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.profile-description {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto 2rem;
}

.profile-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    width: 100%;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(29, 72, 41, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-brown);
    font-weight: 500;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.highlight-item i {
    color: var(--secondary-brown);
}

/* Filosofi Perusahaan */
.philosophy-section {
    width: 100%;
    max-width: 100%;
}

.philosophy-title {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.philosophy-icon {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.philosophy-title h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.philosophy-subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 100%;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.philosophy-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 3px solid transparent;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(29, 72, 41, 0.1);
    border-top: 3px solid var(--secondary-brown);
}

.philosophy-card-icon {
    font-size: 2rem;
    color: var(--primary-brown);
    background: rgba(29, 72, 41, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.philosophy-card:hover .philosophy-card-icon {
    background: rgba(212, 175, 55, 0.2);
    color: var(--secondary-brown);
    transform: scale(1.1);
}

.philosophy-card h5 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-card p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Nilai-nilai Perusahaan */
.values-section {
    width: 100%;
    max-width: 100%;
}

.values-title {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.values-icon {
    font-size: 2.5rem;
    color: var(--secondary-brown);
    margin-bottom: 1rem;
}

.values-title h3 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    width: 100%;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    width: 100%;
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(29, 72, 41, 0.1);
    border-left: 4px solid var(--secondary-brown);
}

.value-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-brown);
    min-width: 60px;
    opacity: 0.8;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-content h5 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-content p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Call to Action */
.about-cta {
    background: linear-gradient(135deg, var(--primary-brown), #2a5c3a);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(29, 72, 41, 0.2);
}

.cta-content {
    flex: 1;
}

.cta-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content .btn-primary {
    background-color: var(--secondary-brown);
    border-color: var(--secondary-brown);
    color: var(--primary-brown);
    font-weight: 600;
    padding: 0.75rem 2rem;
    display: inline-block;
    text-align: center;
}

.cta-content .btn-primary:hover {
    background-color: #e6c231;
    border-color: #e6c231;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.cta-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Animasi */
.animate-fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsif */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .philosophy-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .highlight-item {
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item {
        min-width: 160px;
    }

    .about-cta {
        padding: 2.5rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .company-profile {
        padding: 2rem;
    }

    .profile-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .highlight-item {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-card {
        padding: 1.5rem;
    }

    .value-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .value-number {
        min-width: auto;
        margin-bottom: 0.5rem;
    }

    .about-cta {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .cta-icon {
        order: -1;
        font-size: 3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .company-profile h3,
    .philosophy-title h3,
    .values-title h3 {
        font-size: 1.5rem;
    }

    .profile-description {
        font-size: 1rem;
    }

    .highlight-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .about-cta h4 {
        font-size: 1.5rem;
    }

    .philosophy-card {
        padding: 1.25rem;
    }

    .value-item {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    #about {
        padding: 3rem 0;
    }

    .container {
        padding: 0 15px;
    }

    .company-profile,
    .philosophy-card,
    .value-item {
        border-radius: 12px;
    }

    .cta-content .btn-primary {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}
