/* ===== FOOTER BASE STYLES ===== */
footer {
    background: #000;
    color: #888;
    padding: 60px 60px 30px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.6fr 1fr 0.9fr 1.6fr 1.1fr;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.footer-column h3 {
    letter-spacing: 0.5px;
    font-family: 'Cormorant Garamond';
    font-size: 13px;
    color: #d8d7d7;
    text-decoration: none;
    display: block;
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-column a {
    letter-spacing: 0.5px;
    font-family: 'Cormorant Garamond';
    font-size: 13px;
    color: #d8d7d7;
    margin-bottom: 12px;
    text-decoration: none;
    display: block;
    line-height: 1.6;
}

.footer-column p {
    font-size: 11px;
    color: #ada7a7;
    margin-bottom: 12px;
    text-decoration: none;
    display: block;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #f56e0b;
}

.social-row {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.social-circle {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-circle i {
    margin: 8px 9px;
    color: #000;
    font-size: 18px;
    display: flex;
}

.social-circle:hover {
    transform: translateY(-3px);
    background: #f56e0b;
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.social-circle:hover i {
    color: #fff;
}

.footer-logo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-box img {
    margin-top: -20px;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 0px;
}

.footer-bottom {
    font-family: 'Cormorant Garamond';
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #ada7a7;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-call-icon {
    color: transparent;
    width: 40px;
    height: 40px;
    background: #f56e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-call-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(245, 110, 11, 0.4);
}

.footer-call-icon i {
    color: #fff;
    font-size: 18px;
}

/* ===== RESPONSIVE: 1200px+ (Desktop) ===== */
@media (min-width: 1200px) {
    footer {
        padding: 60px 60px 30px;
    }

    .footer-content {
        grid-template-columns:  0.6fr 1fr 0.9fr 1.6fr 1.1fr;
        gap: 20px;
        max-width: 1400px;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .footer-column a {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-column p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .social-row {
        justify-content: flex-start;
    }

    .social-circle {
        width: 35px;
        height: 35px;
    }

    .social-circle i {
        font-size: 18px;
    }

    .footer-logo-box {
        align-items: flex-start;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 25px;
        font-size: 16px;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;
        justify-content: flex-start;
    }

    .footer-call-icon {
        width: 40px;
        height: 40px;
    }

    .footer-call-icon i {
        font-size: 18px;
    }
}

/* ===== RESPONSIVE: 1024px - 1199px ===== */
@media (max-width: 1199px) {
    footer {
        padding: 50px 40px 25px;
    }

    .footer-content {
        grid-template-columns: 0.6fr 1.3fr 0.8fr 1.6fr 1.2fr;
        gap: 15px;
        max-width: 1200px;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .footer-column a {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-column p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .social-circle {
        width: 32px;
        height: 32px;
    }

    .social-circle i {
        font-size: 16px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 25px;
        font-size: 14px;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;
        justify-content: flex-start;
    }

    .footer-call-icon {
        width: 36px;
        height: 36px;
    }

    .footer-call-icon i {
        font-size: 16px;
    }
}

/* ===== RESPONSIVE: 768px - 1023px (Tablet) ===== */
@media (max-width: 1023px) {
    footer {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: center;
        gap: 30px;
        max-width: 100%;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-column a {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-column p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .social-row {
        justify-content: center;
        margin-bottom: 20px;
    }

    .social-circle {
        width: 32px;
        height: 32px;
    }

    .social-circle i {
        font-size: 16px;
    }

    .footer-logo-box {
        align-items: center;
        grid-column: 2/ -1;
    }

    .footer-logo-box img {
        margin-top: 0;
        margin-bottom: 20px;
        max-width: 200px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        font-size: 13px;
        border-top: 1px solid #1a1a1a;
        padding-top: 20px;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        justify-content: flex-start;
    }

    .footer-call-icon {
        width: 36px;
        height: 36px;
    }

    .footer-call-icon i {
        font-size: 16px;
    }
}

/* ===== RESPONSIVE: 480px - 767px (Small Tablet) ===== */
@media (min-width: 480px) and (max-width: 767px) {
    footer {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 25px;
        max-width: 100%;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-column a {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-column p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .social-row {
        justify-content: center;
        gap: 6px;
        margin-bottom: 15px;
    }

    .social-circle {
        width: 30px;
        height: 30px;
    }

    .social-circle i {
        margin: 7px 8px;
        font-size: 14px;
    }

    .footer-logo-box {
        align-items: center;
        grid-column: 1 / -1;
    }

    .footer-logo-box img {
        margin-top: 0;
        margin-bottom: 15px;
        max-width: 150px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        border-top: 1px solid #1a1a1a;
        padding-top: 15px;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        justify-content: flex-start;
    }

    .footer-call-icon {
        width: 34px;
        height: 34px;
    }

    .footer-call-icon i {
        font-size: 14px;
    }
}

/* ===== RESPONSIVE: upto 479px (Mobile) ===== */
@media (max-width: 479px) {
    footer {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 35px;
        padding-bottom: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .footer-column a {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-column p {
        font-size: 12px;
        margin-bottom: 6px;
        line-height: 1.6;
    }

    .social-row {
        justify-content: center;
        gap: 5px;
        margin-bottom: 10px;
    }

    .social-circle {
        width: 28px;
        height: 28px;
    }

    .social-circle i {
        margin: 8px 7px;
        font-size: 13px;
    }

    .footer-logo-box {
        align-items: center;
        grid-column: 1 / -1;
    }

    .footer-logo-box img {
        margin-top: 0;
        margin-bottom: 12px;
        max-width: 70%;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        border-top: 1px solid #1a1a1a;
        padding-top: 12px;
        text-align: center;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
    }

    .footer-call-icon {
        width: 32px;
        height: 32px;
    }

    .footer-call-icon i {
        font-size: 12px;
    }
}

a.privacy-policy {
    text-decoration: none;
    color: #ada7a7 !important;
}