.elementor-33 .elementor-element.elementor-element-8c08e60{width:var( --container-widget-width, 100.93% );max-width:100.93%;--container-widget-width:100.93%;--container-widget-flex-grow:0;}.elementor-33 .elementor-element.elementor-element-8c08e60.elementor-element{--flex-grow:0;--flex-shrink:0;}.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-8c08e60 *//* ========================================== */
/* GLOBAL RESET                               */
/* ========================================== */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scroll from edge-to-edge sections */
}

/* ========================================== */
/* PRE-FOOTER CTA SECTION                     */
/* ========================================== */
.pre-footer-cta {
    background-color: #00AEEF; /* Signature Cyan */
    width: 100%;
    padding: 80px 24px;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-heading {
    color: #FFFFFF;
    font-size: 42px; 
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 16px rgba(0,0,0,0.15); 
}

.cta-subtext {
    color: #FFFFFF; 
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}

/* ========================================== */
/* SEAMLESS TRUST BADGE (GLASSMORPHISM)       */
/* ========================================== */
.trust-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
    backdrop-filter: blur(8px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    color: #FFFFFF; 
    padding: 10px 24px;
    border-radius: 50px; 
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.4); /* Delicate inner highlight */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Extremely soft ambient shadow */
}

/* ========================================== */
/* BUTTON WRAPPER & BASE STYLES               */
/* ========================================== */
.cta-buttons-wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.cta-button {
    font-size: 19px; 
    font-weight: 800;
    text-decoration: none;
    padding: 20px 40px; 
    border-radius: 8px; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); 
}

/* 🟢 PRIMARY BUTTON (Contrast Green) */
.primary-btn {
    background-color: #10B981; /* Emerald Green */
    color: #FFFFFF;
    border: 2px solid #10B981;
}

.primary-btn:hover {
    background-color: #059669; /* Darker green on hover */
    border-color: #059669;
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25); 
}

/* ⚪ SECONDARY BUTTON (High Contrast White) */
.secondary-btn {
    background-color: #FFFFFF; 
    color: #0F172A; /* Deep slate text */
    border: 2px solid #FFFFFF;
}

.secondary-btn:hover {
    background-color: #F8FAFC;
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); 
}

/* ========================================== */
/* FOOTER STRUCTURE                           */
/* ========================================== */
.site-footer {
    background-color: #0F172A; /* Deep Slate */
    color: #CBD5E1; 
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    padding-top: 60px;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1 1 calc(23% - 40px);
    min-width: 220px;
}

.footer-col.geo-col {
    flex: 1 2 calc(31% - 40px); /* Slightly wider for the locations grid */
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* Lists and Links */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a, .contact-link {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Cyan Hover for links */
.footer-links a:hover, .contact-link:hover {
    color: #00AEEF;
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 4px 15px;
}

.footer-contact-address {
    font-style: normal;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px; 
}

/* ========================================== */
/* CUSTOM ICON COLORS                         */
/* ========================================== */
.colored-icon {
    color: #00AEEF; /* Cyan for non-emergency icons */
    font-size: 16px;
}

.red-icon {
    color: #EF4444; /* High-urgency Red for Call icons */
    font-size: 16px;
}

.location-tag {
    color: #FFFFFF;
    font-weight: 500;
}

.hours {
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.9;
}

/* ========================================== */
/* FOOTER BOTTOM (LEGAL)                      */
/* ========================================== */
.footer-bottom {
    background-color: #0B1120; /* Darker shade for the very bottom */
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid #1E293B;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #94A3B8;
}

.legal-links a {
    color: #94A3B8;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #00AEEF;
}

/* ========================================== */
/* MOBILE RESPONSIVENESS                      */
/* ========================================== */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 32px;
    }

    .cta-buttons-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .cta-button {
        width: 100%;
        font-size: 18px; 
        padding: 18px 20px; 
    }

    .trust-badge {
        font-size: 16px;
        padding: 8px 16px;
    }

    .footer-col, .footer-col.geo-col {
        flex: 1 1 100%;
    }
    
    .geo-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px 20px; 
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
}/* End custom CSS */