/* Container Settings */
.urbania-banner {
    max-width: 1400px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

.banner-flex {
    display: flex;
    flex-wrap: wrap;
}

/* Left Section - Gradient Area */
.banner-left {
    flex: 1 1 500px;
    padding: 30px;
    background: linear-gradient(135deg, #f6a54b, #f26c4f);
    color: white;
    box-sizing: border-box;
}

.banner-title-main {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.banner-subtitle {
    margin-top: 8px;
    font-size: 18px;
    opacity: 0.9;
}

.banner-image {
    width: 100%;
    margin-top: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    height: auto;
    display: block;
}

.banner-contact-info {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Right Section - Content Area */
.banner-right {
    flex: 1 1 500px;
    padding: 30px;
    box-sizing: border-box;
}

.content-h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    color: #2b2b2b;
}

.content-p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-top: 15px;
}

/* Buttons Styling */
.banner-btn-group {
    margin-top: 25px;
}

.btn-banner {
    text-decoration: none;
    color: white;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
    margin-bottom: 10px;
    margin-right: 10px;
}

.btn-dark {
    background: #333;
}

.btn-blue {
    background: #2f3f9e;
}

.btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0.9;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .banner-title-main { font-size: 32px; }
    .content-h1 { font-size: 26px; }
    .banner-left, .banner-right { padding: 20px; }
}