/* Start custom CSS for html, class: .elementor-element-befc520 *//* --- FOOTER BASE --- */
.ortho-footer {
    --brand-orange: #F68B1E;
    --bg-dark: #111111;
    --text-light: #eeeeee;
    --text-grey: #888888;
    
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

/* --- COLUMNS --- */
.footer-col {
    flex: 1;
    min-width: 200px;
}

/* Specific Widths for Layout */
.brand-col { flex: 1.5; min-width: 280px; }
.newsletter-col { flex: 1.5; min-width: 280px; }

/* --- BRAND COLUMN --- */
.footer-logo img {
    height: 35px; /* Adjust logo size */
    filter: brightness(0) invert(1); /* Turns black logo white automatically */
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-desc {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-light);
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-3px);
}
.footer-socials svg { width: 18px; height: 18px; }

/* --- LINKS COLUMNS --- */
.links-col h4, .newsletter-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col li {
    margin-bottom: 12px;
}

.links-col a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.links-col a:hover {
    color: var(--brand-orange);
    padding-left: 5px; /* Small slide effect */
}

/* --- NEWSLETTER --- */
.newsletter-col p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    position: relative;
    max-width: 350px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    border-color: var(--brand-orange);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--brand-orange);
    border: none;
    border-radius: 4px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s;
}
.newsletter-form button:hover { background: #d9700e; }
.newsletter-form button svg { width: 16px; height: 16px; }

.secure-text {
    font-size: 0.75rem !important;
    margin-top: 15px;
    opacity: 0.6;
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    border-top: 1px solid #222;
    padding: 25px 20px;
    background: #0a0a0a;
}

.bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-content p {
    margin: 0;
    color: #555;
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 10px;
}
.pay-icon { width: 32px; height: 20px; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%; /* Full width input on mobile */
    }
}/* End custom CSS */