/* =====================================================
   Dynamic Footer CSS
   Path: public/assets/frontend/css/footer.css
   Scope: Sticky icons + footer_default + footer_1 + footer_2 + footer_3
   ===================================================== */

/* =====================================================
   00. Shared Sticky Tools
   WhatsApp, Google Translator, Text-to-Voice
   ===================================================== */
#whtbtn {
    position: fixed;
    bottom: 10%;
    right: 18px;
    width: 62px;
    height: 62px;
    z-index: 9999;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

#whtbtn:hover {
    transform: scale(1.1);
}

#whtbtn img {
    width: 48px;
    height: 48px;
}

#voicebtn {
    position: fixed;
    bottom: 19%;
    right: 25px;
    z-index: 9999;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#voicebtn:hover {
    transform: scale(1.1);
}

#voicebtn a {
    text-decoration: none;
    color: inherit;
}

#langToggleBtn {
    position: fixed;
    bottom: 27%;
    right: 32px;
    z-index: 9999;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

#langToggleBtn:hover {
    transform: scale(1.1);
}

#langToggleBtn img {
    width: 45px;
    height: 45px;
}

#translateWidget {
    position: fixed;
    right: 37px;
    bottom: calc(28% + 70px);
    z-index: 9998;
    display: none !important;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

#translateWidget.active {
    display: block !important;
}

@media (max-width: 768px) {
    #whtbtn {
        bottom: 10%;
        right: 30px;
        width: 50px;
        height: 50px;
    }

    #whtbtn img {
        width: 49px;
        height: 49px;
    }

    #voicebtn {
        width: 50px;
        height: 50px;
        right: 28px;
        bottom: 20%;
        font-size: 41px;
    }

    #langToggleBtn {
        bottom: 27%;
        right: 30px;
        width: 50px;
        height: 50px;
    }

    #langToggleBtn img {
        width: 44px;
        height: 44px;
    }

    #translateWidget {
        bottom: calc(27% + 60px);
        right: 50px;
        transform: translateX(50%);
        max-width: 180px;
        font-size: 14px;
        padding: 8px;
        border-radius: 8px;
    }
}

/* =====================================================
   01. Shared Footer Utilities
   Common helper classes used by multiple layouts
   ===================================================== */
.footer-bg-image {
    position: relative;
    background-image: var(--footer-bg-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.footer-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: -1;
}

.footer-read-more,
.footer-layout-two-v1-read-more,
.footer-layout-three-v1-read-more {
    display: inline-block;
    margin-left: 4px;
    text-decoration: none;
    font-weight: 700;
}

.footer-read-more {
    color: #ffffff;
}

.footer-read-more:hover {
    color: var(--theme-color2, #ffffff);
}

.footer-delay-0 { --footer-delay: 0s; }
.footer-delay-1 { --footer-delay: 0.08s; }
.footer-delay-2 { --footer-delay: 0.16s; }
.footer-delay-3 { --footer-delay: 0.24s; }

/* =====================================================
   02. Footer Default Layout Support
   Keeps default visitor cards clean and responsive
   ===================================================== */
.visitor-card {
    position: relative;
    z-index: 3;
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.visitor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.visitor-card h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.visitor-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
}

/* =====================================================
   03. Footer Layout 1 - Animated Card Layout
   Used by: footer_1.blade.php
   ===================================================== */
.footer-layout-one-v5 {
    --footer-primary: var(--theme-color, #0f3d5e);
    --footer-secondary: var(--theme-color2, #0b7285);
    --footer-bg: #f6f9fc;
    --footer-card: #ffffff;
    --footer-text: #1f2d3d;
    --footer-muted: #5f6f83;
    --footer-border: rgba(31, 45, 61, 0.10);
    position: relative;
    overflow: hidden;
    background: var(--footer-bg);
    color: var(--footer-text);
    z-index: 1;
}

.footer-layout-one-v5,
.footer-layout-one-v5 * {
    box-sizing: border-box;
}

.footer-layout-one-v5-bg-img {
    position: absolute;
    inset: 0;
    background-image: var(--footer-bg-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: -5;
}

.footer-layout-one-v5::before,
.footer-layout-one-v5::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -4;
}

.footer-layout-one-v5::before {
    width: 460px;
    height: 460px;
    left: -210px;
    top: -210px;
    background: var(--footer-primary);
    opacity: 0.08;
    animation: footerL1FloatOne 9s ease-in-out infinite;
}

.footer-layout-one-v5::after {
    width: 540px;
    height: 540px;
    right: -270px;
    bottom: -280px;
    background: var(--footer-secondary);
    opacity: 0.10;
    animation: footerL1FloatTwo 11s ease-in-out infinite;
}

.footer-layout-one-v5-pattern {
    position: absolute;
    inset: 0;
    background-size: 42px 42px;
    z-index: -3;
    pointer-events: none;
    animation: footerL1PatternMove 22s linear infinite;
}

.footer-layout-one-v5-wave {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 8px;
    background: var(--footer-primary);
    overflow: hidden;
    z-index: 2;
}

.footer-layout-one-v5-wave::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 35%;
    background: var(--footer-secondary);
    opacity: 0.85;
    animation: footerL1WaveMove 5s ease-in-out infinite;
}

.footer-layout-one-v5-main {
    position: relative;
    padding: 78px 0 44px;
    z-index: 3;
}

.footer-layout-one-v5-card {
    position: relative;
    height: 100%;
    min-width: 0;
    padding: 26px 22px;
    border-radius: 24px;
    background: var(--footer-card);
    border: 1px solid var(--footer-border);
    box-shadow: 0 14px 34px rgba(31, 45, 61, 0.07);
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    animation: footerL1CardIn 0.75s ease both;
    animation-delay: var(--footer-delay, 0s);
}

.footer-layout-one-v5-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 5px;
    border-radius: 0 0 20px 20px;
    background: var(--footer-primary);
    transition: 0.35s ease;
}

.footer-layout-one-v5-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    right: -34px;
    bottom: -34px;
    border-radius: 50%;
    background: var(--footer-secondary);
    opacity: 0.10;
    transition: 0.35s ease;
}

.footer-layout-one-v5-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 60px rgba(31, 45, 61, 0.16);
    border-color: var(--footer-secondary);
}

.footer-layout-one-v5-card:hover::before {
    left: 14px;
    right: 14px;
    height: 6px;
    background: var(--footer-secondary);
}

.footer-layout-one-v5-card:hover::after {
    transform: scale(1.6);
    opacity: 0.20;
}

.footer-layout-one-v5-card.contact-card::before,
.footer-layout-one-v5-card.important-card::before {
    background: var(--footer-primary);
}

.footer-layout-one-v5-card.quick-card::before,
.footer-layout-one-v5-card.about-card::before {
    background: var(--footer-secondary);
}

.footer-layout-one-v5-title {
    position: relative;
    z-index: 2;
    color: var(--footer-text);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 18px;
    padding-bottom: 12px;
}

.footer-layout-one-v5-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 20px;
    background: var(--footer-secondary);
    transition: 0.3s ease;
}

.footer-layout-one-v5-card:hover .footer-layout-one-v5-title {
    color: var(--footer-primary);
}

.footer-layout-one-v5-card:hover .footer-layout-one-v5-title::after {
    width: 70px;
    background: var(--footer-primary);
}

.footer-layout-one-v5-about {
    position: relative;
    z-index: 2;
    color: var(--footer-muted);
    font-size: 14.5px;
    line-height: 1.72;
    text-align: justify;
    max-height: 270px;
    overflow-y: auto;
    padding-right: 4px;
}

.footer-layout-one-v5-about::-webkit-scrollbar {
    width: 4px;
}

.footer-layout-one-v5-about::-webkit-scrollbar-thumb {
    background: var(--footer-secondary);
    border-radius: 20px;
}

.footer-layout-one-v5-about p {
    margin-bottom: 12px;
}

.footer-layout-one-v5-about a {
    color: var(--footer-primary);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid var(--footer-secondary);
}

.footer-layout-one-v5-list,
.footer-layout-one-v5-contact,
.footer-layout-one-v5-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-layout-one-v5-list li {
    margin-bottom: 9px;
    min-width: 0;
}

.footer-layout-one-v5-list a {
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 9px;
    align-items: flex-start;
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 14.5px;
    line-height: 1.45;
    transition: 0.25s ease;
    min-width: 0;
}

.footer-layout-one-v5-list a i {
    color: var(--footer-secondary);
    font-size: 12px;
    margin-top: 5px;
}

.footer-layout-one-v5-list a span,
.footer-layout-one-v5-contact a,
.footer-layout-one-v5-contact span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-layout-one-v5-list a:hover {
    color: var(--footer-primary);
    transform: translateX(5px);
}

.footer-layout-one-v5-contact li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 13px;
    color: var(--footer-muted);
    font-size: 14.5px;
    line-height: 1.55;
    min-width: 0;
}

.footer-layout-one-v5-contact li > i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 13px;
    background: var(--footer-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    animation: footerL1IconPulse 2.8s ease-in-out infinite;
}

.footer-layout-one-v5-contact a,
.footer-layout-one-v5-contact span {
    color: var(--footer-muted);
    text-decoration: none;
}

.footer-layout-one-v5-contact a:hover {
    color: var(--footer-primary);
}

.footer-layout-one-v5-stats-wrapper {
    position: relative;
    z-index: 3;
    padding: 0 0 42px;
}

.footer-layout-one-v5-stats-panel {
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--footer-border);
    padding: 28px 22px;
    box-shadow: 0 18px 45px rgba(31, 45, 61, 0.08);
}

