/* =========================================
   TRUST & GCC STRIPS
========================================= */
.footer-trust-strip-wrapper {
    background-color: #0B2E59;
    border-top: 4px solid #60A5FA;
    position: relative;
    z-index: 10;
}

.footer-trust-bar {
    padding: 2.5rem 0 2rem 0;
}

.trust-bar-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-item i {
    color: #60A5FA;
    font-size: 1.25rem;
}

.footer-gcc-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.15);
}

.gcc-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gcc-strip-title {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gcc-strip-flags {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gcc-flag-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 500;
}

.gcc-flag-item img {
    width: 24px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* =========================================
   MAIN FOOTER BODY
========================================= */
.footer {
    background-color: #0B2E59;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    /* bottom: -15%; */
    right: 0%;
    opacity: 0.04;
    /* Very subtle 4% opacity */
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

.watermark-logo {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-top {
    display: grid;
    grid-template-columns: 3fr 1.5fr 1.5fr 2.5fr;
    gap: 2rem;
    padding: 4rem 0 5rem 0;
    position: relative;
    z-index: 10;
}

/* =========================================
   COMPANY COLUMN
========================================= */
.footer-logo-wrapper {
    background: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

.company-summary {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.company-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.company-credentials li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.company-credentials i {
    color: #60A5FA;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

/* =========================================
   SOCIAL ICONS
========================================= */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    transform: scale(1.05);
    /* Subtle scale */
    border-color: transparent;
}

/* Soft glow effect per brand */
.social-fb:hover {
    background-color: #1877F2 !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.social-in:hover {
    background-color: #0A66C2 !important;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.4);
}

.social-yt:hover {
    background-color: #FF0000 !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

/* =========================================
   TITLES & LINKS
========================================= */
.footer-title {
    position: relative;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #60A5FA;
    border-radius: 999px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* =========================================
   CONTACT SECTION
========================================= */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.contact-content a {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    transition: 0.3s ease;
    font-size: 0.95rem;
}

.contact-content a:hover {
    color: #ffffff;
}



/* =========================================
   BOTTOM FOOTER
========================================= */
.footer-bottom-wrapper {
    background-color: #071E3A;
    position: relative;
    z-index: 10;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    /* Improved spacing */
}

.link-separator {
    color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-credit {
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
    margin: 0;
    font-size: 0.9rem;
}

.footer-credit a {
    color: #ffffff;
    font-weight: 600;
}

.footer-credit a:hover {
    color: #60A5FA;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1400px) {
    .footer-top {
        grid-template-columns: 2.5fr 1fr 1fr 2fr;
        gap: 2rem;
    }

    .trust-bar-grid {
        justify-content: center;
    }

    .gcc-strip-inner {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
    }

    .footer-watermark {
        bottom: -5%;
        right: -10%;
    }

    .watermark-logo {
        width: 70vw;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-credit {
        text-align: center;
    }

    .gcc-strip-flags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 3rem 0;
    }

    .trust-bar-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .trust-item {
        width: 100%;
    }

    .gcc-strip-title {
        text-align: center;
        width: 100%;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================
   FLOATING ACTION BUTTONS
========================= */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1040;
    align-items: flex-end;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    position: relative;
}

.fab-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.whatsapp-fab {
    background: #25D366;
}

.whatsapp-fab:hover {
    background: #1EBE5A;
}

.scroll-top-fab {
    background: var(--color-primary, #0f4c81);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-fab.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-fab:hover.visible {
    transform: translateY(-4px);
}

.fab-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    width: max-content;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.whatsapp-fab:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.tooltip-title {
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.tooltip-status {
    color: #6b7280;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
}

@keyframes fab-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-fab {
    animation: fab-pulse 2s infinite;
}

.whatsapp-fab:hover {
    animation: none;
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .fab-tooltip {
        opacity: 0;
        display: none;
        visibility: visible;
        transform: translateX(0);
        padding: 8px 12px;
        border-radius: 8px;
    }

    .tooltip-title {
        font-size: 0.8rem;
    }

    .tooltip-status {
        font-size: 0.75rem;
    }
}

.grecaptcha-badge {
    display: none !important;
}