/* ============================================================
   GLOBAL FOOTER — footer.css
   ============================================================ */

.footer-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #bce9da;
    width: 100%;
    padding: 20px 0 0 0;
}

.footer-wrapper .main-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f6fafa;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer-wrapper .header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 50px 30px 50px;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-wrapper .brand-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 250px;
}

.footer-wrapper .logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-wrapper .brand-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-wrapper .logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #1a3329;
    letter-spacing: -0.5px;
}

.footer-wrapper .tagline {
    font-size: 14px;
    color: #393f3c;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
}

.footer-wrapper .tagline img {
    height: 16px;
}

.footer-wrapper .links-container {
    display: flex;
    gap: 30px;
    flex: 3 1 600px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-wrapper .link-col {
    display: flex;
    flex-direction: column;
    min-width: 140px;
    flex: 1;
}

.footer-wrapper .link-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a3329;
    margin-bottom: 18px;
    letter-spacing: 0.1px;
}

.footer-wrapper .link-col a {
    text-decoration: none;
    color: #5a6b62;
    font-size: 13.5px;
    margin-bottom: 10px;
    transition: color 0.2s;
    display: inline-block;
}

.footer-wrapper .link-col a:hover {
    color: #11261c;
}

.footer-wrapper .footer-contact p {
    font-size: 13px;
    color: #5a6b62;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-wrapper .footer-contact i {
    color: #1a3329;
    margin-right: 6px;
}

.footer-wrapper .footer-note {
    font-size: 11px;
    color: #7b8f84;
}

.footer-wrapper .scenery-section {
    position: relative;
    width: 100%;
    height: 400px;
}

.footer-wrapper .bg-watermark {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14vw;
    font-weight: 800;
    color: rgba(62, 60, 60, 0.15);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    letter-spacing: -2px;
}

.footer-wrapper .landscape-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
    display: block;
}

.footer-wrapper .footer-overlay-bar {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgb(242, 244, 243);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer-wrapper .copyright-text {
    font-size: 12px;
    color: #5a6b62;
}

.footer-wrapper .social-icons {
    display: flex;
    gap: 18px;
}

.footer-wrapper .social-icons a {
    color: #4a5d54;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-wrapper .social-icons a:hover {
    color: #1a3329;
}

/* SCROLL TO TOP */
#scrollTopBtn {
    position: fixed;
    right: 26px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ea4c89;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 18px;
    cursor: pointer;
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.4) translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(234, 76, 137, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

#scrollTopBtn:hover {
    background: #d6367a;
    box-shadow: 0 6px 28px rgba(234, 76, 137, 0.5);
    transform: scale(1.12) translateY(-2px);
}

#scrollTopBtn:active {
    transform: scale(0.92);
    box-shadow: 0 2px 10px rgba(234, 76, 137, 0.3);
}

#scrollTopBtn i {
    pointer-events: none;
    position: relative;
    top: 1px;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-wrapper .main-container {
        width: 95%;
        margin: 0 auto;
        border-radius: 16px;
    }
    .footer-wrapper .header-section {
        padding: 40px 20px 20px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }
    .footer-wrapper .brand-area {
        align-items: center;
    }
    .footer-wrapper .logo-box {
        justify-content: center;
    }
    .footer-wrapper .tagline {
        justify-content: center;
        margin-left: 0;
    }
    .footer-wrapper .links-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }
    .footer-wrapper .link-col {
        width: 100%;
        align-items: center;
    }
    .footer-wrapper .footer-contact {
        text-align: center;
    }
    .footer-wrapper .footer-contact p i {
        margin-right: 0;
        display: block;
        margin-bottom: 4px;
    }
    .footer-wrapper .scenery-section {
        height: 300px;
    }
    .footer-wrapper .footer-overlay-bar {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    #scrollTopBtn {
        right: 14px;
        bottom: 90px;
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}

/* Jab footer.html direct browser mein open ho toh navbar ke neeche space */
body > .footer-wrapper {
    margin-top: 80px;
}