/* ========================================
   BORU DOMESTIC PAGE - TRIPLE BANNER & 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;
}

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

/* Triple Banner Section */
.boru-triple-banner {
    display: flex;
    width: 100%;
    min-height: 450px;
}

.boru-triple-banner-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

/* Domestic Drainage Section */
.boru-drainage-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('../images/domestic-drainage-banner.webp');
    background-size: cover;
    background-position: center;
}

/* Driveways Section */
.boru-driveways-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('../images/domestic-driveways-banner.webp');
    background-size: cover;
    background-position: center;
}

/* Landscaping Section */
.boru-landscaping-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('../images/domestic-landscaping-banner.webp');
    background-size: cover;
    background-position: center;
}

.boru-triple-banner-content {
    max-width: 350px;
    margin: 0 auto;
}

.boru-triple-banner-subtitle {
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boru-triple-banner-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.boru-triple-banner-section p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.5;
    color: white;
}

.boru-triple-banner-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles for Triple Banner */
.boru-triple-btn-primary {
    background: #31afb4;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.boru-triple-btn-primary:hover {
    background: #2a969b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 175, 180, 0.3);
}

.boru-triple-btn-secondary {
    background: transparent;
    color: white;
    padding: 10px 24px;
    border: 2px solid white;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.boru-triple-btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Why Choose Section - 4 Cards Grid */
.boru-why-choose-section {
    padding: 100px 0;
    background: #e8f4f5;
    border-top: 3px solid #333;
    border-bottom: 3px solid #333;
}

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

.boru-why-choose-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-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.boru-why-choose-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-why-choose-card:hover .boru-why-choose-icon {
    transform: scale(1.1);
}

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

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

/* Tablet Adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .boru-triple-banner-section h2 {
        font-size: 24px;
    }
    
    .boru-triple-banner-section p {
        font-size: 14px;
    }
    
    .boru-triple-btn-primary,
    .boru-triple-btn-secondary {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Mobile Stacking */
@media (max-width: 768px) {
    .boru-triple-banner {
        flex-direction: column;
    }
    
    .boru-triple-banner-section {
        min-height: 350px;
        padding: 50px 20px;
        border-bottom: 5px solid white;
    }
    
    .boru-triple-banner-section:last-child {
        border-bottom: none;
    }
    
    .boru-triple-banner-section h2 {
        font-size: 24px;
    }
    
    .boru-triple-banner-section p {
        font-size: 14px;
    }
    
    .boru-triple-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .boru-triple-btn-primary,
    .boru-triple-btn-secondary {
        padding: 10px 28px;
        min-width: 180px;
    }

    .boru-why-choose-section {
        padding: 60px 0;
    }

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

/* Small Mobile */
@media (max-width: 480px) {
    .boru-triple-banner-section {
        min-height: 300px;
        padding: 40px 15px;
    }
    
    .boru-triple-banner-section h2 {
        font-size: 22px;
    }
    
    .boru-triple-banner-section p {
        font-size: 13px;
    }
    
    .boru-triple-banner-content {
        max-width: 300px;
    }

    .boru-why-choose-grid {
        grid-template-columns: 1fr;
    }
}