.footer-layout-one-v5-stats-panel .row > [class*="col-"] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-layout-one-v5-stat-card {
    position: relative;
    width: 165px;
    height: 165px;
    max-width: 100%;
    padding: 18px 16px;
    border-radius: 50%;
    background: var(--footer-primary);
    text-align: center;
    transition: 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    word-break: break-word;
    box-shadow: 0 16px 34px rgba(31, 45, 61, 0.16);
}

.footer-layout-one-v5-stat-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    z-index: 1;
    pointer-events: none;
}

.footer-layout-one-v5-stat-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    top: -24px;
    right: -22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    animation: footerL1CircleGlow 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.footer-layout-one-v5-stat-card:hover {
    transform: translateY(-7px) scale(1.03);
    background: var(--footer-secondary);
    box-shadow: 0 22px 46px rgba(31, 45, 61, 0.22);
}

.footer-layout-one-v5-stat-card h6,
.footer-layout-one-v5-stat-card h4 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    margin: 0;
}

.footer-layout-one-v5-stat-card h6 {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.32;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-layout-one-v5-stat-card h6 i {
    display: block;
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 8px;
}

.footer-layout-one-v5-stat-card h4 {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
}

.footer-layout-one-v5-bottom {
    position: relative;
    z-index: 3;
    padding: 18px 0;
    background: var(--footer-primary);
}

.footer-layout-one-v5-copy {
    color: rgba(255, 255, 255, 0.94);
    font-size: 15px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-layout-one-v5-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-layout-one-v5-social li a {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-layout-one-v5-social li a:hover {
    background: var(--footer-secondary);
    transform: translateY(-4px) rotate(-3deg);
}

@keyframes footerL1WaveMove {
    0% { left: -35%; }
    50% { left: 50%; }
    100% { left: 100%; }
}

@keyframes footerL1PatternMove {
    from { background-position: 0 0; }
    to { background-position: 84px 84px; }
}

@keyframes footerL1FloatOne {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(18px) scale(1.04); }
}

@keyframes footerL1FloatTwo {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-22px) scale(1.03); }
}

@keyframes footerL1IconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(31, 45, 61, 0.12); }
    50% { box-shadow: 0 0 0 8px rgba(31, 45, 61, 0.06); }
}

@keyframes footerL1CardIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes footerL1CircleGlow {
    0%, 100% { transform: scale(1); opacity: 0.16; }
    50% { transform: scale(1.25); opacity: 0.28; }
}

/* =====================================================
   04. Footer Layout 2 - Premium Split Footer
   Used by: footer_2.blade.php
   ===================================================== */
.footer-layout-two-v1 {
    --footer2-primary: var(--theme-color, #123d5c);
    --footer2-secondary: var(--theme-color2, #0c8d86);
    --footer2-dark: #0f2537;
    --footer2-text: #24384a;
    --footer2-muted: #667789;
    --footer2-light: #f5f8fb;
    --footer2-card: #ffffff;
    --footer2-border: rgba(15, 37, 55, 0.10);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fbff 0%, #eef5f9 100%);
    color: var(--footer2-text);
    z-index: 1;
}

.footer-layout-two-v1,
.footer-layout-two-v1 * {
    box-sizing: border-box;
}

.footer-layout-two-v1-bg {
    position: absolute;
    inset: 0;
    background-image: var(--footer-bg-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: -4;
}

.footer-layout-two-v1::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(12, 141, 134, 0.16), transparent 30%),
        radial-gradient(circle at 90% 85%, rgba(18, 61, 92, 0.14), transparent 30%);
    z-index: -3;
}

.footer-layout-two-v1-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -2;
}

.footer-layout-two-v1-shape-left {
    width: 360px;
    height: 360px;
    left: -180px;
    top: 120px;
    background: var(--footer2-secondary);
    opacity: 0.08;
}

.footer-layout-two-v1-shape-right {
    width: 420px;
    height: 420px;
    right: -220px;
    bottom: 80px;
    background: var(--footer2-primary);
    opacity: 0.08;
}

.footer-layout-two-v1-top {
    position: relative;
    padding: 56px 0 0;
    z-index: 2;
}

.footer-layout-two-v1-top-panel {
    border-radius: 28px;
    padding: 28px 32px;
    background: var(--footer2-primary);
    box-shadow: 0 18px 46px rgba(15, 37, 55, 0.18);
    overflow: hidden;
    position: relative;
}

.footer-layout-two-v1-top-panel::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    top: -140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.footer-layout-two-v1-kicker {
    display: inline-block;
    color: rgba(255, 255, 255, 0.80);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-layout-two-v1-top-panel h3 {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 8px;
}

.footer-layout-two-v1-top-panel p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.footer-layout-two-v1-contact-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--footer2-primary);
    background: #ffffff;
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 800;
    text-decoration: none;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: 0.28s ease;
}

.footer-layout-two-v1-contact-btn i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--footer2-secondary);
}

.footer-layout-two-v1-contact-btn:hover {
    color: #ffffff;
    background: var(--footer2-secondary);
    transform: translateY(-3px);
}

.footer-layout-two-v1-contact-btn:hover i {
    background: rgba(255, 255, 255, 0.18);
}

.footer-layout-two-v1-main {
    position: relative;
    z-index: 2;
    padding: 48px 0 36px;
}

.footer-layout-two-v1-about-card,
.footer-layout-two-v1-widget,
.footer-layout-two-v1-contact-card {
    height: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--footer2-border);
    box-shadow: 0 12px 34px rgba(15, 37, 55, 0.08);
    padding: 25px 23px;
    backdrop-filter: blur(10px);
    transition: 0.30s ease;
    overflow: hidden;
}

.footer-layout-two-v1-about-card:hover,
.footer-layout-two-v1-widget:hover,
.footer-layout-two-v1-contact-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(15, 37, 55, 0.14);
    border-color: rgba(12, 141, 134, 0.38);
}

.footer-layout-two-v1-title {
    position: relative;
    color: var(--footer2-dark);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 13px;
}

.footer-layout-two-v1-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 4px;
    border-radius: 50px;
    background: var(--footer2-secondary);
}

.footer-layout-two-v1-title::after {
    content: "";
    position: absolute;
    left: 64px;
    bottom: 0;
    width: 10px;
    height: 4px;
    border-radius: 50px;
    background: var(--footer2-primary);
}

.footer-layout-two-v1-about-text {
    color: var(--footer2-muted);
    font-size: 14.5px;
    line-height: 1.75;
    text-align: justify;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 6px;
}

.footer-layout-two-v1-about-text::-webkit-scrollbar {
    width: 4px;
}

.footer-layout-two-v1-about-text::-webkit-scrollbar-thumb {
    background: var(--footer2-secondary);
    border-radius: 30px;
}

.footer-layout-two-v1-read-more {
    color: var(--footer2-primary);
    border-bottom: 1px solid var(--footer2-secondary);
}

.footer-layout-two-v1-read-more:hover {
    color: var(--footer2-secondary);
}

.footer-layout-two-v1-list,
.footer-layout-two-v1-contact-list,
.footer-layout-two-v1-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-layout-two-v1-list li {
    margin-bottom: 10px;
}

.footer-layout-two-v1-list a {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: flex-start;
    gap: 8px;
    color: var(--footer2-muted);
    font-size: 14.5px;
    line-height: 1.45;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: 0.25s ease;
}

.footer-layout-two-v1-list a i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--footer2-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 1px;
    transition: 0.25s ease;
}

.footer-layout-two-v1-list a:hover {
    color: var(--footer2-primary);
    transform: translateX(5px);
}

.footer-layout-two-v1-list a:hover i {
    background: var(--footer2-primary);
}

.footer-layout-two-v1-empty {
    color: var(--footer2-muted);
    font-size: 14px;
}

.footer-layout-two-v1-contact-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--footer2-muted);
    font-size: 14.5px;
    line-height: 1.55;
}

