/* Dukanda Custom Styles */

/* ============================================
   Footer Buttons Alignment
   ============================================ */

.footer-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer-buttons-wrapper .footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-ubuntu) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-buttons-wrapper .footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-buttons-wrapper .become-agent-btn:hover {
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.3);
}

.footer-buttons-wrapper .footer-btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-buttons-wrapper {
        gap: 12px;
    }
    
    .footer-buttons-wrapper .footer-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* ============================================
   Hide Comments Section
   ============================================ */

/* Hide all comment areas */
.comment-area,
#comment-area,
.blog-comment,
.commnt-reply,
.reply-modal,
#replyModal {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Hide comment counts and related elements */
.blog-meta li a[href*="comment"],
.blog-stats .stat-item:has(i.bi-chat),
.comment-title,
.inquiry-form {
    display: none !important;
}

/* ============================================
   Mobile Menu Button - Fix Position
   ============================================ */

/* Ensure mobile menu button is visible and properly positioned */
@media (max-width: 991px) {
    header.style-1 .nav-right {
        gap: 10px !important;
        flex-wrap: nowrap;
    }
    
    header.style-1 .nav-right .mobile-menu-btn {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 8px !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
        min-width: 40px;
    }
    
    header.style-1 .nav-right .mobile-menu-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    header.style-1 .nav-right {
        gap: 8px !important;
        padding-right: 0 !important;
    }
    
    header.style-1 .nav-right .mobile-menu-btn {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 6px !important;
        min-width: 36px;
    }
    
    header.style-1 .nav-right .mobile-menu-btn svg {
        width: 22px;
        height: 22px;
    }
    
    /* Ensure account button doesn't push menu button out */
    header.style-1 .nav-right .primary-btn1.two {
        padding: 8px 12px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
}

/* ============================================
   Header and Banner Alignment
   ============================================ */

/* Align header with banner width - same padding as banner (70px) */
header.style-1 {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 70px !important;
    padding-right: 70px !important;
    box-sizing: border-box;
}

/* Responsive adjustments for header padding to match banner */
@media (max-width: 1399px) {
    header.style-1 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 767px) {
    header.style-1 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* ============================================
   Login Modal - Simplified Design
   ============================================ */

/* Remove image header and simplify modal */
.login-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

/* Hide modal header if it exists */
.login-modal .modal-header {
    display: none !important;
}

/* Ensure modal body starts at top */
.login-modal .modal-body {
    border-radius: 20px;
}

.login-modal .modal-body {
    padding: 50px 40px !important;
}

.login-modal .form-title {
    margin-bottom: 30px;
}

.login-modal .form-title h2 {
    font-family: var(--font-ubuntu) !important;
    font-weight: 700 !important;
    color: var(--title-color);
    margin-bottom: 10px;
}

.login-modal .form-title p {
    font-family: var(--font-ubuntu) !important;
    color: var(--text-color);
    font-size: 14px;
}

/* Improve form inputs */
.login-modal .form-inner input {
    font-family: var(--font-ubuntu) !important;
    border: 1.5px solid rgba(0, 104, 55, 0.2) !important;
    transition: all 0.3s ease;
}

.login-modal .form-inner input:focus {
    border-color: var(--primary-color1) !important;
    box-shadow: 0 0 0 3px rgba(0, 104, 55, 0.1);
}

/* Button styling */
.login-modal .login-btn {
    font-family: var(--font-ubuntu) !important;
    font-weight: 600 !important;
    background-color: var(--primary-color1);
    color: var(--white-color);
    border-radius: 200px;
    padding: 14px 30px;
    width: 100%;
    transition: all 0.3s ease;
}

.login-modal .login-btn:hover {
    background-color: var(--primary-color2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 104, 55, 0.3);
}

/* Registration link */
.login-modal .form-inner p {
    font-family: var(--font-ubuntu) !important;
    text-align: center;
    margin-top: 15px;
}

.login-modal .form-inner p a {
    color: var(--primary-color1);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-modal .form-inner p a:hover {
    color: var(--primary-color2);
    text-decoration: underline;
}

/* Divider */
.login-modal .divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.login-modal .divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 104, 55, 0.2);
}

.login-modal .divider span {
    position: relative;
    background-color: var(--white-color);
    padding: 0 15px;
    color: var(--text-color);
    font-family: var(--font-ubuntu);
    font-size: 13px;
}

/* Google login button */
.login-modal .google-login-btn {
    font-family: var(--font-ubuntu) !important;
    font-weight: 500 !important;
    border: 1.5px solid rgba(0, 104, 55, 0.2);
    border-radius: 200px;
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-modal .google-login-btn:hover {
    border-color: var(--primary-color1);
    background-color: rgba(0, 104, 55, 0.05);
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .login-modal .modal-body {
        padding: 35px 25px !important;
    }
    
    .login-modal .form-title h2 {
        font-size: 28px !important;
    }
}

/* ============================================
   Newsletter in Footer - Simplified Design
   ============================================ */

/* Hide the old newsletter banner section completely */
.banner3-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* ============================================
   Footer - Improved Visual Distribution
   ============================================ */

/* Footer top section - Better spacing */
.footer-section .footer-top {
    padding-top: 80px !important;
    padding-bottom: 70px !important;
}

/* Footer widgets - Better spacing and alignment */
.footer-section .footer-top .footer-widget {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Better column alignment */
.footer-section .footer-top .row {
    align-items: flex-start;
}

/* First column - Logo and CTA */
.footer-section .footer-top .footer-widget:first-child {
    max-width: 100%;
}

/* Links column - Better alignment */
.footer-section .footer-top .footer-widget .widget-list {
    display: flex;
    flex-direction: column;
}

/* Logo section - Better spacing */
.footer-section .footer-top .footer-widget .footer-logo {
    margin-bottom: 25px;
}

.footer-section .footer-top .footer-widget .footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Marketing title - Better typography */
.footer-section .footer-top .footer-widget h3 {
    font-family: var(--font-ubuntu) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
    color: var(--white-color);
}

/* Marketing button - Better styling */
.footer-section .footer-top .footer-widget .primary-btn1 {
    padding: 12px 28px !important;
    font-family: var(--font-ubuntu) !important;
    font-weight: 600 !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-section .footer-top .footer-widget .primary-btn1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.3);
}

/* Widget titles - Better consistency */
.footer-section .footer-top .footer-widget .widget-title {
    margin-bottom: 20px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section .footer-top .footer-widget .widget-title h5 {
    font-family: var(--font-ubuntu) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--white-color) !important;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

.footer-section .footer-top .footer-widget .widget-title svg {
    fill: var(--primary-color2) !important;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Widget list - Better spacing */
.footer-section .footer-top .footer-widget .widget-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section .footer-top .footer-widget .widget-list li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section .footer-top .footer-widget .widget-list li:last-child {
    margin-bottom: 0;
}

.footer-section .footer-top .footer-widget .widget-list li a {
    font-family: var(--font-ubuntu) !important;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section .footer-top .footer-widget .widget-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--primary-color2);
    transition: width 0.3s ease;
}

.footer-section .footer-top .footer-widget .widget-list li:hover a {
    color: var(--primary-color2);
    padding-left: 8px;
}

.footer-section .footer-top .footer-widget .widget-list li:hover a::before {
    width: 6px;
}

/* Single contact - Better spacing */
.footer-section .footer-top .footer-widget .single-contact {
    margin-bottom: 25px;
}

.footer-section .footer-top .footer-widget .single-contact:last-child {
    margin-bottom: 0;
}

.footer-section .footer-top .footer-widget .single-contact .widget-title {
    margin-bottom: 10px;
}

.footer-section .footer-top .footer-widget .single-contact a {
    font-family: var(--font-ubuntu) !important;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section .footer-top .footer-widget .single-contact a:hover {
    color: var(--primary-color2);
    transform: translateX(3px);
}

/* Footer description text */
.footer-section .footer-top .footer-widget p {
    font-family: var(--font-ubuntu) !important;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Payment partner section */
.footer-section .footer-top .footer-widget .payment-partner {
    margin-top: 25px;
}

.footer-section .footer-top .footer-widget .payment-partner .widget-title {
    margin-bottom: 15px;
}

.footer-section .footer-top .footer-widget .payment-partner .icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section .footer-top .footer-widget .payment-partner .icons ul li {
    display: inline-block;
}

.footer-section .footer-top .footer-widget .payment-partner .icons ul li img {
    max-width: 120px;
    height: auto;
    border-radius: 4px;
}

/* Footer bottom - Better spacing */
.footer-section .footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .footer-bottom p {
    font-family: var(--font-ubuntu) !important;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-section .footer-bottom .social-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 12px;
}

.footer-section .footer-bottom .social-list li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-section .footer-bottom .social-list li a:hover {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
    transform: translateY(-3px);
}

.footer-section .footer-bottom .footer-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section .footer-bottom .footer-right ul li a {
    font-family: var(--font-ubuntu) !important;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .footer-bottom .footer-right ul li a:hover {
    color: var(--primary-color2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-section .footer-top {
        padding-top: 60px !important;
        padding-bottom: 50px !important;
    }
    
    .footer-section .footer-top .footer-widget {
        margin-bottom: 40px;
    }
    
    .footer-section .footer-top .footer-widget:last-child {
        margin-bottom: 0;
    }
    
    .footer-section .footer-top .footer-widget h3 {
        font-size: 22px !important;
    }
    
    .footer-section .footer-top .footer-widget .widget-title h5 {
        font-size: 17px !important;
    }
}

@media (max-width: 576px) {
    .footer-section .footer-top {
        padding-top: 50px !important;
        padding-bottom: 40px !important;
    }
    
    .footer-section .footer-top .footer-widget h3 {
        font-size: 20px !important;
    }
    
    .footer-section .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
    
    .footer-section .footer-bottom .footer-right ul {
        justify-content: center;
        gap: 15px;
    }
}

/* Footer newsletter styling */
.footer-newsletter {
    margin-top: 25px;
    margin-bottom: 15px;
}

.footer-newsletter .widget-title {
    margin-bottom: 12px;
}

.footer-newsletter .widget-title h5 {
    font-family: var(--font-ubuntu) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--white-color);
    margin-bottom: 0;
    line-height: 1.3;
}

.footer-newsletter .newsletter-form {
    margin-top: 10px;
}

.footer-newsletter .newsletter-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.footer-newsletter .newsletter-input-group:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-newsletter .newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--white-color);
    font-family: var(--font-ubuntu) !important;
    font-size: 13px;
    padding: 10px 15px;
    outline: none;
}

.footer-newsletter .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-ubuntu) !important;
}

.footer-newsletter .newsletter-submit {
    background-color: var(--primary-color1);
    border: none;
    color: var(--white-color);
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0 25px 25px 0;
}

.footer-newsletter .newsletter-submit:hover {
    background-color: var(--primary-color2);
}

.footer-newsletter .newsletter-submit svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .footer-newsletter {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .footer-newsletter .widget-title h5 {
        font-size: 15px !important;
    }
    
    .footer-newsletter .newsletter-input {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .footer-newsletter .newsletter-submit {
        padding: 8px 12px;
    }
}

