/**
 * About Us page styles
 *
 * @package PartsDozer
 */

/* ==========================================================
   Page wrapper
========================================================== */
.about-page {
    background: var(--light-bg);
    padding-bottom: 100px;
}

/* ==========================================================
   Dark hero (shared with quote-request)
========================================================== */
 
.page-hero {
	margin-bottom:100px;
}
.page-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.page-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color .2s;
}

.page-hero__breadcrumbs a:hover {
    color: #fff;
}

.page-hero__breadcrumbs .sep {
    color: rgba(255, 255, 255, 0.4);
	max-height:24px;
}

.page-hero__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

/* ==========================================================
   Intro section (image + text)
========================================================== */
.about-intro {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
	display:flex;
	justify-content:space-between;
    gap: 0;
    margin-bottom: 100px;
	padding:12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.about-intro__media {
    position: relative;
    min-height: 520px;
	width:31%;
	border-radius:20px;
    overflow: hidden;
}

.about-intro__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro__content {
    padding: 48px;
    display: flex;
	width:68%;
    flex-direction: column;
    justify-content: center;
}

.about-intro__title,
.about-why__title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
    margin: 0 0 32px;
    line-height: 1.2;
}

.about-intro__text p{
    font-size: 16px;
    line-height: 1.7;
    color: #191919;
    margin: 0 0 18px;
}

.about-intro__text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   Why choose section
========================================================== */
.about-why {
    margin-top: 0;
}

.about-why__header {
    text-align: center;
    max-width: 1240px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

.about-why__subtitle {
    font-size: 16px;
    color: #191919;
    line-height: 1.7;
    margin: 0;
}

.about-why__grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-why__features {
	width:54.8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-why__media {
    border-radius: 20px;
    overflow: hidden;
	width:41.9%;
    min-height: 520px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.about-why__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================
   Feature card
========================================================== */
.feature-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    background: linear-gradient(135deg, #5cbf3a 0%, #3d8f1f 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 16px rgba(76, 175, 44, 0.3);
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 12px;
    line-height: 1.3;
}

.feature-card__text {
    font-size: 14px;
    line-height: 1.5;
    color: #6b6b6b;
    margin: 0;
}

/* ==========================================================
   Responsive
========================================================== */
@media (max-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-intro__media {
        min-height: 320px;
    }

    .about-intro__content {
        padding: 40px 32px;
    }

    .about-why__media {
        min-height: 360px;
        order: -1;
    }
}
@media(max-width:950px) {
	    .about-why__grid {
        /*grid-template-columns: 2fr;*/
		flex-direction:column;
    }
	.about-why__grid > * {
		width:100%;
	}
}
@media (max-width: 768px) {
    .page-hero {
        padding: 20px 0 28px;
        margin-bottom: 24px;
    }

    .page-hero__title {
        font-size: 28px;
    }

    .about-page {
        padding-bottom: 48px;
    }

    .about-intro {
        margin-bottom: 48px;
        border-radius: 14px;
    }

    .about-intro__content {
        padding: 28px 22px;
    }

    .about-intro__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .about-intro__text p {
        font-size: 14px;
    }

    .about-why__title {
        font-size: 24px;
    }

    .about-why__features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        padding: 22px 20px;
        border-radius: 14px;
    }

    .feature-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .feature-card__icon svg {
        width: 28px;
        height: 28px;
    }
}
@media(max-width:620px) {
	.about-why__media{
		min-height:auto;
	}
}
@media(max-width:1250px) {
	.about-intro__media {
		width:40%;
	}
}
@media(max-width:1000px) {
	.about-intro {
		flex-direction:column;
	}
	.about-intro > * {
		width:100%;
	}
}