.footer-layout-two-v1-contact-list li > i {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    color: #ffffff;
    background: var(--footer2-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.footer-layout-two-v1-contact-list a,
.footer-layout-two-v1-contact-list span {
    color: var(--footer2-muted);
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-layout-two-v1-contact-list a:hover {
    color: var(--footer2-secondary);
}

.footer-layout-two-v1-stats-wrap {
    position: relative;
    z-index: 2;
    padding: 0 0 42px;
}

.footer-layout-two-v1-stat {
    position: relative;
    min-height: 138px;
    border-radius: 22px;
    padding: 22px 18px;
    background: var(--footer2-primary);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 37, 55, 0.16);
    transition: 0.30s ease;
}

.footer-layout-two-v1-stat::after {
    content: "";
    position: absolute;
    width: 86px;
    height: 86px;
    right: -34px;
    top: -30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.footer-layout-two-v1-stat i {
    position: relative;
    z-index: 2;
    font-size: 25px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-layout-two-v1-stat span {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.footer-layout-two-v1-stat strong {
    position: relative;
    z-index: 2;
    display: block;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    margin-top: 6px;
}

.footer-layout-two-v1-stat:hover {
    transform: translateY(-6px);
    background: var(--footer2-secondary);
}

.footer-layout-two-v1-bottom {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    background: var(--footer2-dark);
}

.footer-layout-two-v1-copy {
    color: rgba(255, 255, 255, 0.90);
    font-size: 15px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-layout-two-v1-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-layout-two-v1-social li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-layout-two-v1-social li a:hover {
    color: #ffffff;
    background: var(--footer2-secondary);
    transform: translateY(-4px);
}

/* =====================================================
   05. Footer Layout 3 - Dark Modern Grid Footer
   Used by: footer_3.blade.php
   ===================================================== */
.footer-layout-three-v1 {
    --footer3-primary: var(--theme-color, #13435f);
    --footer3-secondary: var(--theme-color2, #0c8d86);
    --footer3-bg: #081923;
    --footer3-card: rgba(255, 255, 255, 0.065);
    --footer3-border: rgba(255, 255, 255, 0.12);
    --footer3-text: #ffffff;
    --footer3-muted: rgba(255, 255, 255, 0.74);
    position: relative;
    overflow: hidden;
    background: var(--footer3-bg);
    color: var(--footer3-text);
    z-index: 1;
}

.footer-layout-three-v1,
.footer-layout-three-v1 * {
    box-sizing: border-box;
}

.footer-layout-three-v1-bg {
    position: absolute;
    inset: 0;
    background-image: var(--footer-bg-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    z-index: -4;
}

.footer-layout-three-v1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 25, 35, 0.96), rgba(8, 25, 35, 0.90));
    z-index: -3;
}

.footer-layout-three-v1-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.7;
    z-index: -2;
}

.footer-layout-three-v1-contact-strip {
    position: relative;
    z-index: 2;
    padding: 44px 0 0;
}

.footer-layout-three-v1-strip-item {
    height: 100%;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    padding: 20px 18px;
    border-radius: 20px;
    background: var(--footer3-card);
    border: 1px solid var(--footer3-border);
    backdrop-filter: blur(10px);
    transition: 0.30s ease;
}

.footer-layout-three-v1-strip-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.09);
}

.footer-layout-three-v1-strip-item > i {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--footer3-secondary);
    font-size: 18px;
}

.footer-layout-three-v1-strip-item span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-layout-three-v1-strip-item a,
.footer-layout-three-v1-strip-item p {
    color: #ffffff;
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-layout-three-v1-strip-item a:hover {
    color: var(--footer3-secondary);
}

.footer-layout-three-v1-main {
    position: relative;
    z-index: 2;
    padding: 54px 0 42px;
}

.footer-layout-three-v1-about,
.footer-layout-three-v1-widget,
.footer-layout-three-v1-stats-card {
    height: 100%;
    border-radius: 22px;
    padding: 24px 22px;
    background: var(--footer3-card);
    border: 1px solid var(--footer3-border);
    backdrop-filter: blur(10px);
    transition: 0.30s ease;
}

.footer-layout-three-v1-about:hover,
.footer-layout-three-v1-widget:hover,
.footer-layout-three-v1-stats-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.25);
}

.footer-layout-three-v1-tag {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-layout-three-v1-about h3 {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-layout-three-v1-title {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.footer-layout-three-v1-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
    border-radius: 30px;
    background: var(--footer3-secondary);
}

.footer-layout-three-v1-about-text {
    color: var(--footer3-muted);
    font-size: 14.5px;
    line-height: 1.75;
    text-align: justify;
    max-height: 265px;
    overflow-y: auto;
    padding-right: 6px;
}

.footer-layout-three-v1-about-text::-webkit-scrollbar {
    width: 4px;
}

.footer-layout-three-v1-about-text::-webkit-scrollbar-thumb {
    background: var(--footer3-secondary);
    border-radius: 30px;
}

.footer-layout-three-v1-read-more {
    color: #ffffff;
    border-bottom: 1px solid var(--footer3-secondary);
}

.footer-layout-three-v1-read-more:hover {
    color: var(--footer3-secondary);
}

.footer-layout-three-v1-list,
.footer-layout-three-v1-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-layout-three-v1-list li {
    margin-bottom: 10px;
}

.footer-layout-three-v1-list a {
    position: relative;
    display: block;
    color: var(--footer3-muted);
    text-decoration: none;
    font-size: 14.5px;
    line-height: 1.5;
    padding-left: 18px;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: 0.25s ease;
}

.footer-layout-three-v1-list a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--footer3-secondary);
    transition: 0.25s ease;
}

.footer-layout-three-v1-list a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-layout-three-v1-list a:hover::before {
    transform: scale(1.45);
    background: #ffffff;
}

.footer-layout-three-v1-empty {
    color: var(--footer3-muted);
    font-size: 14px;
}

.footer-layout-three-v1-stats-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045));
}

.footer-layout-three-v1-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-layout-three-v1-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-layout-three-v1-stat-row span {
    color: var(--footer3-muted);
    font-size: 13.5px;
    line-height: 1.4;
    font-weight: 700;
}

.footer-layout-three-v1-stat-row span i {
    color: var(--footer3-secondary);
    margin-right: 7px;
}

.footer-layout-three-v1-stat-row strong {
    min-width: 66px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 7px 8px;
    text-align: center;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
}

.footer-layout-three-v1-bottom {
    position: relative;
    z-index: 2;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.18);
}

