/* ============================================
   Footer Base Styles
   ============================================ */
.main-footer {
    background-color: #FFFFFF;
    color: #000000;
    padding: 4rem 0 0 0;
    width: 100%;
    position: relative;
    z-index: 12;
}

.main-footer .container-fluid {
    margin: 0 auto;
    padding: 0 150px;
}

.footer-content {
    margin-bottom: 3rem;
}

/* ============================================
   Footer Logo Section
   ============================================ */
.footer-logo-section {
    margin-bottom: 2rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo-main {
    font-family: Bagoss Standard TRIAL, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E48C7;
    line-height: 1.2;
    letter-spacing: 0.05rem;
}

.footer-logo-sub {
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #1E48C7;
    line-height: 1.2;
    letter-spacing: 0.02rem;
}

.footer-content {
    color: #000000;
}

/* ============================================
   Footer Links Section
   ============================================ */
.footer-links-section {
    padding: 0 2rem;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-column-title {
    /* font-family: Inter, sans-serif; */
    font-family: Rethink Sans, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #4D4D4D;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-item {
    color: #808080;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease;
    display: inline-block;
    font-family: Rethink Sans, sans-serif;
}

.footer-link-item:hover {
    color: #1E48C7;
    text-decoration: none;
}

/* ============================================
   Footer Social Media Section
   ============================================ */
.footer-social-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px !important;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: #F3F4F6;
    color: #000000;
    border: 1px solid #E5E7EB;
}

.social-icon:hover {
    background-color: #1E48C7;
    color: #FFFFFF;
    border-color: #1E48C7;
    text-decoration: none;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 1.125rem;
}

/* Facebook */
.social-icon:first-child:hover {
    background-color: #1877F2;
}

/* Instagram */
.social-icon:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Twitter/X */
.social-icon:nth-child(3):hover {
    background-color: #000000;
}

/* LinkedIn */
.social-icon:nth-child(4):hover {
    background-color: #0077B5;
}

/* ============================================
   Footer Copyright Section - Separate Black Background
   ============================================ */
.footer-copyright {
    background-color: #000000;
    padding: 1.5rem 0;
    width: 100%;
    margin-top: 0;
    position: relative;
    z-index: 12;
}

.footer-copyright .container-fluid {
    margin: 0 auto;
    padding: 0 150px;
}

.footer-copyright .row {
    margin: 0;
}

.copyright-text {
    font-family: Rethink Sans, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

