body {
    font-family: Domine;
}

header {
    background: var(--bg-primary);
}

header img {
    width: 207px;
    height: 44px;
}

.contact-card-container {
    background: var(--bg-secondary);
    border-radius: 15px;
    height: 100%;
    padding: 2.5rem;
    box-shadow: 0 4px 10px #0000001a;
    border-bottom: 6px solid var(--primary-txt-clr) !important;
}
.contact-card-section-title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--primary-txt-clr);
    margin-bottom: 24px;
}
.contact-card-title {
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: var(--primary-txt-clr);
}

.footer {
    background-color: var(--bg-secondary);
}

.link,
.footer-text,
.footer-link,
.copyright {
    color: var(--secondary-dark-clr);
}

.link:nth-last-child(1):hover,
.link:nth-last-child(2):hover,
.footer-right-column>a:hover {
    color: var(--primary-txt-clr) !important;
}

/* Footer Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav .footer-link {
    color: var(--dark-text) !important;
    width: fit-content;
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}


/* Footer Section Headers */
.footer-section h6 {
    color: var(--primary-txt-clr) !important;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Contact Links */
.footer-section .footer-link {
    color: var(--dark-text) !important;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.footer-section .footer-link:hover {
    opacity: var(--btn-hover-opacity);
    color: var(--primary-txt-clr) !important;
}

/* Footer Bottom Links */
.footer-right-column a:hover {
    filter: var(--btn-hover-brightness);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: var(--btn-hover-opacity);
}

/* Social Icons */
.social img:hover {
    opacity: var(--btn-hover-opacity);
    filter: var(--btn-hover-brightness);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.our-associates-card {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.our-associates-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

/* Logo Responsive */
@media (max-width: 1080px) {
    .logo {
        width: 200px !important;
        height: 36.49px !important;
    }
}

@media (max-width: 480px) {

    header img {
        width: 150px;
    }
    .contact-card-section-title {
        font-size: 36px;
    }
    .contact-card-title {
        font-size: 24px;
    }
    footer {
        text-align: center !important;
    }

    footer .container>.row {
        text-align: center !important;
    }

    footer .col-lg-5,
    footer .col-lg-7,
    footer .footer-section {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        align-items: center;
        width: 100%;
    }

    .footer-nav .footer-link {
        width: 100%;
        text-align: center;
    }

    .social,
    .link {
        justify-content: center !important;
    }

    .logo {
        width: 173px !important;
        height: 36.49px !important;
    }

    .footer-link {
        display: flex !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
    }
}

/* Skeleton Base */
.skeleton {
    background: #e5e5e5;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.skeleton::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    100% {
        left: 120%;
    }
}

/* Skeleton Sizes */
.skeleton-logo {
    width: 160px;
    height: 55px;
}

.skeleton-text {
    height: 14px;
    width: 90%;
    margin-bottom: 8px;
}

.skeleton-text.short {
    width: 50%;
}

.skeleton-title {
    height: 18px;
    width: 35%;
}

.skeleton-link {
    height: 14px;
    width: 80%;
    margin-bottom: 10px;
}

.skeleton-icon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
}