.footer-layout-three-v1-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-layout-three-v1-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-layout-three-v1-social li a {
    width: 39px;
    height: 39px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-layout-three-v1-social li a:hover {
    color: #ffffff;
    background: var(--footer3-secondary);
    transform: translateY(-4px) rotate(-3deg);
}

/* =====================================================
   06. Responsive Rules for Dynamic Footer Layouts
   Applies to footer_1, footer_2, footer_3
   ===================================================== */
@media (max-width: 1199px) {
    .footer-layout-one-v5-main,
    .footer-layout-two-v1-main,
    .footer-layout-three-v1-main {
        padding-top: 60px;
    }

    .footer-layout-one-v5-card,
    .footer-layout-two-v1-about-card,
    .footer-layout-two-v1-widget,
    .footer-layout-two-v1-contact-card,
    .footer-layout-three-v1-about,
    .footer-layout-three-v1-widget,
    .footer-layout-three-v1-stats-card {
        padding: 22px 20px;
    }
}

@media (max-width: 991px) {
    .footer-layout-one-v5-main {
        padding: 58px 0 30px;
    }

    .footer-layout-one-v5-about,
    .footer-layout-two-v1-about-text,
    .footer-layout-three-v1-about-text {
        max-height: none;
        overflow-y: visible;
    }

    .footer-layout-two-v1-top {
        padding-top: 44px;
    }

    .footer-layout-three-v1-contact-strip {
        padding-top: 38px;
    }
}

@media (max-width: 767px) {
    .footer-layout-one-v5-main {
        padding: 48px 0 24px;
    }

    .footer-layout-two-v1-main,
    .footer-layout-three-v1-main {
        padding: 38px 0 28px;
    }

    .footer-layout-one-v5-card,
    .footer-layout-two-v1-about-card,
    .footer-layout-two-v1-widget,
    .footer-layout-two-v1-contact-card,
    .footer-layout-three-v1-about,
    .footer-layout-three-v1-widget,
    .footer-layout-three-v1-stats-card {
        border-radius: 20px;
    }

    .footer-layout-one-v5-title,
    .footer-layout-two-v1-title,
    .footer-layout-three-v1-title {
        font-size: 17px;
    }

    .footer-layout-one-v5-about,
    .footer-layout-one-v5-list a,
    .footer-layout-one-v5-contact li,
    .footer-layout-two-v1-about-text,
    .footer-layout-two-v1-list a,
    .footer-layout-two-v1-contact-list li,
    .footer-layout-three-v1-about-text,
    .footer-layout-three-v1-list a,
    .footer-layout-three-v1-strip-item a,
    .footer-layout-three-v1-strip-item p {
        font-size: 14px;
    }

    .footer-layout-one-v5-stats-panel {
        padding: 22px 14px;
    }

    .footer-layout-one-v5-stat-card {
        width: 145px;
        height: 145px;
        padding: 16px 12px;
    }

    .footer-layout-one-v5-stat-card h6 {
        font-size: 12px;
    }

    .footer-layout-one-v5-stat-card h6 i {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .footer-layout-one-v5-stat-card h4 {
        font-size: 24px;
    }

    .footer-layout-one-v5-copy,
    .footer-layout-two-v1-copy,
    .footer-layout-three-v1-copy {
        text-align: center;
        margin-bottom: 14px;
    }

    .footer-layout-one-v5-social,
    .footer-layout-two-v1-social,
    .footer-layout-three-v1-social {
        justify-content: center;
    }

    .footer-layout-two-v1-top-panel {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .footer-layout-two-v1-top-panel h3,
    .footer-layout-three-v1-about h3 {
        font-size: 23px;
    }

    .footer-layout-two-v1-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-layout-one-v5-main {
        padding: 42px 0 20px;
    }

    .footer-layout-one-v5-card,
    .footer-layout-two-v1-about-card,
    .footer-layout-two-v1-widget,
    .footer-layout-two-v1-contact-card,
    .footer-layout-three-v1-about,
    .footer-layout-three-v1-widget,
    .footer-layout-three-v1-stats-card {
        padding: 20px 18px;
    }

    .footer-layout-one-v5-contact li,
    .footer-layout-two-v1-contact-list li {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
    }

    .footer-layout-one-v5-contact li > i,
    .footer-layout-two-v1-contact-list li > i {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 12px;
        font-size: 13px;
    }

    .footer-layout-one-v5-stats-panel {
        padding: 18px 10px;
    }

    .footer-layout-one-v5-stat-card {
        width: 132px;
        height: 132px;
        padding: 14px 10px;
    }

    .footer-layout-one-v5-stat-card h6 {
        font-size: 11px;
        line-height: 1.25;
    }

    .footer-layout-one-v5-stat-card h6 i {
        font-size: 17px;
    }

    .footer-layout-one-v5-stat-card h4 {
        font-size: 22px;
    }

    .footer-layout-two-v1-stat {
        min-height: 126px;
        padding: 18px 14px;
    }

    .footer-layout-two-v1-stat strong {
        font-size: 24px;
    }

    .footer-layout-three-v1-strip-item {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 18px 16px;
    }

    .footer-layout-three-v1-strip-item > i {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .footer-layout-three-v1-stat-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .footer-layout-three-v1-stat-row strong {
        min-width: 90px;
    }
}

@media (max-width: 380px) {
    .footer-layout-one-v5-card,
    .footer-layout-two-v1-about-card,
    .footer-layout-two-v1-widget,
    .footer-layout-two-v1-contact-card,
    .footer-layout-three-v1-about,
    .footer-layout-three-v1-widget,
    .footer-layout-three-v1-stats-card {
        padding: 18px 15px;
    }

    .footer-layout-one-v5-stat-card {
        width: 122px;
        height: 122px;
        padding: 12px 8px;
    }

    .footer-layout-one-v5-stat-card h6 {
        font-size: 10px;
    }

    .footer-layout-one-v5-stat-card h4 {
        font-size: 20px;
    }

    .footer-layout-one-v5-social li a,
    .footer-layout-two-v1-social li a,
    .footer-layout-three-v1-social li a {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-layout-one-v5,
    .footer-layout-one-v5 *,
    .footer-layout-one-v5::before,
    .footer-layout-one-v5::after,
    .footer-layout-two-v1,
    .footer-layout-two-v1 *,
    .footer-layout-three-v1,
    .footer-layout-three-v1 * {
        animation: none !important;
        transition: none !important;
    }
}



/* =========================================================
   PROFESSIONAL FOOTER LAYOUTS 4 TO 10
   Add this CSS at the end of: public/assets/frontend/css/footer.css
   ========================================================= */

.footer-layout-four-pro,
.footer-layout-five-pro,
.footer-layout-six-pro,
.footer-layout-seven-pro,
.footer-layout-eight-pro,
.footer-layout-nine-pro,
.footer-layout-ten-pro {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.footer-layout-four-pro *,
.footer-layout-five-pro *,
.footer-layout-six-pro *,
.footer-layout-seven-pro *,
.footer-layout-eight-pro *,
.footer-layout-nine-pro *,
.footer-layout-ten-pro * {
    box-sizing: border-box;
}

.footer-layout-four-pro a,
.footer-layout-five-pro a,
.footer-layout-six-pro a,
.footer-layout-seven-pro a,
.footer-layout-eight-pro a,
.footer-layout-nine-pro a,
.footer-layout-ten-pro a {
    text-decoration: none;
}

.footer-pro-bg {
    position: absolute;
    inset: 0;
    background-image: var(--footer-bg-image);
    background-size: cover;
    background-position: center;
    z-index: -3;
}

.footer-pro-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 34, 0.84);
}

.footer-pro-empty {
    display: inline-block;
    color: inherit;
    opacity: 0.72;
    font-size: 14px;
}

.footer-pro-social {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-pro-social li {
    margin: 0;
}

.footer-pro-social a {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transition: 0.28s ease;
}

.footer-pro-social a:hover {
    transform: translateY(-4px);
    background: var(--footer-secondary);
    color: #ffffff;
}

.footer-pro-stats {
    height: 100%;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
}

.footer-pro-stats h4 {
    font-size: 19px;
    margin: 0 0 18px;
    color: #ffffff;
    font-weight: 700;
}

.footer-pro-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82);
}

.footer-pro-stat-item:last-child {
    border-bottom: 0;
}

.footer-pro-stat-item span {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    font-size: 14px;
}

.footer-pro-stat-item strong {
    color: #ffffff;
    font-size: 18px;
}

/* ================= LAYOUT 4 ================= */

.footer-layout-four-pro {
    --footer-dark: #071827;
    --footer-dark-2: #0c2537;
    background:
        radial-gradient(circle at 15% 10%, color-mix(in srgb, var(--footer-secondary) 34%, transparent), transparent 30%),
        radial-gradient(circle at 90% 5%, color-mix(in srgb, var(--footer-primary) 40%, transparent), transparent 35%),
        linear-gradient(135deg, var(--footer-dark), var(--footer-dark-2));
    color: #ffffff;
}

.footer-four-pro-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    z-index: -1;
    animation: footerFourGridMove 25s linear infinite;
}

@keyframes footerFourGridMove {
    from { background-position: 0 0; }
    to { background-position: 88px 88px; }
}

.footer-four-pro-contact {
    position: relative;
    padding: 26px 0 0;
    z-index: 2;
}

.footer-four-pro-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.footer-four-pro-contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px 20px;
    min-width: 0;
    border-radius: 22px;
    color: #ffffff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    transition: 0.28s ease;
}

.footer-four-pro-contact-item:hover {
    color: #ffffff;
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.footer-four-pro-contact-item i {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--footer-secondary);
    color: #ffffff;
    flex: 0 0 auto;
}

.footer-four-pro-contact-item span {
    min-width: 0;
}

.footer-four-pro-contact-item small {
    display: block;
    color: rgba(255,255,255,0.67);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 4px;
}

.footer-four-pro-contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.footer-four-pro-main {
    padding: 44px 0 42px;
}

.footer-four-pro-brand-card,
.footer-four-pro-widget {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
}

.footer-four-pro-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.footer-four-pro-logo-row img {
    max-width: 78px;
    max-height: 78px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-four-pro-logo-row span,
.footer-four-pro-brand-card > .footer-pro-social + span {
    color: var(--footer-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-four-pro-logo-row h3 {
    color: #ffffff;
    margin: 4px 0 0;
    font-size: 25px;
    line-height: 1.25;
}

.footer-four-pro-brand-card p {
    color: rgba(255,255,255,0.76);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-four-pro-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--footer-primary);
    font-weight: 700;
    transition: 0.28s ease;
}

.footer-four-pro-read:hover {
    background: var(--footer-secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-four-pro-widget h4 {
    color: #ffffff;
    font-size: 19px;
    margin-bottom: 19px;
    position: relative;
}

.footer-four-pro-widget h4::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 10px;
    border-radius: 10px;
    background: var(--footer-secondary);
}

.footer-four-pro-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-four-pro-widget li {
    margin-bottom: 11px;
}

.footer-four-pro-widget a {
    display: inline-flex;
    gap: 9px;
    align-items: flex-start;
    color: rgba(255,255,255,0.78);
    transition: 0.25s ease;
}

.footer-four-pro-widget a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-four-pro-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 19px 0;
    color: rgba(255,255,255,0.72);
}

.footer-four-pro-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    font-size: 14px;
}

/* ================= LAYOUT 5 ================= */

.footer-layout-five-pro {
    background:
        linear-gradient(135deg, #f7f4ee 0%, #ffffff 52%, #eef7f5 100%);
    color: #1f2d3d;
    padding: 72px 0 24px;
}

.footer-layout-five-pro.footer-has-bg {
    color: #ffffff;
}

.footer-five-pro-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.65fr;
    gap: 28px;
    align-items: stretch;
}

.footer-five-pro-intro {
    position: relative;
    padding: 36px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--footer-primary), color-mix(in srgb, var(--footer-primary) 70%, #000));
    color: #ffffff;
}

.footer-five-pro-intro::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -78px;
    bottom: -80px;
    border-radius: 50%;
    background: var(--footer-secondary);
    opacity: 0.32;
}

.footer-five-pro-label {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-five-pro-intro h3 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.25;
    margin: 12px 0 15px;
}

.footer-five-pro-intro p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
}

.footer-five-pro-intro a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--footer-primary);
    font-weight: 700;
}

.footer-five-pro-directory {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 0.95fr;
    gap: 18px;
}

.footer-five-pro-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 28px;
    background: #ffffff;
    color: #1f2d3d;
    border: 1px solid rgba(31,45,61,0.08);
    box-shadow: 0 18px 42px rgba(31,45,61,0.08);
    transition: 0.28s ease;
}

.footer-five-pro-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 60px rgba(31,45,61,0.13);
}

.footer-five-pro-card-dark {
    background: #1f2d3d;
    color: #ffffff;
}

.footer-five-pro-card h4 {
    margin: 0 0 17px;
    font-size: 18px;
    color: inherit;
}

.footer-five-pro-card p {
    display: flex;
    gap: 10px;
    color: inherit;
    opacity: 0.82;
    line-height: 1.55;
    margin-bottom: 13px;
    overflow-wrap: anywhere;
}

.footer-five-pro-card p i {
    color: var(--footer-secondary);
    margin-top: 4px;
}

.footer-five-pro-card a {
    color: inherit;
}

.footer-five-pro-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-five-pro-card li {
    margin-bottom: 10px;
}

.footer-five-pro-card li a {
    display: inline-flex;
    gap: 8px;
    color: #5f6f83;
    transition: 0.25s ease;
}

.footer-five-pro-card-dark .footer-pro-social a {
    background: rgba(255,255,255,0.12);
}

.footer-five-pro-card li a:hover {
    color: var(--footer-primary);
    transform: translateX(5px);
}

.footer-five-pro-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.footer-five-pro-stats-row div {
    padding: 17px 18px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(31,45,61,0.07);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.footer-five-pro-stats-row i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--footer-primary) 12%, #ffffff);
    color: var(--footer-primary);
    flex: 0 0 auto;
}

.footer-five-pro-stats-row span {
    color: #6b7280;
    font-size: 13px;
}

.footer-five-pro-stats-row strong {
    margin-left: auto;
    color: #1f2d3d;
    font-size: 18px;
}

