/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.7;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER / NAV */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3d8bfd;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a.active,
nav a:hover {
    color: #3d8bfd;
}

/* MOBILE MENU */
.menu-btn {
    display: none;
    background: none;
    font-size: 1.8rem;
    border: none;
    cursor: pointer;
}

/* PRIVACY CONTENT */
.privacy-wrapper {
    background: #fff;
    margin: 40px auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 1000px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.privacy-wrapper h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.privacy-wrapper h2 {
    margin-top: 30px;
    font-size: 1.6rem;
    color: #3d8bfd;
}

.privacy-wrapper h3 {
    margin-top: 20px;
    font-size: 1.2rem;
}

.privacy-wrapper p {
    margin: 12px 0;
    font-size: 0.95rem;
}

.privacy-wrapper ul {
    margin-left: 20px;
    margin-top: 10px;
}

.privacy-wrapper li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.privacy-wrapper a {
    color: #3d8bfd;
    word-break: break-word;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        display: none;
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        margin: 0;
    }

    .menu-btn {
        display: block;
    }

    .privacy-wrapper {
        padding: 20px;
        margin: 20px;
    }

    .privacy-wrapper h1 {
        font-size: 1.8rem;
    }
}


/* POPUP OVERLAY */
.call-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* POPUP BOX */
.popup-box {
    background: #fff;
    width: 90%;
    max-width: 360px;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* CLOSE BUTTON */
.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* CALL BUTTON */
.popup-call-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 20px;
    background: #3d8bfd;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

/* DISCLAIMER TEXT */
.popup-note {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: #777;
}

/* ANIMATION */
@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.logo-link {
    text-decoration: none;
    color: inherit;
    font: inherit;
}
/* TOP STICKY BAR */
.top-sticky-call {
    position: fixed;
    bottom:0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0d6efd;
    animation: slideDown 0.6s ease;
}

/* LINK */
.top-call-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* FLAG */
.top-call-link .flag {
    font-size: 20px;
}

/* CALL ICON */
.call-icon {
    animation: ring 1.6s infinite;
}

/* TEXT */
.call-text strong {
    font-weight: 700;
}

/* HOVER */
.top-call-link:hover {
    background: #0b5ed7;
}

/* ANIMATIONS */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* MOBILE */
@media (max-width: 768px) {
    .call-text {
        font-size: 0.9rem;
    }
}
