/* ========== About Page Styles ========== */

/* Hero */
.about-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero .hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero .breadcrumbs {
    font-size: 16px;
    opacity: 0.9;
}

/* Our Story */
.story-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-desc p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

/* Stats */
.about-stats {
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    color: #f3821a;
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-val {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 14px;
    color: #666;
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Vision & Mission */
.about-vision-mission {
    padding: 80px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.vm-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.vm-img {
    position: relative;
    height: 300px;
    background: #eee;
}

.vm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
}

.vm-content {
    padding: 30px;
    text-align: left;
}

.vm-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.vm-content p {
    color: #666;
    line-height: 1.6;
}

/* Values (Redesigned) */
.about-values.dark-section {
    background: #111;
    /* Dark background */
    color: #fff;
    padding: 80px 0;
}

.values-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.values-text {
    flex: 1;
}

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    border-radius: 4px;
}

.values-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.values-desc {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Advantages V2 */
.advantages-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.adv-card-v2 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.adv-icon-check {
    width: 24px;
    height: 24px;
    background: #f3821a;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 4px;
}

.adv-info h3 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 700;
}

.adv-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Qualifications */
.about-qualifications {
    padding: 80px 0;
    text-align: center;
}

.color-orange {
    color: #f3821a;
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.qual-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.qual-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.qual-content {
    padding: 20px;
}

.qual-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.qual-content p {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    border-top: none;
}

.team-info h3 {
    font-size: 18px;
    margin: 0 0 5px;
    color: #333;
}

.team-role {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
}

/* Response */
@media (max-width: 991px) {

    .story-layout,
    .values-layout {
        flex-direction: column;
    }

    .stats-grid,
    .qual-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .team-grid,
    .stats-grid,
    .qual-grid,
    .advantages-grid-v2,
    .featured-grid,
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-group.grid-2 {
        grid-template-columns: 1fr;
    }

    .cta-bar-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .values-title {
        font-size: 32px;
    }
}

/* Showroom Section */
.about-showroom {
    padding: 80px 0;
}

.showroom-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.showroom-text {
    flex: 1;
}

.showroom-desc {
    font-size: 14px;
    line-height: 2;
    color: #666;
    text-transform: uppercase;
    text-align: justify;
}

.showroom-slider {
    flex: 1;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.about-showroom-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-showroom-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-showroom-slide.active {
    opacity: 1;
    z-index: 1;
}

.about-showroom-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-showroom-prev,
.about-showroom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.about-showroom-prev:hover,
.about-showroom-next:hover {
    background: #f3821a;
}

.about-showroom-prev {
    left: 20px;
}

.about-showroom-next {
    right: 20px;
}

/* Featured Projects */
.about-featured {
    padding: 80px 0;
}

.featured-header {
    margin-bottom: 40px;
}

.featured-title {
    background: #f3821a;
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    left: -15px;
    /* Pull left slightly */
}

.featured-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    transition: transform 0.3s;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.featured-label {
    background: #f3821a;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
}

/* CTA Bar */
.about-cta-bar {
    background: #dcc0a3;
    padding: 40px 0;
}

.cta-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-link {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    /* Based on image contrast, white might be better or dark grey. Using white for now or #5d4037 layout matches image better? Image shows dark text */
    color: #5d4037;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-link:hover {
    color: #fff;
}

/* Quote Form */
.about-quote {
    padding: 80px 0;
}

.quote-layout {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.quote-image {
    flex: 1;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.quote-form-wrapper {
    flex: 1;
}

.form-group.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Image shows roughly 3 cols */
    gap: 15px;
}

.checkbox-group label {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-upload-btn {
    background: #f2f2f2;
    border: 1px solid #ccc;
    padding: 6px 15px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 10px;
}

.full-width {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
}