.elementor-7208 .elementor-element.elementor-element-e531563{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-7208 .elementor-element.elementor-element-e531563 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-7208 .elementor-element.elementor-element-cdfe413 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-7208 .elementor-element.elementor-element-cdfe413 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}#elementor-popup-modal-7208 .dialog-widget-content{animation-duration:0.2s;background-color:#FAF8F5;box-shadow:var(--shadow_horizontal, 0) var(--shadow_vertical, 0) var(--shadow_blur, 0) var(--shadow_spread, 0) rgba(0,0,0,0.5);--shadow_blur:10px;}#elementor-popup-modal-7208{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-7208 .dialog-message{width:65vw;height:65.8vh;align-items:flex-start;}#elementor-popup-modal-7208 .dialog-close-button{display:flex;}@media(max-width:1024px){#elementor-popup-modal-7208 .dialog-message{width:65vw;height:68vh;}}@media(max-width:767px){#elementor-popup-modal-7208 .dialog-message{height:64vh;}}/* Start custom CSS for html, class: .elementor-element-55336ed *//* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;600&display=swap');

/* Remove outline from Elementor close button */
.dialog-close-button,
.dialog-lightbox-close-button,
.dialog-close-button:focus,
.dialog-lightbox-close-button:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Make close button visible on mobile */
@media (max-width: 768px) {
    .dialog-close-button,
    .dialog-lightbox-close-button {
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 50% !important;
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .dialog-close-button i,
    .dialog-lightbox-close-button i,
    .dialog-close-button .eicon-close,
    .dialog-lightbox-close-button .eicon-close {
        color: #ffffff !important;
        font-size: 16px !important;
    }
}

/* Reset for popup container */
.popup-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.popup-container {
    width: 100%;
    height: 100%;
    background: #faf8f5;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%;
    position: relative;
}

.popup-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 92, 115, 0.08) 0%, rgba(193, 179, 164, 0.12) 100%);
}

.popup-content {
    padding: 8% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #faf8f5;
    overflow-y: auto;
}

.popup-header {
    margin-bottom: 5%;
}

.popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 3.5vh, 32px);
    font-weight: 600;
    line-height: 1.3;
    color: #2c2c2c;
    margin-bottom: 4%;
    letter-spacing: 0.3px;
}

.popup-description {
    font-family: 'Lato', sans-serif;
    font-size: clamp(11px, 1.8vh, 15px);
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 6%;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.cta-button {
    display: inline-block;
    background: #295c73;
    color: #ffffff;
    padding: 3.5% 8%;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(10px, 1.6vh, 14px);
    text-align: center;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(41, 92, 115, 0.2);
    font-family: 'Lato', sans-serif;
    width: 100%;
}

.cta-button:hover {
    background: #1f4557;
    color: #ffffff;
}

.support-text {
    margin-top: 5%;
    font-size: clamp(9px, 1.4vh, 12px);
    color: #8b8477;
    font-style: italic;
    letter-spacing: 0.3px;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.divider {
    width: 50px;
    height: 1px;
    background: #c1b3a4;
    margin-bottom: 4%;
}

/* Mobile Responsive - No Extra Space */
@media (max-width: 768px) {
    .popup-container {
        height: auto;
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .popup-image {
        height: 200px;
        min-height: 200px;
    }
    
    .popup-content {
        padding: 30px 25px;
        justify-content: flex-start;
    }
    
    .popup-header {
        margin-bottom: 15px;
    }
    
    .popup-title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    .popup-description {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 11px !important;
    }
    
    .support-text {
        margin-top: 15px;
        font-size: 9px !important;
    }
    
    .divider {
        width: 40px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .popup-image {
        height: 180px;
        min-height: 180px;
    }
    
    .popup-content {
        padding: 25px 20px;
    }
    
    .popup-header {
        margin-bottom: 12px;
    }
    
    .popup-title {
        font-size: 16px !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }
    
    .popup-description {
        font-size: 11px !important;
        line-height: 1.4 !important;
        margin-bottom: 18px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 10px !important;
        letter-spacing: 0.5px;
    }
    
    .support-text {
        margin-top: 12px;
        font-size: 8px !important;
    }
    
    .divider {
        width: 35px;
        margin-bottom: 10px;
    }
}/* End custom CSS */