/* Dual Banner Section */
.boru-dual-banner {
    display: flex;
    width: 100%;
    min-height: 500px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mobile Stacking */
@media (max-width: 768px) {
    .boru-dual-banner {
        flex-direction: column;
    }
    
    .boru-banner-section {
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .boru-banner-section h2 {
        font-size: 28px;
    }
    
    .boru-banner-section p {
        font-size: 15px;
    }
    
    .boru-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .boru-btn-primary,
    .boru-btn-secondary {
        padding: 12px 30px;
        min-width: 200px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .boru-banner-section {
        min-height: 350px;
        padding: 40px 15px;
    }
    
    .boru-banner-section h2 {
        font-size: 24px;
    }
    
    .boru-banner-section p {
        font-size: 14px;
    }
    
    .boru-banner-content {
        max-width: 320px;
    }
}