/* ========================================
   BAY OCEANIA SERVICES - COMPLETE CSS
   VERSION 1.0
   ======================================== */

:root {
    --primary-orange: #e67e22;
    --primary-dark: #0f2c39;
    --text-light: #4a5568;
    --border-light: #eef2f9;
}

/* ===== SERVICES SECTION ===== */
.bo-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.bo-services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.bo-services-subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.bo-services-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.bo-services-description {
    max-width: 780px;
    margin-bottom: 20px;
    color: #4b5565;
    line-height: 1.6;
}

/* Services Grid */
.bo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

/* Service Card */
.bo-service-card {
    background: white;
    border-radius: 32px;
    padding: 32px 28px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bo-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.12);
}

/* Service Icon */
.bo-service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 24px;
    background: rgba(230, 126, 34, 0.08);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: 0.3s;
}

.bo-service-card:hover .bo-service-icon {
    background: var(--primary-orange);
    color: white;
    transform: scale(0.98);
}

/* Service Card Content */
.bo-service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.bo-service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Service Features List */
.bo-service-features {
    list-style: none;
    margin-top: 8px;
}

.bo-service-features li {
    padding: 8px 0;
    border-top: 1px solid #edf2f7;
    font-size: 0.9rem;
    color: #2d3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bo-service-features li i {
    color: var(--primary-orange);
    width: 20px;
    font-size: 0.85rem;
}

/* Certification Banner */
.bo-cert-banner {
    background: #f9fbfd;
    border-radius: 40px;
    padding: 40px 32px;
    margin: 20px 0;
}

.bo-cert-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.bo-cert-badge {
    background: white;
    padding: 10px 18px;
    border-radius: 60px;
    font-weight: 600;
}

.bo-cert-badge i {
    color: var(--primary-orange);
    margin-right: 8px;
}

/* Why Choose Us Grid */
.bo-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.bo-why-card {
    background: #fefaf5;
    border-radius: 28px;
    padding: 28px;
}

.bo-why-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 16px;
    display: inline-block;
}

.bo-why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.bo-why-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Banner */
.bo-cta-banner {
    background: linear-gradient(135deg, #0f2c39, #123b48);
    border-radius: 48px;
    padding: 48px 40px;
    margin: 40px 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.bo-cta-banner h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bo-cta-banner p {
    color: #cbd5e6;
    max-width: 500px;
}

.bo-btn-cta {
    background: var(--primary-orange);
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    display: inline-block;
}

.bo-btn-cta:hover {
    background: #d45f0f;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
    .bo-services-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .bo-services-section {
        padding: 60px 0;
    }
    
    .bo-services-container {
        padding: 0 16px;
    }
    
    .bo-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bo-services-title {
        font-size: 1.8rem;
    }
    
    .bo-service-card h3 {
        font-size: 1.4rem;
    }
    
    .bo-why-grid {
        grid-template-columns: 1fr;
    }
    
    .bo-cta-banner {
        text-align: center;
        justify-content: center;
    }
    
    .bo-cert-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bo-service-card {
        padding: 24px 20px;
    }
    
    .bo-service-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    
    .bo-services-title {
        font-size: 1.5rem;
    }
    
    .bo-cta-banner h3 {
        font-size: 1.4rem;
    }
}

/* Force Fix for Icons */
.bo-service-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

/* Icon visibility fix */
.bo-service-icon .fa-bridge:before,
.bo-service-icon .fa-solid:before {
    visibility: visible !important;
    opacity: 1 !important;
}

