/* About Section V3 - Professional & Mobile-First Design */
.about-section-v2 {
    padding: 80px 0;
    background: #ffffff;
}

/* Title Wrapper */
.about-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark, #0f0f0f);
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--text-light, #6b7280);
    font-weight: 400;
}

/* Content Wrapper - Two Column Layout */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Left: Description */
.about-description {
    padding-right: 20px;
}

.about-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark, #0f0f0f);
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light, #6b7280);
    margin-bottom: 20px;
}

/* Features List */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-dark, #0f0f0f);
}

.about-check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color, #FC3130);
    flex-shrink: 0;
}

/* CTA Button */
.about-cta-btn {
    display: inline-block;
    background: var(--primary-color, #FC3130);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(252, 49, 48, 0.2);
}

.about-cta-btn:hover {
    background: var(--primary-dark, #B43228);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 49, 48, 0.3);
}

/* Right: Main Image */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Bottom Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-gallery-item:hover img {
    transform: scale(1.1);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .about-content-wrapper {
        gap: 40px;
    }

    .about-description {
        padding-right: 0;
    }

    .about-image-wrapper {
        height: 400px;
    }

    .about-gallery-item {
        height: 300px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-section-v2 {
        padding: 60px 0;
    }

    .about-title-wrapper {
        margin-bottom: 40px;
    }

    .about-main-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    /* Stack vertically on mobile */
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Image first on mobile */
    .about-image-wrapper {
        order: -1;
        height: 300px;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-feature {
        font-size: 0.95rem;
    }

    .about-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    /* Gallery - Single column on mobile */
    .about-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .about-gallery-item {
        height: 250px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-section-v2 {
        padding: 40px 0;
    }

    .about-main-title {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 0.9rem;
    }

    .about-image-wrapper {
        height: 250px;
        border-radius: 12px;
    }

    .about-heading {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-feature {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .about-check-icon {
        width: 20px;
        height: 20px;
    }

    .about-cta-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .about-gallery-item {
        height: 220px;
        border-radius: 12px;
    }
}
