/* ==========================================================
   SAM MARBLES & GRANITES - ABOUT PAGE
   about.css
   Theme: Blue & White
========================================================== */

:root {
    --primary-blue: #0d6efd;
    --secondary-blue: #0a4fb5;
    --dark-blue: #052c65;
    --light-blue: #f3f8ff;
    --white: #ffffff;
    --text-color: #444444;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ==========================================================
   COMMON SECTION STYLES
========================================================== */

section {
    padding: 70px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.7rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.section-title h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.section-description {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
}

/* ==========================================================
   ABOUT COMPANY SECTION
========================================================== */

.about-company {
    background: var(--light-blue);
}

.founder-section {
    max-width: 1100px;
    margin: auto;
}

.founder-content {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.founder-content h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.founder-content p {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: justify;
}

/* ==========================================================
   PRODUCTS SECTION
========================================================== */

.products-section {
    background: var(--white);
}

.products-section p {
    margin-bottom: 25px;
}

/* ==========================================================
   STRENGTH SECTION
========================================================== */

.strength-section {
    background: var(--light-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-blue);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card h3 {
    color: var(--dark-blue);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.feature-card h3 i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.feature-card p {
    line-height: 1.8;
    color: var(--text-color);
}

/* ==========================================================
   IDEOLOGY SECTION
========================================================== */

.ideology-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--light-blue);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.process-card h3 i {
    display: block;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* ==========================================================
   CONTACT SECTION
========================================================== */

.contact-section {
    background: var(--light-blue);
}

.contact-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    color: var(--white);
    padding: 60px 40px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.contact-box h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
}

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

@media (max-width: 992px) {

    section {
        padding: 60px 6%;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .founder-content {
        padding: 40px;
    }

}

@media (max-width: 768px) {

    section {
        padding: 50px 5%;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .section-title h3 {
        font-size: 1.1rem;
    }

    .founder-content {
        padding: 30px;
    }

    .founder-content h2 {
        font-size: 1.8rem;
    }

    .contact-box {
        padding: 40px 25px;
    }

    .contact-box h2 {
        font-size: 1.8rem;
    }

}

@media (max-width: 480px) {

    .section-title h2 {
        font-size: 1.6rem;
    }

    .founder-content {
        padding: 25px;
    }

    .founder-content h2 {
        font-size: 1.5rem;
    }

    .feature-card,
    .process-card {
        padding: 25px;
    }

    .contact-box h2 {
        font-size: 1.5rem;
    }

}
