/* ========================
   ABOUT PAGE SPECIFIC STYLES
   ======================== */

/* About Overview Section */
.about-overview {
    background: var(--white);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.about-content {
    padding: 2rem;
}

.about-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Service Options Section */
.service-options-section {
    background: var(--light-color);
}

.option-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.option-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.option-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.option-detail-card:hover .option-icon-large {
    transform: rotate(10deg) scale(1.1);
}

.option-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.option-detail-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.option-detail-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.address-box {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    flex-wrap: wrap;
}

.address-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-note {
    background: rgba(3, 169, 244, 0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.feature-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.additional-info {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Who We Service Section */
.who-we-service {
    background: var(--white);
}

.service-client-card {
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-client-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-client-card:hover::before {
    transform: scaleX(1);
}

.client-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-client-card:hover .client-icon {
    transform: rotate(10deg) scale(1.1);
}

.client-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-client-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-client-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.client-note {
    background: rgba(3, 169, 244, 0.08);
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    border-left: 4px solid var(--primary-color);
}

/* Why Choose About Section */
.why-choose-about {
    background: var(--light-color);
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

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

@media (max-width: 991px) {
    .about-content {
        padding: 1.5rem 0;
    }

    .about-content .lead {
        font-size: 1.1rem;
    }

    .option-detail-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }

    .service-client-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .about-content .lead {
        font-size: 1rem;
    }

    .option-detail-card {
        padding: 2rem 1.5rem;
    }

    .option-icon-large {
        width: 80px;
        height: 80px;
    }

    .option-icon-large i {
        font-size: 2.5rem;
    }

    .option-detail-card h3 {
        font-size: 1.5rem;
    }

    .service-client-card {
        padding: 1.8rem 1.3rem;
    }

    .client-icon {
        width: 70px;
        height: 70px;
    }

    .client-icon i {
        font-size: 1.8rem;
    }

    .service-client-card h3 {
        font-size: 1.3rem;
    }

    .value-card {
        padding: 1.8rem 1.3rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-icon i {
        font-size: 1.8rem;
    }

    .value-card h4 {
        font-size: 1.2rem;
    }

    .additional-info {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .about-content .lead {
        font-size: 0.95rem;
    }

    .option-detail-card {
        padding: 1.5rem 1rem;
    }

    .option-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .option-icon-large i {
        font-size: 2.2rem;
    }

    .option-detail-card h3 {
        font-size: 1.3rem;
    }

    .option-detail-card p {
        font-size: 0.95rem;
    }

    .address-box,
    .feature-note {
        font-size: 0.9rem;
        padding: 0.9rem;
    }

    .service-client-card {
        padding: 1.5rem 1rem;
    }

    .client-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }

    .client-icon i {
        font-size: 1.6rem;
    }

    .service-client-card h3 {
        font-size: 1.2rem;
    }

    .service-client-card p {
        font-size: 0.9rem;
    }

    .client-note {
        font-size: 0.88rem;
        padding: 0.9rem;
    }

    .value-card {
        padding: 1.5rem 1rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 1.6rem;
    }

    .value-card h4 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .additional-info {
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .about-content .lead {
        font-size: 0.9rem;
    }

    .option-detail-card h3 {
        font-size: 1.2rem;
    }

    .service-client-card h3 {
        font-size: 1.1rem;
    }

    .value-card h4 {
        font-size: 1rem;
    }

    .additional-info {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .option-detail-card,
    .service-client-card,
    .value-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
