/* ========================================
   BORU ABOUT PAGE - SPECIFIC SECTIONS
   Values and Coverage sections only
   (Team section moved to boru-base-pages.css)
   ======================================== */

/* Section Headers */
.boru-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.boru-section-subtitle {
    color: #4ECDC4;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boru-section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.boru-section-description {
    font-size: 18px;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Values Section - reuses boru-services-grid and boru-service-card */
.boru-values-section {
    padding: 100px 0;
    background: #e8f4f5;
    border-top: 3px solid #333;
    border-bottom: 3px solid #333;
}

.boru-values-section .boru-services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

/* Yellow CTA Buttons for value cards */
.boru-values-section .boru-service-card {
    display: flex;
    flex-direction: column;
}

.boru-values-section .boru-service-card .boru-service-features {
    flex-grow: 1;
    margin-bottom: 25px;
}

.boru-values-section .boru-service-card .boru-cta-button {
    background: #ffc107;
    color: #333;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.3s;
    margin-top: auto;
}

.boru-values-section .boru-service-card .boru-cta-button:hover {
    background: #ffb81c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Coverage Section */
.boru-coverage-section {
    padding: 100px 0;
    background: white;
    border-top: 3px solid #333;
}

.boru-coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.boru-coverage-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.boru-coverage-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.boru-coverage-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.boru-coverage-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4ECDC4;
    transition: all 0.3s;
}

.boru-coverage-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.boru-coverage-item i {
    color: #4ECDC4;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.boru-coverage-item h4 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.boru-coverage-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.boru-coverage-map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.boru-coverage-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.boru-coverage-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .boru-values-section,
    .boru-coverage-section {
        padding: 60px 0;
    }

    .boru-section-title {
        font-size: 32px;
    }

    .boru-coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .boru-coverage-highlights {
        grid-template-columns: 1fr;
    }

    .boru-values-section .boru-services-grid {
        grid-template-columns: 1fr;
    }

    .boru-coverage-map img,
    .boru-coverage-map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .boru-section-title {
        font-size: 28px;
    }

    .boru-coverage-item {
        padding: 15px;
    }
}