/* Footer Styling */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #888;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--accent-orange);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); /* Diamond shape logo */
}

/* The custom angled border at the bottom */
.border-top-custom {
    position: relative;
    border-top: 1px solid #333;
}
.footer-section {
    background-color: #111111; /* Deep dark background */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.text-orange {
    color: #32c4b6 !important; /* Brighter, professional orange */
}

.footer-logo {
    width: 180px;
    filter: brightness(1.1);
}

.footer-contact-info a {
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    color: #32c4b6 !important;
    padding-left: 5px;
}

.cta-box {
    background: rgba(255, 107, 0, 0.05);
}

.social-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #6c757d;
    transition: 0.3s;
}

.social-icon:hover {
    color: #32c4b6;
    transform: translateY(-3px);
    display: inline-block;
}

.border-dark {
    border-color: #2c2c2c !important;
}

.smaller {
    font-size: 0.8rem;
}