.elementor-643 .elementor-element.elementor-element-fd82034{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-81ac4de *//* --- Base Footer Styles --- */
.luxury-footer {
    background-color: #ffffff;
    color: #1a1a1a;
    padding-top: 100px;
    font-family: 'Montserrat', sans-serif;
    border-top: 5px solid #cda45e;
    width: 100%;
}

.footer-container {
    /* WIDESCREEN UPDATE: Increased max-width for larger monitors */
    max-width: 1440px; 
    margin: 0 auto; /* Centers the container */
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    padding: 0 40px 80px 40px; /* Added side padding for safety */
    gap: 40px;
}

/* --- Column Behavior --- */
.footer-col {
    flex: 1; /* Standard behavior: grow equally */
    min-width: 220px; /* Prevents columns from getting unreadably narrow */
}

/* Specific Tweak: Give the brand column slightly more room if space allows */
.brand-col {
    flex: 1.2;
}

/* --- Content Styling --- */
.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
    display: block;
}

.footer-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 320px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #555;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #cda45e;
    border-color: #cda45e;
    color: #fff;
    transform: translateY(-3px);
}

.col-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #999;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-list a:hover {
    color: #cda45e;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.c-label {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.c-value {
    font-size: 1.05rem;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.c-value:hover {
    color: #cda45e;
}

/* --- Bottom Bar --- */
.footer-bottom {
    border-top: 1px solid #f0f0f0;
    width: 100%;
    background-color: #fafafa; /* Subtle contrast for bottom bar */
}

.bottom-container {
    max-width: 1440px; /* Match top container */
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.developer-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dev-label {
    font-style: italic;
    color: #aaa;
}

.dev-link {
    color: #cda45e;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.dev-link:hover {
    color: #000;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet (Landscape & Portrait) - Creates a 2x2 Grid */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px 60px 30px;
        gap: 30px;
    }

    .footer-col {
        /* Forces 2 columns per row */
        flex: 0 0 calc(50% - 30px); 
        min-width: unset; /* Resets min-width so flex works */
    }
}

/* Mobile Devices - Stack Everything */
@media (max-width: 768px) {
    .luxury-footer {
        padding-top: 60px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px 50px 20px;
    }
    
    .footer-col {
        width: 100%;
        flex: 1 1 100%;
    }

    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .developer-tag {
        flex-direction: column;
        gap: 4px;
    }
}/* End custom CSS */