.footer-five-pro-bottom {
    margin-top: 23px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* ================= LAYOUT 6 ================= */

.footer-layout-six-pro {
    background: #ffffff;
    color: #1f2d3d;
    padding: 0 0 20px;
}

.footer-six-pro-topline {
    height: 9px;
    background: linear-gradient(90deg, var(--footer-primary), var(--footer-secondary), var(--footer-primary));
}

.footer-six-pro-header {
    padding: 34px 0 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(31,45,61,0.10);
}

.footer-six-pro-header img {
    max-width: 82px;
    max-height: 82px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-six-pro-header span {
    display: block;
    color: var(--footer-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-six-pro-header h3 {
    margin: 0;
    color: #1f2d3d;
    font-size: 30px;
    line-height: 1.25;
}

.footer-six-pro-body {
    display: grid;
    grid-template-columns: 1.2fr 1.35fr 0.95fr;
    gap: 34px;
    padding: 34px 0;
}

.footer-six-pro-body h4 {
    margin-bottom: 16px;
    color: #1f2d3d;
    font-size: 18px;
}

.footer-six-pro-about p {
    color: #667085;
    line-height: 1.75;
}

.footer-six-pro-about a {
    display: inline-block;
    margin-top: 6px;
    color: var(--footer-primary);
    font-weight: 700;
}

.footer-six-pro-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.footer-six-pro-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-six-pro-links li {
    margin-bottom: 9px;
}

.footer-six-pro-links a {
    color: #667085;
    display: inline-flex;
    gap: 8px;
    transition: 0.25s ease;
}

.footer-six-pro-links a:hover {
    color: var(--footer-primary);
    transform: translateX(4px);
}

.footer-six-pro-contact a,
.footer-six-pro-contact p {
    display: flex;
    gap: 10px;
    color: #667085;
    margin-bottom: 12px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.footer-six-pro-contact i {
    color: var(--footer-primary);
    margin-top: 4px;
}

.footer-six-pro-contact .footer-pro-social a {
    background: color-mix(in srgb, var(--footer-primary) 10%, #ffffff);
    color: var(--footer-primary);
    margin: 0;
}

.footer-six-pro-contact .footer-pro-social a:hover {
    color: #ffffff;
}

.footer-six-pro-visitor-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 18px;
    background: #f5f7fa;
    border-radius: 18px;
    color: #667085;
}

.footer-six-pro-visitor-bar strong {
    color: #1f2d3d;
}

.footer-six-pro-bottom {
    padding-top: 18px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* ================= LAYOUT 7 ================= */

.footer-layout-seven-pro {
    background: #071827;
    color: #ffffff;
    padding-top: 54px;
}

.footer-layout-seven-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(130deg, transparent 0 35%, rgba(255,255,255,0.05) 35% 53%, transparent 53% 100%),
        radial-gradient(circle at 12% 80%, color-mix(in srgb, var(--footer-secondary) 35%, transparent), transparent 32%);
    z-index: -1;
}

.footer-seven-pro-cta {
    position: relative;
    z-index: 2;
}

.footer-seven-pro-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    padding: 27px 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

.footer-seven-pro-cta-inner span {
    display: block;
    color: rgba(255,255,255,0.76);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.footer-seven-pro-cta-inner h3 {
    color: #ffffff;
    margin: 6px 0 0;
    font-size: 28px;
}

.footer-seven-pro-cta-inner > div:last-child {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-seven-pro-cta-inner a {
    padding: 11px 17px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--footer-primary);
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.footer-seven-pro-main {
    padding: 42px 0 26px;
}

.footer-seven-pro-about-card,
.footer-seven-pro-widget,
.footer-seven-pro-contact-card {
    height: 100%;
    padding: 27px;
    border-radius: 26px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.footer-seven-pro-about-card span {
    color: var(--footer-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-seven-pro-about-card h3,
.footer-seven-pro-widget h4,
.footer-seven-pro-contact-card h4 {
    color: #ffffff;
}

.footer-seven-pro-about-card h3 {
    margin: 8px 0 14px;
    font-size: 27px;
}

.footer-seven-pro-about-card p,
.footer-seven-pro-contact-card p,
.footer-seven-pro-contact-card a {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.footer-seven-pro-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-seven-pro-widget li {
    margin-bottom: 10px;
}

.footer-seven-pro-widget a {
    display: inline-flex;
    gap: 8px;
    color: rgba(255,255,255,0.73);
    transition: 0.25s ease;
}

.footer-seven-pro-widget a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-seven-pro-contact-card p,
.footer-seven-pro-contact-card a {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.footer-seven-pro-contact-card i {
    color: var(--footer-secondary);
    margin-top: 5px;
}

.footer-seven-pro-stats {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.footer-seven-pro-stats div {
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    padding: 17px 18px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.footer-seven-pro-stats span {
    color: rgba(255,255,255,0.68);
}

.footer-seven-pro-stats strong {
    color: #ffffff;
}

.footer-seven-pro-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.68);
    text-align: center;
}

/* ================= LAYOUT 8 ================= */

.footer-layout-eight-pro {
    background: linear-gradient(135deg, #071827 0%, #0d3248 55%, #10243a 100%);
    color: #ffffff;
    padding: 74px 0 22px;
}

.footer-eight-pro-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.28;
    z-index: -1;
}

.footer-eight-pro-orb-one {
    width: 270px;
    height: 270px;
    background: var(--footer-secondary);
    top: -90px;
    left: -90px;
}

.footer-eight-pro-orb-two {
    width: 340px;
    height: 340px;
    background: var(--footer-primary);
    right: -130px;
    bottom: -130px;
}

.footer-eight-pro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr 0.92fr;
    gap: 20px;
    align-items: stretch;
}

.footer-eight-pro-brand,
.footer-eight-pro-board,
.footer-eight-pro-contact {
    border-radius: 30px;
    padding: 30px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(13px);
}

.footer-eight-pro-brand span {
    color: var(--footer-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.footer-eight-pro-brand h3 {
    color: #ffffff;
    margin: 11px 0 14px;
    font-size: 30px;
}

.footer-eight-pro-brand p {
    color: rgba(255,255,255,0.76);
    line-height: 1.75;
}

.footer-eight-pro-brand a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    color: #ffffff;
    font-weight: 700;
}

.footer-eight-pro-board-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.footer-eight-pro-board-head h4,
.footer-eight-pro-contact h4 {
    color: #ffffff;
    margin: 0;
}

.footer-eight-pro-board-head .footer-pro-social {
    margin-top: 0;
}

.footer-eight-pro-board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.footer-eight-pro-board-grid h5 {
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-eight-pro-board-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-eight-pro-board-grid li {
    margin-bottom: 10px;
}

.footer-eight-pro-board-grid a {
    color: rgba(255,255,255,0.72);
    display: inline-flex;
    gap: 8px;
    transition: 0.25s ease;
}

.footer-eight-pro-board-grid a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-eight-pro-contact > a,
.footer-eight-pro-contact > p {
    display: flex;
    gap: 12px;
    color: rgba(255,255,255,0.76);
    margin: 14px 0;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.footer-eight-pro-contact > a i,
.footer-eight-pro-contact > p i {
    color: var(--footer-secondary);
    margin-top: 5px;
}

.footer-eight-pro-contact .footer-pro-stats {
    padding: 18px;
    margin-top: 18px;
    border-radius: 22px;
}

.footer-eight-pro-bottom {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    color: rgba(255,255,255,0.68);
}

/* ================= LAYOUT 9 ================= */

.footer-layout-nine-pro {
    background: #101820;
    color: #ffffff;
    padding: 56px 0 18px;
}

.footer-layout-nine-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.7;
    z-index: -1;
}

.footer-nine-pro-title-row {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    margin-bottom: 24px;
}

.footer-nine-pro-title-row span {
    color: var(--footer-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.footer-nine-pro-title-row h3 {
    color: #ffffff;
    margin: 6px 0 0;
    font-size: 31px;
}

.footer-nine-pro-title-row .footer-pro-social {
    margin-top: 0;
}

.footer-nine-pro-mega {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 0.95fr 1fr;
    gap: 16px;
}

.footer-nine-pro-about,
.footer-nine-pro-linkbox,
.footer-nine-pro-contactbox {
    padding: 25px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.11);
}

.footer-nine-pro-about h4,
.footer-nine-pro-linkbox h4,
.footer-nine-pro-contactbox h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-nine-pro-about p {
    color: rgba(255,255,255,0.74);
    line-height: 1.7;
}

.footer-nine-pro-about a {
    color: var(--footer-secondary);
    font-weight: 700;
}

.footer-nine-pro-linkbox ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nine-pro-linkbox li {
    margin-bottom: 10px;
}

.footer-nine-pro-linkbox a {
    color: rgba(255,255,255,0.73);
    display: inline-flex;
    gap: 8px;
    transition: 0.25s ease;
}

.footer-nine-pro-linkbox a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-nine-pro-contactbox p,
.footer-nine-pro-contactbox a {
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,0.74);
    margin-bottom: 12px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.footer-nine-pro-contactbox i {
    color: var(--footer-secondary);
    margin-top: 5px;
}

.footer-nine-pro-stats {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--footer-primary);
}

.footer-nine-pro-stats span {
    color: rgba(255,255,255,0.82);
}

.footer-nine-pro-stats strong {
    color: #ffffff;
}

.footer-nine-pro-bottom {
    padding-top: 18px;
    text-align: center;
    color: rgba(255,255,255,0.66);
}

/* ================= LAYOUT 10 ================= */

.footer-layout-ten-pro {
    background:
        radial-gradient(circle at 8% 12%, color-mix(in srgb, var(--footer-secondary) 18%, transparent), transparent 28%),
        linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
    color: #1f2d3d;
    padding: 72px 0 24px;
}

.footer-ten-pro-shell {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    align-items: stretch;
}

.footer-ten-pro-left {
    position: relative;
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--footer-primary), #10243a);
    color: #ffffff;
    overflow: hidden;
}

.footer-ten-pro-left::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    top: -90px;
    background: var(--footer-secondary);
    opacity: 0.28;
    border-radius: 50%;
}

.footer-ten-pro-left > * {
    position: relative;
    z-index: 1;
}

.footer-ten-pro-left > span {
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.footer-ten-pro-left h3 {
    color: #ffffff;
    margin: 10px 0 14px;
    font-size: 33px;
    line-height: 1.25;
}

.footer-ten-pro-left p {
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
}

.footer-ten-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.footer-ten-pro-actions a {
    padding: 11px 17px;
    border-radius: 999px;
    color: var(--footer-primary);
    background: #ffffff;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.footer-ten-pro-right {
    display: grid;
    gap: 15px;
}

.footer-ten-pro-mini-card {
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(31,45,61,0.08);
    box-shadow: 0 16px 38px rgba(31,45,61,0.08);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-ten-pro-mini-card > i {
    width: 43px;
    height: 43px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--footer-primary) 12%, #ffffff);
    color: var(--footer-primary);
    flex: 0 0 auto;
}

.footer-ten-pro-mini-card span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 5px;
}

.footer-ten-pro-mini-card p,
.footer-ten-pro-mini-card a {
    color: #1f2d3d;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    overflow-wrap: anywhere;
}

.footer-ten-pro-links {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 18px;
    margin-top: 20px;
}

.footer-ten-pro-links > div {
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(31,45,61,0.08);
    box-shadow: 0 16px 38px rgba(31,45,61,0.06);
}

.footer-ten-pro-links h4,
.footer-ten-pro-links .footer-pro-stats h4 {
    color: #1f2d3d;
    margin-bottom: 16px;
}

.footer-ten-pro-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-ten-pro-links li {
    margin-bottom: 10px;
}

.footer-ten-pro-links a {
    display: inline-flex;
    gap: 8px;
    color: #667085;
    transition: 0.25s ease;
}

.footer-ten-pro-links a:hover {
    color: var(--footer-primary);
    transform: translateX(5px);
}

.footer-ten-pro-links .footer-pro-stats {
    background: #f5f7fa;
    border: 0;
    padding: 0;
    backdrop-filter: none;
}

.footer-ten-pro-links .footer-pro-stat-item {
    color: #667085;
    border-color: rgba(31,45,61,0.08);
}

.footer-ten-pro-links .footer-pro-stat-item strong,
.footer-ten-pro-links .footer-pro-stat-item i {
    color: var(--footer-primary);
}

.footer-ten-pro-bottom {
    margin-top: 22px;
    text-align: center;
    color: #667085;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
    .footer-four-pro-contact-grid,
    .footer-five-pro-stats-row,
    .footer-seven-pro-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-five-pro-shell,
    .footer-eight-pro-grid,
    .footer-ten-pro-shell {
        grid-template-columns: 1fr;
    }

    .footer-five-pro-directory {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-six-pro-body {
        grid-template-columns: 1fr 1fr;
    }

    .footer-six-pro-contact {
        grid-column: 1 / -1;
    }

    .footer-nine-pro-mega {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .footer-five-pro-directory,
    .footer-eight-pro-board-grid,
    .footer-ten-pro-links {
        grid-template-columns: 1fr;
    }

    .footer-six-pro-body {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-nine-pro-title-row,
    .footer-seven-pro-cta-inner,
    .footer-four-pro-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-eight-pro-board-head {
        flex-direction: column;
    }

    .footer-nine-pro-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .footer-layout-four-pro,
    .footer-layout-five-pro,
    .footer-layout-seven-pro,
    .footer-layout-eight-pro,
    .footer-layout-nine-pro,
    .footer-layout-ten-pro {
        padding-top: 44px;
    }

    .footer-layout-six-pro {
        padding-bottom: 18px;
    }

    .footer-four-pro-contact-grid,
    .footer-five-pro-stats-row,
    .footer-seven-pro-stats,
    .footer-nine-pro-mega {
        grid-template-columns: 1fr;
    }

    .footer-four-pro-contact,
    .footer-four-pro-main {
        padding-left: 0;
        padding-right: 0;
    }

    .footer-four-pro-brand-card,
    .footer-four-pro-widget,
    .footer-pro-stats,
    .footer-five-pro-intro,
    .footer-five-pro-card,
    .footer-seven-pro-about-card,
    .footer-seven-pro-widget,
    .footer-seven-pro-contact-card,
    .footer-eight-pro-brand,
    .footer-eight-pro-board,
    .footer-eight-pro-contact,
    .footer-nine-pro-about,
    .footer-nine-pro-linkbox,
    .footer-nine-pro-contactbox,
    .footer-ten-pro-left,
    .footer-ten-pro-mini-card,
    .footer-ten-pro-links > div {
        border-radius: 20px;
        padding: 22px;
    }

    .footer-four-pro-contact-item {
        border-radius: 18px;
        padding: 15px;
    }

    .footer-four-pro-logo-row,
    .footer-six-pro-header {
        align-items: flex-start;
    }

    .footer-four-pro-logo-row h3,
    .footer-five-pro-intro h3,
    .footer-six-pro-header h3,
    .footer-seven-pro-cta-inner h3,
    .footer-eight-pro-brand h3,
    .footer-nine-pro-title-row h3,
    .footer-ten-pro-left h3 {
        font-size: 20px;
    }

    .footer-six-pro-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-six-pro-visitor-bar {
        flex-direction: column;
    }

    .footer-seven-pro-cta-inner > div:last-child,
    .footer-ten-pro-actions {
        width: 100%;
    }

    .footer-seven-pro-cta-inner a,
    .footer-ten-pro-actions a {
        width: 100%;
        justify-content: center;
    }

    .footer-pro-social a {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .footer-four-pro-contact-item,
    .footer-six-pro-header,
    .footer-ten-pro-mini-card {
        flex-direction: column;
    }

    .footer-five-pro-stats-row div,
    .footer-seven-pro-stats div {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-four-pro-logo-row img,
    .footer-six-pro-header img {
        max-width: 64px;
        max-height: 64px;
    }
}

/* ================= FOOTER LAYOUT 6 - PREMIUM ORBIT ACADEMIC FOOTER ================= */
.footer-layout-six-orbit {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--footer-secondary) 38%, transparent), transparent 32%),
        radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--footer-primary) 36%, transparent), transparent 34%),
        linear-gradient(135deg, #061826 0%, var(--footer-primary) 48%, #071f2d 100%);
    color: #ffffff;
    padding: 82px 0 24px;
    isolation: isolate;
}

.footer-layout-six-orbit a {
    color: inherit;
    text-decoration: none;
}

.footer-six-orbit-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(6, 24, 38, 0.92), rgba(6, 24, 38, 0.82)), var(--footer-bg-image);
    background-size: cover;
    background-position: center;
    z-index: -4;
}

.footer-six-orbit-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: 0.55;
    z-index: -3;
    pointer-events: none;
}

.footer-six-orbit-glow-one {
    width: 280px;
    height: 280px;
    left: -90px;
    bottom: 10%;
    background: color-mix(in srgb, var(--footer-secondary) 46%, transparent);
}

.footer-six-orbit-glow-two {
    width: 360px;
    height: 360px;
    right: -120px;
    top: -110px;
    background: color-mix(in srgb, #ffffff 18%, var(--footer-secondary));
    opacity: 0.18;
}

.footer-six-orbit-ring {
    position: absolute;
    width: 540px;
    height: 540px;
    right: -210px;
    bottom: -250px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    z-index: -2;
}

.footer-six-orbit-ring::before,
.footer-six-orbit-ring::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-six-orbit-ring::before {
    inset: 70px;
}

.footer-six-orbit-ring::after {
    inset: 145px;
}

.footer-six-orbit-container {
    position: relative;
    z-index: 2;
}

.footer-six-orbit-hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 32px;
    align-items: stretch;
    margin-bottom: 28px;
}

.footer-six-orbit-brand-area,
.footer-six-orbit-intro,
.footer-six-orbit-contact-card,
.footer-six-orbit-links-card,
.footer-six-orbit-visitor-bar {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.footer-six-orbit-brand-area {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 30px;
    overflow: hidden;
}

.footer-six-orbit-brand-area::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -55px;
    top: -50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.footer-six-orbit-logo {
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    border-radius: 26px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.footer-six-orbit-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-six-orbit-brand-text span,
.footer-six-orbit-kicker {
    display: inline-block;
    color: #c7f9f1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-six-orbit-brand-text h3 {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.16;
    font-weight: 800;
    margin: 0;
}

.footer-six-orbit-intro {
    padding: 28px;
    border-radius: 30px;
}

.footer-six-orbit-intro p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 22px;
}

.footer-six-orbit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-six-orbit-primary-btn,
.footer-six-orbit-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-six-orbit-primary-btn {
    background: #ffffff;
    color: var(--footer-primary) !important;
}

.footer-six-orbit-secondary-btn {
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-six-orbit-primary-btn:hover,
.footer-six-orbit-secondary-btn:hover {
    transform: translateY(-3px);
}

.footer-six-orbit-main-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
    gap: 28px;
    align-items: stretch;
}

.footer-six-orbit-contact-card,
.footer-six-orbit-links-card {
    border-radius: 30px;
    padding: 28px;
}

.footer-six-orbit-contact-card h4,
.footer-six-orbit-section-title h4 {
    color: #ffffff;
    margin: 0;
    font-size: 21px;
    font-weight: 800;
}

.footer-six-orbit-contact-list {
    display: grid;
    gap: 13px;
    margin-top: 22px;
}

.footer-six-orbit-contact-list a,
.footer-six-orbit-contact-list p {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.55;
}

.footer-six-orbit-contact-list i {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #c7f9f1;
}

.footer-six-orbit-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.footer-six-orbit-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-six-orbit-social a:hover {
    transform: translateY(-4px);
    background: #ffffff;
    color: var(--footer-primary);
}

.footer-six-orbit-links-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.footer-six-orbit-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-six-orbit-section-title span {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.13);
    color: #c7f9f1;
    font-size: 13px;
    font-weight: 800;
}

.footer-six-orbit-link-list {
    display: grid;
    gap: 10px;
}

.footer-six-orbit-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.35;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-six-orbit-link-list a i {
    color: #c7f9f1;
    font-size: 12px;
    opacity: 0.9;
}

.footer-six-orbit-link-list a:hover {
    transform: translateX(5px);
    background: #ffffff;
    color: var(--footer-primary);
}

.footer-six-orbit-link-list a:hover i {
    color: var(--footer-secondary);
}

.footer-six-orbit-empty {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.footer-six-orbit-visitor-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    padding: 16px;
    border-radius: 26px;
}

.footer-six-orbit-visitor-bar div {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 6px 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-six-orbit-visitor-bar i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #c7f9f1;
}

.footer-six-orbit-visitor-bar span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.2;
}

.footer-six-orbit-visitor-bar strong {
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

.footer-six-orbit-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.footer-six-orbit-bottom p {
    margin: 0;
}

.footer-six-orbit-bottom a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-six-orbit-bottom a:hover {
    color: #ffffff;
}

.footer-six-orbit-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer-six-orbit-tools .image {
    max-width: 44px;
    height: auto;
}

@supports not (color: color-mix(in srgb, #000 50%, transparent)) {
    .footer-layout-six-orbit {
        background: linear-gradient(135deg, #061826 0%, var(--footer-primary) 48%, #071f2d 100%);
    }

    .footer-six-orbit-glow-one,
    .footer-six-orbit-glow-two {
        background: rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 1199px) {
    .footer-six-orbit-hero,
    .footer-six-orbit-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .footer-layout-six-orbit {
        padding-top: 58px;
    }

    .footer-six-orbit-links-card {
        grid-template-columns: 1fr;
    }

    .footer-six-orbit-visitor-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-six-orbit-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .footer-layout-six-orbit {
        padding: 44px 0 20px;
    }

    .footer-six-orbit-hero,
    .footer-six-orbit-main-grid {
        gap: 18px;
    }

    .footer-six-orbit-brand-area,
    .footer-six-orbit-intro,
    .footer-six-orbit-contact-card,
    .footer-six-orbit-links-card,
    .footer-six-orbit-visitor-bar {
        border-radius: 22px;
        padding: 20px;
    }

    .footer-six-orbit-brand-area {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-six-orbit-logo {
        width: 78px;
        height: 78px;
        flex-basis: 78px;
        border-radius: 22px;
    }

    .footer-six-orbit-brand-text h3 {
        font-size: 25px;
    }

    .footer-six-orbit-intro p {
        font-size: 15px;
    }

    .footer-six-orbit-actions {
        flex-direction: column;
    }

    .footer-six-orbit-primary-btn,
    .footer-six-orbit-secondary-btn {
        width: 100%;
    }

    .footer-six-orbit-contact-list a,
    .footer-six-orbit-contact-list p {
        grid-template-columns: 38px 1fr;
    }

    .footer-six-orbit-contact-list i {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .footer-six-orbit-link-list a {
        padding: 11px 12px;
    }

    .footer-six-orbit-visitor-bar {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .footer-six-orbit-bottom-links {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ================= FOOTER LAYOUT 8 - PREMIUM CAMPUS CONSOLE FOOTER ================= */

.footer-eight-neo {
    position: relative;
    overflow: hidden;
    padding: 86px 0 26px;
    background:
        radial-gradient(circle at 8% 8%, rgba(255,255,255,0.16), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(255,255,255,0.12), transparent 30%),
        linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    color: #ffffff;
    isolation: isolate;
}

.footer-eight-neo a {
    text-decoration: none;
}

.footer-eight-neo-bg {
    position: absolute;
    inset: 0;
    background-image: var(--footer-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    z-index: -4;
}

.footer-eight-neo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0,0,0,0.42), rgba(0,0,0,0.18)),
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,0.035) 0,
            rgba(255,255,255,0.035) 1px,
            transparent 1px,
            transparent 16px
        );
    z-index: -3;
}

.footer-eight-neo-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.18;
    z-index: -2;
}

.footer-eight-neo-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.28;
    z-index: -1;
}

.footer-eight-neo-glow-one {
    left: -130px;
    bottom: -150px;
    background: rgba(255,255,255,0.28);
}

.footer-eight-neo-glow-two {
    right: -140px;
    top: -150px;
    background: rgba(255,255,255,0.22);
}

.footer-eight-neo-shell {
    display: grid;
    grid-template-columns: 0.92fr 1.58fr;
    gap: 26px;
    align-items: stretch;
}

/* Floating Tools */
.footer-eight-neo-tools {
    position: fixed;
    right: 18px;
    bottom: 95px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-eight-tool-item {
    width: 48px;
    min-height: 48px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.20);
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-eight-tool-item img.image {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-eight-tool-item a {
    color: #111827;
    font-size: 20px;
}

.footer-eight-tool-item.translate-widget-wrapper {
    width: auto;
    min-width: 48px;
    max-width: 230px;
    padding: 8px;
}

/* Brand Panel */
.footer-eight-neo-brand-panel {
    position: relative;
    padding: 34px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.20), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow: 0 30px 80px rgba(0,0,0,0.20);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.footer-eight-neo-brand-panel::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 34px solid rgba(255,255,255,0.08);
}

.footer-eight-neo-brand-top {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.footer-eight-neo-logo {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: #ffffff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-eight-neo-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-eight-neo-label {
    display: inline-flex;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-eight-neo-brand-panel h3 {
    color: #ffffff;
    font-size: 31px;
    line-height: 1.18;
    margin: 0;
    font-weight: 800;
}

.footer-eight-neo-tagline {
    display: inline-flex;
    margin: 28px 0 16px;
    padding: 10px 15px;
    border-radius: 40px;
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.footer-eight-neo-about {
    color: rgba(255,255,255,0.80);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.footer-eight-neo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.footer-eight-neo-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.25s ease;
}

.footer-eight-neo-btn-primary {
    background: #ffffff;
    color: var(--footer-primary);
}

.footer-eight-neo-btn-light {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.22);
}

.footer-eight-neo-btn:hover {
    transform: translateY(-2px);
}

.footer-eight-neo-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

.footer-eight-neo-social a {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.16);
    transition: all 0.25s ease;
}

.footer-eight-neo-social a:hover {
    background: #ffffff;
    color: var(--footer-primary);
    transform: translateY(-3px);
}

/* Console */
.footer-eight-neo-console {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-eight-neo-contact-strip {
    display: grid;
    grid-template-columns: 0.85fr 1fr 1.25fr;
    gap: 14px;
}

.footer-eight-neo-contact-card {
    min-height: 96px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    color: #111827;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.16);
    transition: all 0.25s ease;
}

.footer-eight-neo-contact-card:hover {
    color: #111827;
    transform: translateY(-3px);
}

.footer-eight-neo-contact-card i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-eight-neo-contact-card small {
    display: block;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 5px;
}

.footer-eight-neo-contact-card span {
    font-size: 14px;
    font-weight: 800;
    word-break: break-word;
}

/* Directory */
.footer-eight-neo-directory {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.footer-eight-neo-link-box {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255,255,255,0.95);
    color: #111827;
    box-shadow: 0 24px 70px rgba(0,0,0,0.16);
    position: relative;
    overflow: hidden;
}

.footer-eight-neo-link-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--footer-primary), var(--footer-secondary));
}

.footer-eight-neo-link-box-accent {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90));
}

.footer-eight-neo-box-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.footer-eight-neo-box-head span {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
}

.footer-eight-neo-box-head h4 {
    font-size: 19px;
    color: #111827;
    margin: 0;
    font-weight: 900;
}

.footer-eight-neo-link-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.footer-eight-neo-link-box li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.footer-eight-neo-link-box li:last-child {
    margin-bottom: 0;
}

.footer-eight-neo-link-box a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 10px;
    border-radius: 14px;
    background: #f8fafc;
    transition: all 0.25s ease;
}

.footer-eight-neo-link-box a i {
    color: var(--footer-secondary);
    font-size: 12px;
}

.footer-eight-neo-link-box a:hover {
    color: var(--footer-primary);
    background: rgba(15, 61, 94, 0.08);
    transform: translateX(4px);
}

.footer-eight-neo-empty {
    display: block;
    color: #6b7280;
    padding: 10px;
    font-size: 14px;
}

/* Visitors */
.footer-eight-neo-visitors {
    padding: 24px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.20), rgba(255,255,255,0.10));
    border: 1px solid rgba(255,255,255,0.23);
    box-shadow: 0 26px 75px rgba(0,0,0,0.18);
    backdrop-filter: blur(16px);
}

.footer-eight-neo-visitors-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-eight-neo-visitors-title span {
    color: rgba(255,255,255,0.74);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-eight-neo-visitors-title h4 {
    color: #ffffff;
    margin: 0;
    font-size: 21px;
    font-weight: 900;
}

.footer-eight-neo-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.footer-eight-neo-stat {
    min-height: 116px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
    color: #111827;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-eight-neo-stat i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-eight-neo-stat span {
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    margin-top: 11px;
}

.footer-eight-neo-stat strong {
    color: #111827;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

/* Bottom */
.footer-eight-neo-bottom {
    margin-top: 24px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.82);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(12px);
}

.footer-eight-neo-bottom p {
    margin: 0;
}

.footer-eight-neo-bottom-left,
.footer-eight-neo-bottom-left * {
    color: rgba(255,255,255,0.82);
}

.footer-eight-neo-bottom-right {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.footer-eight-neo-bottom-right span {
    color: rgba(255,255,255,0.66);
}

.footer-eight-neo-bottom-right strong {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1199px) {
    .footer-eight-neo-shell {
        grid-template-columns: 1fr;
    }

    .footer-eight-neo-contact-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .footer-eight-neo {
        padding: 64px 0 24px;
    }

    .footer-eight-neo-contact-strip {
        grid-template-columns: 1fr;
    }

    .footer-eight-neo-directory {
        grid-template-columns: 1fr;
    }

    .footer-eight-neo-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-eight-neo-tools {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer-eight-neo {
        padding: 48px 0 18px;
    }

    .footer-eight-neo-brand-panel,
    .footer-eight-neo-link-box,
    .footer-eight-neo-visitors {
        border-radius: 22px;
        padding: 22px;
    }

    .footer-eight-neo-brand-top {
        align-items: flex-start;
    }

    .footer-eight-neo-logo {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .footer-eight-neo-brand-panel h3 {
        font-size: 24px;
    }

    .footer-eight-neo-tagline {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-eight-neo-about {
        font-size: 14px;
    }

    .footer-eight-neo-actions {
        flex-direction: column;
    }

    .footer-eight-neo-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-eight-neo-contact-card {
        min-height: auto;
        padding: 15px;
        border-radius: 18px;
    }

    .footer-eight-neo-stat-grid {
        grid-template-columns: 1fr;
    }

    .footer-eight-neo-stat {
        min-height: 96px;
    }

    .footer-eight-neo-bottom {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 18px;
        padding: 16px;
        font-size: 14px;
    }

    .footer-eight-neo-bottom-right {
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .footer-eight-neo-brand-top {
        flex-direction: column;
    }

    .footer-eight-neo-social a {
        width: 39px;
        height: 39px;
    }

    .footer-eight-neo-contact-card {
        align-items: flex-start;
    }

    .footer-eight-neo-contact-card i {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }
}
/* ================= FOOTER LAYOUT 10 - PREMIUM INSTITUTIONAL GATEWAY FOOTER ================= */

.footer-ten-elite {
    position: relative;
    overflow: hidden;
    padding: 78px 0 24px;
    color: #ffffff;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--footer-primary) 88%, #000000 12%), color-mix(in srgb, var(--footer-secondary) 84%, #000000 16%));
    isolation: isolate;
}

.footer-ten-elite a {
    text-decoration: none;
}

.footer-ten-elite-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(110deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.45) 44%, rgba(0,0,0,0.36) 100%),
        var(--footer-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -4;
}

.footer-ten-elite-pattern {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 16% 18%, rgba(255,255,255,0.13), transparent 24%),
        radial-gradient(circle at 86% 72%, rgba(255,255,255,0.12), transparent 26%);
    background-size: 44px 44px, 44px 44px, auto, auto;
    opacity: 0.9;
}

.footer-ten-elite::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.footer-ten-elite-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255,255,255,0.96);
    color: #111827;
    box-shadow: 0 24px 70px rgba(0,0,0,0.16);
    border-top: 6px solid var(--footer-secondary);
    margin-bottom: 24px;
}

.footer-ten-elite-brand-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-ten-elite-logo {
    width: 82px;
    height: 82px;
    background: #ffffff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: inset 0 0 0 1px rgba(17,24,39,0.08), 0 15px 35px rgba(17,24,39,0.10);
    flex: 0 0 auto;
}

.footer-ten-elite-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-ten-elite-brand-text span,
.footer-ten-elite-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-secondary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-ten-elite-section-label::before {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 20px;
    background: var(--footer-secondary);
}

.footer-ten-elite-brand-text h3 {
    color: #111827;
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 8px;
    font-weight: 900;
}

.footer-ten-elite-brand-text p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
    font-weight: 700;
}

.footer-ten-elite-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-ten-elite-pill {
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.25s ease;
}

.footer-ten-elite-pill-light {
    background: #f3f4f6;
    color: #111827;
}

.footer-ten-elite-pill:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-ten-elite-pill-light:hover {
    color: var(--footer-primary);
}

.footer-ten-elite-main-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.95fr;
    gap: 18px;
    align-items: stretch;
}

.footer-ten-elite-profile,
.footer-ten-elite-contact-panel,
.footer-ten-elite-visitors,
.footer-ten-elite-link-column {
    background: rgba(255,255,255,0.96);
    color: #111827;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.14);
    position: relative;
    overflow: hidden;
}

.footer-ten-elite-profile::after,
.footer-ten-elite-contact-panel::after,
.footer-ten-elite-visitors::after,
.footer-ten-elite-link-column::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(255,255,255,0), color-mix(in srgb, var(--footer-secondary) 16%, transparent));
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.footer-ten-elite-profile p {
    color: #4b5563;
    line-height: 1.75;
    margin: 0 0 22px;
}

.footer-ten-elite-social {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-ten-elite-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f3f4f6;
    color: var(--footer-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-ten-elite-social a:hover {
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-ten-elite-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-ten-elite-cta-row a {
    padding: 11px 16px;
    border-radius: 14px;
    color: #ffffff;
    background: var(--footer-primary);
    font-size: 14px;
    font-weight: 900;
}

.footer-ten-elite-cta-row a:last-child {
    background: var(--footer-secondary);
}

.footer-ten-elite-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: #f8fafc;
    margin-bottom: 14px;
}

.footer-ten-elite-contact-item:last-child {
    margin-bottom: 0;
}

.footer-ten-elite-contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-ten-elite-contact-item span {
    display: block;
    color: #6b7280;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 5px;
}

.footer-ten-elite-contact-item p,
.footer-ten-elite-contact-item a {
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    margin: 0;
    word-break: break-word;
}

.footer-ten-elite-stat-list {
    display: grid;
    gap: 12px;
}

.footer-ten-elite-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border-radius: 18px;
    background: #f8fafc;
}

.footer-ten-elite-stat-item span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
}

.footer-ten-elite-stat-item span i {
    color: var(--footer-secondary);
}

.footer-ten-elite-stat-item strong {
    color: var(--footer-primary);
    font-size: 22px;
    font-weight: 900;
}

.footer-ten-elite-link-zone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.footer-ten-elite-link-column {
    padding: 26px;
}

.footer-ten-elite-link-column-alt {
    border-top: 6px solid var(--footer-secondary);
}

.footer-ten-elite-link-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.footer-ten-elite-link-head span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.footer-ten-elite-link-head h4 {
    color: #111827;
    font-size: 20px;
    margin: 0;
    font-weight: 900;
}

.footer-ten-elite-link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 18px;
}

.footer-ten-elite-link-column li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.footer-ten-elite-link-column a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #374151;
    background: #f8fafc;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.22s ease;
}

.footer-ten-elite-link-column a i {
    color: var(--footer-secondary);
}

.footer-ten-elite-link-column a:hover {
    color: var(--footer-primary);
    background: color-mix(in srgb, var(--footer-secondary) 13%, #ffffff);
    transform: translateX(4px);
}

.footer-ten-elite-empty {
    display: block;
    color: #6b7280;
    font-size: 14px;
    padding: 10px 0;
}

.footer-ten-elite-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    color: #4b5563;
    font-weight: 700;
    box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}

.footer-ten-elite-bottom p {
    margin: 0;
}

.footer-ten-elite-bottom a,
.footer-ten-elite-bottom * {
    color: inherit;
}

.footer-ten-elite-credit {
    white-space: nowrap;
}

.footer-ten-elite-credit strong {
    color: var(--footer-primary);
}

@media (max-width: 1199px) {
    .footer-ten-elite-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-ten-elite-visitors {
        grid-column: 1 / -1;
    }

    .footer-ten-elite-stat-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-ten-elite-stat-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .footer-ten-elite {
        padding: 58px 0 20px;
    }

    .footer-ten-elite-header-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-ten-elite-main-grid,
    .footer-ten-elite-link-zone {
        grid-template-columns: 1fr;
    }

    .footer-ten-elite-stat-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-ten-elite {
        padding: 44px 0 16px;
    }

    .footer-ten-elite-header-card,
    .footer-ten-elite-profile,
    .footer-ten-elite-contact-panel,
    .footer-ten-elite-visitors,
    .footer-ten-elite-link-column,
    .footer-ten-elite-bottom {
        border-radius: 22px;
        padding: 22px;
    }

    .footer-ten-elite-brand-wrap {
        align-items: flex-start;
    }

    .footer-ten-elite-logo {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .footer-ten-elite-brand-text h3 {
        font-size: 24px;
    }

    .footer-ten-elite-header-actions,
    .footer-ten-elite-cta-row {
        width: 100%;
        flex-direction: column;
    }

    .footer-ten-elite-pill,
    .footer-ten-elite-cta-row a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-ten-elite-link-column ul {
        columns: 1;
    }

    .footer-ten-elite-stat-list {
        grid-template-columns: 1fr;
    }

    .footer-ten-elite-bottom {
        flex-direction: column;
        align-items: flex-start;
        font-size: 14px;
    }

    .footer-ten-elite-credit {
        white-space: normal;
    }
}

@media (max-width: 430px) {
    .footer-ten-elite-brand-wrap {
        flex-direction: column;
    }

    .footer-ten-elite-contact-item {
        flex-direction: column;
    }
}


