/* ========================================
   BORU COMMERCIAL PAGE - SPECIFIC SECTIONS
   ======================================== */

/* 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;
}

/* Who We Serve Section */
.boru-who-serve-section {
    padding: 100px 0;
    background: #e8f4f5;
    border-top: 3px solid #333;
    border-bottom: 3px solid #333;
}

.boru-who-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.boru-serve-card {
    background: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 4px solid #4ECDC4;
    width: 100%;
}

.boru-serve-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.boru-serve-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #4ECDC4, #45B7AA);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: transform 0.3s;
}

.boru-serve-card:hover .boru-serve-icon {
    transform: scale(1.1);
}

.boru-serve-card h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Additional Services Section - 4 Cards Grid */
.boru-additional-services {
    padding: 100px 0;
    background: white;
    border-top: 3px solid #333;
}

.boru-additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.boru-additional-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 4px solid #4ECDC4;
}

.boru-additional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.boru-additional-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #4ECDC4, #45B7AA);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: transform 0.3s;
}

.boru-additional-card:hover .boru-additional-icon {
    transform: scale(1.1);
}

.boru-additional-card h3 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.boru-additional-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .boru-who-serve-section,
    .boru-service-highlights-section,
    .boru-additional-services {
        padding: 60px 0;
    }

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

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

    .boru-highlight-card h3 {
        font-size: 20px;
        margin: 20px;
    }

    .boru-highlight-card p {
        font-size: 15px;
        margin-left: 20px;
        margin-right: 20px;
    }

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

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

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

    .boru-who-serve-grid,
    .boru-additional-grid {
        grid-template-columns: 1fr;
    }

    .boru-serve-card,
    .boru-additional-card {
        padding: 20px;
    }

    .boru-highlight-image {
        height: 250px;
    }

    .boru-highlight-card h3 {
        font-size: 18px;
    }
}