/* ===================================================
   About / Infos Page Styles
   Used by: infos.html
   =================================================== */

.about-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #243b53 50%, #2a5a8a 100%);
    padding: 140px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/meeting-01.jpg') center/cover no-repeat;
    opacity: 0.25;
}

.about-hero .container { position: relative; z-index: 2; }

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.93);
    max-width: 700px;
}

.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background: var(--gray-50, #f8f9fa);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900, #111);
}

.about-content p {
    color: var(--gray-700, #444);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #be123c;
    margin-bottom: 1.2rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--gray-900, #111);
}

.value-card p {
    color: var(--gray-700, #444);
    font-size: 0.95rem;
    line-height: 1.7;
}

.stats-section {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.93);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info-card i {
    font-size: 2rem;
    color: #be123c;
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--gray-700, #444);
}

.contact-info-card a {
    color: #be123c;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a.review-btn {
    color: white;
}

.review-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #be123c;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.review-btn:hover {
    background: #881337;
    color: white;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900, #111);
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--gray-700, #444);
    max-width: 600px;
    margin: 0 auto;
}

.cta-about {
    text-align: center;
    padding: 60px 0;
}

.cta-about .btn {
    display: inline-block;
    padding: 16px 40px;
    background: #be123c;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-about .btn:hover {
    background: #881337;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(190,18,60,0.3);
}
