* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #3d8bfd;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
nav a.active,
nav a:hover {
    color: #3d8bfd;
}
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
}
/* HERO */
.contact-hero {
    background: linear-gradient(135deg, #3d8bfd, #1e6fe3);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* CONTACT */
.contact-section {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 15px;
}

.info-box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.info-box a {
    color: #3d8bfd;
    text-decoration: none;
    font-weight: 500;
}

/* FORM */
.contact-form form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contact-form button {
    background: #3d8bfd;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #2f74e0;
}

.form-note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 28px;
    }
}
/* MOBILE */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        background: #fff;
        top: 64px;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid #eee;
    }

    nav a {
        margin: 10px 0;
    }

    .menu-btn {
        display: block;
    }
}


/* 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;
    }
}
