/* ==========================================
   CSS VARIABLES
========================================== */
#dc-footer-static {
    --dc-primary: #ef7a17;
    --dc-secondary: #032038;
    --dc-primary-rgb: 239, 122, 23;
    --dc-secondary-rgb: 3, 32, 56;
    --dc-bg: #ffffff;
    --dc-text: #475569;
    --dc-text-light: #64748b;
}

#dc-footer-static * {
    box-sizing: border-box;
}

/* ==========================================
   MAIN FOOTER CONTAINER
========================================== */
#dc-footer-static .dc-footer {
    position: relative;
    overflow: hidden;
}

/* ==========================================
   FOOTER MAIN SECTION
========================================== */
#dc-footer-static .dc-footer__main {
    background: transparent;
    position: relative;
    padding: 0px 0 50px;
    overflow: hidden;
}

#dc-footer-static .dc-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* USP Bar */
#dc-footer-static .dc-footer__usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e7eb;
}

#dc-footer-static .dc-footer__usp {
    display: flex;
    align-items: center;
    gap: 14px;
}

#dc-footer-static .dc-footer__usp-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--dc-primary), #ff9a44);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(239, 122, 23, 0.25);
}

#dc-footer-static .dc-footer__usp-icon svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

#dc-footer-static .dc-footer__usp-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dc-secondary);
    line-height: 1.4;
}

/* 5-Column Grid */
#dc-footer-static .dc-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
}

/* ==========================================
   COLUMN 1: LOGO & ABOUT
========================================== */
#dc-footer-static .dc-footer__brand {
    padding-right: 30px;
}

#dc-footer-static .dc-footer__logo {
    display: inline-block;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

#dc-footer-static .dc-footer__logo:hover {
    transform: scale(1.03);
}

#dc-footer-static .dc-footer__logo img {
    width: 180px;
    height: auto;
}

#dc-footer-static .dc-footer__about {
    font-size: 14px;
    line-height: 1.75;
    color: var(--dc-text-light);
    margin-bottom: 24px;
}

/* Social Links */
#dc-footer-static .dc-footer__social {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#dc-footer-static .dc-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dc-text-light);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

#dc-footer-static .dc-footer__social-link:hover {
    background: linear-gradient(135deg, var(--dc-primary), #ff9a44);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 122, 23, 0.35);
}

#dc-footer-static .dc-footer__social-link i {
    font-size: 16px;
}

/* ==========================================
   COLUMN TITLES WITH HIGHLIGHT
========================================== */
#dc-footer-static .dc-footer__column-title {
    font-family: 'Poppins', 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dc-secondary);
    margin: 0 0 22px 0;
    position: relative;
    display: inline-block;
}

#dc-footer-static .dc-footer__column-title span {
    position: relative;
    z-index: 1;
}

#dc-footer-static .dc-footer__column-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(239, 122, 23, 0.25), rgba(239, 122, 23, 0.08));
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-5deg);
}

/* ==========================================
   LINK LISTS
========================================== */
#dc-footer-static .dc-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dc-footer-static .dc-footer__links li {
    margin-bottom: 12px;
}

#dc-footer-static .dc-footer__links a {
    font-size: 14px;
    color: var(--dc-text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
    padding-left: 0;
}

#dc-footer-static .dc-footer__links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dc-primary), #ff9a44);
    transition: all 0.3s ease;
    border-radius: 2px;
    margin-right: 0;
}

#dc-footer-static .dc-footer__links a:hover {
    color: var(--dc-primary);
    padding-left: 24px;
}

#dc-footer-static .dc-footer__links a:hover::before {
    width: 16px;
    margin-right: 8px;
}

/* ==========================================
   CONTACT SECTION
========================================== */
#dc-footer-static .dc-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

#dc-footer-static .dc-footer__contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--dc-primary), #ff9a44);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(239, 122, 23, 0.25);
}

#dc-footer-static .dc-footer__contact-icon svg {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

#dc-footer-static .dc-footer__contact-content {
    flex: 1;
}

#dc-footer-static .dc-footer__contact-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dc-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

#dc-footer-static .dc-footer__contact-value {
    font-size: 14px;
    color: var(--dc-text);
    line-height: 1.5;
}

#dc-footer-static .dc-footer__contact-value a {
    color: var(--dc-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

#dc-footer-static .dc-footer__contact-value a:hover {
    color: var(--dc-primary);
}

/* KVK Badge */
#dc-footer-static .dc-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 8px 14px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

#dc-footer-static .dc-footer__badge-icon {
    width: 18px;
    height: 18px;
    color: var(--dc-primary);
}

#dc-footer-static .dc-footer__badge-text {
    font-size: 12px;
    color: var(--dc-text-light);
}

#dc-footer-static .dc-footer__badge-text strong {
    color: var(--dc-secondary);
}

/* ==========================================
   DECORATIVE ELEMENTS
========================================== */
#dc-footer-static .dc-footer__shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
}

#dc-footer-static .dc-footer__shape--leaf {
    bottom: 25%;
    left: 3%;
    width: 35px;
    height: 35px;
    color: var(--dc-primary);
    opacity: 0.15;
    animation: dc-footer-sway 8s ease-in-out infinite;
}

@keyframes dc-footer-sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* ==========================================
   BOTTOM BAR (Dark)
========================================== */
#dc-footer-static .dc-footer__bottom {
    background: var(--dc-secondary);
    padding: 22px 0;
    position: relative;
    z-index: 2;
}

#dc-footer-static .dc-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

#dc-footer-static .dc-footer__copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

#dc-footer-static .dc-footer__copyright a {
    color: var(--dc-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#dc-footer-static .dc-footer__copyright a:hover {
    color: #ff9a44;
}

#dc-footer-static .dc-footer__bottom-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#dc-footer-static .dc-footer__bottom-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

#dc-footer-static .dc-footer__bottom-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dc-primary), #ff9a44);
    transition: width 0.3s ease;
}

#dc-footer-static .dc-footer__bottom-nav a:hover {
    color: #ffffff;
}

#dc-footer-static .dc-footer__bottom-nav a:hover::after {
    width: 100%;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1200px) {
    #dc-footer-static .dc-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
        gap: 40px;
    }

    #dc-footer-static .dc-footer__brand {
        grid-column: span 4;
        padding-right: 0;
        max-width: 700px;
    }
}

@media (max-width: 1024px) {
    #dc-footer-static .dc-footer__usps {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    #dc-footer-static .dc-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    #dc-footer-static .dc-footer__brand {
        grid-column: span 2;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    #dc-footer-static .dc-footer__main {
        padding: 60px 0 50px;
    }

    #dc-footer-static .dc-footer__usps {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    #dc-footer-static .dc-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #dc-footer-static .dc-footer__brand {
        grid-column: span 1;
        text-align: center;
    }

    #dc-footer-static .dc-footer__logo img {
        width: 150px;
    }

    #dc-footer-static .dc-footer__social {
        justify-content: center;
    }

    #dc-footer-static .dc-footer__column {
        text-align: center;
    }

    #dc-footer-static .dc-footer__column-title {
        display: block;
    }

    #dc-footer-static .dc-footer__links a {
        justify-content: center;
    }

    #dc-footer-static .dc-footer__contact-item {
        justify-content: center;
        text-align: left;
    }

    #dc-footer-static .dc-footer__badge {
        margin: 10px auto 0;
    }

    #dc-footer-static .dc-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    #dc-footer-static .dc-footer__bottom-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #dc-footer-static .dc-footer__main {
        padding: 50px 0 40px;
    }

    #dc-footer-static .dc-footer__bottom-nav {
        gap: 10px 16px;
    }
}
