/* About Slada Page Specific Styles */

:root {
    --slada-primary-blue: #3b82f6;
    /* Adjust based on image */
    --slada-dark-text: #1f2937;
    --slada-light-text: #6b7280;
    --slada-orange: #f97316;
    --slada-bg-light: #f9fafb;
}

.about-page-wrapper {
    font-family: 'Inter', sans-serif;
    color: var(--slada-dark-text);
    overflow-x: hidden;
}

.about-section {
    padding: 80px 0;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section 1: Business Intro */
.business-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}

.collage-col-1 {
    display: flex;
    flex-direction: column;
}

.collage-item {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    /* Slight rounding if needed */
}

/* Height adjustments for collage effect */
.collage-item.large {
    height: 400px;
}

.collage-item.small {
    height: 190px;
    margin-bottom: 20px;
}


.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #3b82f6;
    /* Blueish */
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--slada-light-text);
    margin-bottom: 30px;
}

.btn-link {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.btn-link:hover {
    opacity: 0.8;
}

/* Section 2: Core Values */
.core-values-section {
    background-color: #f8fafc;
    /* Very light blue/gray bg */
}

.core-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
}

.value-number {
    font-size: 40px;
    font-weight: 700;
    color: #3b82f6;
    /* Outline or solid blue */
    line-height: 1;
}

.value-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.value-content p {
    font-size: 15px;
    color: var(--slada-light-text);
    line-height: 1.6;
}

/* Section 3: Why Choose Us */
.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 80px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    fill: #d1d5db;
    /* Light gray icon color */
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--slada-light-text);
    line-height: 1.6;
}

/* Section 4: Innovations & Skills */
.innovations-section {
    padding-bottom: 100px;
}

.innovations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Removing gap for overlap effect if needed, or keeping it clean */
}

.innovations-left {
    position: relative;
    min-height: 500px;
}

.orange-box {
    background-color: #ff5722;
    /* Vivid Orange */
    color: white;
    padding: 40px 20px;
    width: auto;
    max-width: 260px;
    /* Takes up part of the image area */
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.orange-box-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.orange-box-icon svg {
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.orange-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

.innovations-bg-image {
    position: absolute;
    top: 0;
    /* Removed offset to show full image height */
    right: 0;
    width: 80%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    z-index: 1;
}

.innovations-right {
    padding-left: 60px;
    padding-top: 40px;
}

.skills-progress {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
}

.progress-track {
    width: 100%;
    height: 10px;
    background-color: #f3f4f6;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #000;
    border-radius: 5px;
}

.progress-bar.orange {
    background-color: #ff5722;
}

/* Responsive */
@media (max-width: 992px) {

    .business-intro-grid,
    .core-values-grid,
    .benefits-grid,
    .innovations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .innovations-left {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .orange-box {
        width: 100%;
    }

    .innovations-bg-image {
        position: relative;
        top: 0;
        width: 100%;
        height: 300px;
    }

    .innovations-right {
        padding-left: 0;
    }
}

/* CTA Banner Styles (Shared) */
.cta-banner {
    background-color: #800000;
    /* Maroon */
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    background-color: #D4AF37;
    /* Gold */
    color: #1a1a1a;
    padding: 15px 30px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #fff;
}