:root {
    --blue: #1A9FE0;
    --blue-dark: #1588c4;
    --dark-bg: #1E2535;
    --darker-bg: #171E2D;
    --card-bg: #242C3D;
    --white: #ffffff;
    --light: rgba(255, 255, 255, 0.75);
    --lighter: rgba(255, 255, 255, 0.45);
    --border: rgba(255, 255, 255, 0.08);
}

body {
    /* font-family: 'Poppins', sans-serif; */
    background: #f0f4f8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.d5 {
    transition-delay: 0.5s;
}

/* ── CTA BANNER ── */
.cta-section {
    padding: 0 60px 0;
    position: relative;
    z-index: 2;
}

.cta-banner {
    background: linear-gradient(120deg, #1A9FE0 0%, #0d7abf 60%, #1A9FE0 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    border-radius: 16px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 159, 224, 0.35);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Dashed path line */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    width: 55%;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

/* Airplane */
.cta-plane {
    position: absolute;
    top: 28px;
    right: 38%;
    font-size: 22px;
    animation: planeFly 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

@keyframes planeFly {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(12px) rotate(5deg);
    }
}

/* Mountains illustration */
.cta-mountain {
    position: relative;
    flex-shrink: 0;
    margin-right: 24px;
}

.mountain-svg {
    width: 80px;
    animation: mountainBob 3s ease-in-out infinite;
}

@keyframes mountainBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.cta-text h2 {
    color: var(--white);
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.cta-btn {
    background: var(--white);
    color: var(--dark-bg);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
    background: var(--dark-bg);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* Snow wave separator */
.snow-wave {
    display: block;
    width: 100%;
    margin-top: -2px;
    position: relative;
    z-index: 1;
}

/* ── FOOTER ── */
footer {
    background: #0c0707de;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* Subtle animated background dots */
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.footer-main {
    padding: 60px 60px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* ── BRAND COL ── */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.logo-icon {
    width: 100%;
    /* height: 2px; */
    border-radius: 10px;
    /* border: 2.5px solid rgba(255, 255, 255, 0.2); */
    background: rgba(255, 255, 255, 0.904);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
/* 
.logo-icon:hover {
    border-color: var(--blue);
} */

/* .logo-icon  {
    width: 400px;
    height: 400px;
} */

.brand-name-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.brand-sub {
    font-size: 10px;
    color: var(--blue);
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
}

.brand-desc {
    font-size: 13px;
    color: var(--light);
    line-height: 1.85;
    margin-bottom: 26px;
    text-align: justify;
}

.connect-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    /* color: rgb(255, 255, 255); */
    color: white;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    /* background: var(); */
    transform: scale(0);
    transition: transform 0.3s;
}

.social-btn:hover::before {
    transform: scale(1);
}

.social-btn:hover {
    color: rgb(255, 255, 255);
    border-color: wheat;
    background: rgba(116, 112, 112, 0.493);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(150, 154, 156, 0.35);
}

.social-btn svg {
    position: relative;
    z-index: 1;
    color: white !important;
}

/* ── LINK COLS ── */
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: var(--blue);
    border-radius: 2px;
    transition: width 0.4s;
}

.footer-col:hover h4::after {
    width: 50px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li::before {
    content: '›';
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.footer-links li:hover::before {
    transform: translateX(3px);
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--blue);
    transform: translateX(3px);
}

/* ── CONTACT COL ── */
.contact-col h4 {
    /* inherits */
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.contact-icon:hover {
    transform: rotate(10deg) scale(1.1);
}

.contact-icon.phone {
    background: rgba(26, 159, 224, 0.15);
    border: 1.5px solid rgba(26, 159, 224, 0.35);
}

.contact-icon.mail {
    background: rgba(255, 140, 0, 0.12);
    border: 1.5px solid rgba(255, 140, 0, 0.3);
}

.contact-icon.loc {
    background: rgba(26, 159, 224, 0.15);
    border: 1.5px solid rgba(26, 159, 224, 0.35);
}

.contact-icon.phone svg {
    color: var(--blue);
}

.contact-icon.mail svg {
    color: #ff8c00;
}

.contact-icon.loc svg {
    color: var(--blue);
}

.contact-text {
    font-size: 13px;
    color: var(--light);
    line-height: 1.7;
}

.contact-text a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--blue);
}

/* ── BOTTOM BAR ── */
.footer-bottom {
    background: var(--darker-bg);
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 12.5px;
    color: var(--lighter);
}

.credit {
    font-size: 12.5px;
    color: var(--lighter);
}

.credit a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.credit a:hover {
    color: #5bc8f5;
}

/* ── CHAT WIDGET ── */
.chat-widget {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 18px;
    max-width: 240px;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 100;
    animation: chatPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s both;
}

@keyframes chatPop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-widget::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--white);
}

/* Floating buttons */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2s infinite;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-chat {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    background: rgb(184, 7, 7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(26, 159, 224, 0.4);
    animation: pulse-blue 2s infinite 0.5s;
    cursor: pointer;
    transition: transform 0.3s;
}

.float-chat:hover {
    transform: scale(1.1);
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 13, 13, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(224, 26, 26, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(224, 26, 26, 0);
    }
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: #ff3b3b;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .cta-section {
        padding: 0 40px;
    }

    .footer-bottom {
        padding: 18px 40px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 0 20px;
    }

    .cta-banner {
        padding: 24px 24px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        min-height: auto;
        border-radius: 12px;
    }

    .cta-banner::before {
        display: none;
    }

    .cta-mountain {
        margin-right: 0;
    }

    .cta-text h2 {
        font-size: 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 40px 24px 30px;
        gap: 36px;
    }

    .footer-bottom {
        padding: 16px 24px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .chat-widget {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 15px;
    }

    .footer-col h4 {
        font-size: 14px;
    }
}


.show-unshow {
    display: none;
}

.footer_dropdown{
    padding-left: 15px;
   
    display: none;

}
.actionfooter_dropdown{
    transition: 0.3s  ease;
    display: block !important;
}

.rotate_arrow180{
    transition: 0.3s  ease-in-out;
    transform: rotate(180deg);
}
