/* Banner Redesign CSS */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.banner-redesign-container {
    font-family: 'Outfit', sans-serif;
    gap: 20px;
}

/* Colors */
:root {
    --br-dark-green: #0a1f18;
    --br-gold: #d4af37;
    --br-light-green: #2ecc71;
    --br-gray: #f5f6fa;
}

/* 1. Top Left Banner */
.br-top-banner {
    background-color: var(--br-dark-green);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.br-circle-mask {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-img {
    animation: floatAnimation 4s ease-in-out infinite;
    max-width: 150%;
    height: 100%;
    object-fit: cover;
}

.br-top-content {
    flex: 1;
    z-index: 2;
    padding-right: 20px;
}

.br-top-badge {
    color: var(--br-gold);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.br-top-badge::before, .br-top-badge::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--br-gold);
}

.br-subtitle {
    color: var(--br-light-green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.br-top-banner h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.br-top-banner p {
    color: #a0aec0;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 90%;
}

.br-btn-gold-outline {
    background: transparent;
    border: 2px solid var(--br-gold);
    color: var(--br-gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.br-btn-gold-outline:hover {
    background: var(--br-gold);
    color: var(--br-dark-green);
}

.br-features-row {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.br-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.br-feature-item i {
    color: var(--br-gold);
    font-size: 20px;
}
.br-feature-item span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.br-top-image {
    flex: 1;
    z-index: 2;
    text-align: right;
    position: static;
}
.br-premium-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--br-dark-green);
    border: 2px solid var(--br-gold);
    color: var(--br-gold);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* 2. Bottom Left Banner */
.br-bottom-banner {
    background-color: var(--br-gray);
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.br-bottom-image {
    flex: 0 0 45%;
    position: relative;
    clip-path: path('M 0 0 L 100% 0 Q 80% 50% 100% 100% L 0 100% Z');
    background-image: url('../images/banner/banner-8.jpg');
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.br-bottom-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.br-bottom-content .br-subtitle {
    color: #6c757d;
    margin-bottom: 10px;
}

.br-bottom-content h3 {
    color: var(--br-dark-green);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}
.br-cursive-text {
    font-family: 'Great Vibes', cursive;
    color: var(--br-gold);
    font-size: 45px;
    font-weight: 400;
    display: block;
    margin-top: -5px;
    margin-bottom: 15px;
}

.br-bottom-content p {
    color: #555;
    font-size: 15px;
    margin-bottom: 25px;
}

.br-btn-green-fill {
    background: var(--br-dark-green);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    width: fit-content;
    transition: all 0.3s;
}
.br-btn-green-fill i {
    color: var(--br-gold);
}
.br-btn-green-fill:hover {
    background: #11382a;
    color: #fff;
}

.br-features-row-bottom {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.br-feature-item-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.br-feature-item-bottom i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--br-dark-green);
    font-size: 18px;
}
.br-feature-item-bottom span {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

/* 3. Right Sidebar */
.br-right-sidebar {
    background: var(--br-dark-green);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

.br-sidebar-header {
    padding: 30px 30px 20px 30px;
    color: #fff;
}

.br-sidebar-header h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.br-sidebar-header h4 span {
    color: var(--br-gold);
}
.br-sidebar-header p {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.5;
}

.br-sidebar-middle {
    background: var(--br-gray);
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.br-slider-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
    position: relative;
}

.br-slider-card .img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.br-slider-card .img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.br-slider-logo {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.br-slider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.br-slider-card h5 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 15px;
}
.br-slider-card h6 {
    color: var(--br-dark-green);
    font-size: 14px;
    font-weight: 600;
}

.br-sidebar-footer {
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
}
.br-sidebar-footer .br-feature-item-bottom {
    flex: 1;
}
.br-sidebar-footer .br-feature-item-bottom i {
    border: none;
    color: var(--br-gold);
    font-size: 24px;
}
.br-sidebar-footer .br-feature-item-bottom span {
    color: #fff;
}

/* Swiper custom arrows for the right slider */
.br-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--br-dark-green);
    color: var(--br-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.br-swiper-prev {
    left: -15px;
}
.br-swiper-next {
    right: -15px;
}

@media (max-width: 991px) {
    .br-features-row, .br-features-row-bottom {
        flex-wrap: wrap;
    }
    .br-top-banner {
        flex-direction: column;
        padding: 30px;
        background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    }
    .br-top-image {
        margin-top: 30px;
    }
    .br-bottom-banner {
        flex-direction: column;
    }
    .br-bottom-image {
        min-height: 250px;
        clip-path: none;
    }
    .br-bottom-content {
        padding: 30px;
    }
    .br-right-sidebar {
        margin-top: 30px;
    }
}
