@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4A5565;
    --blue-light: #0073F2;
    --blue-dark: #00407C;
    --orabge-color: #FF7A00;
    --black-color: #000000;
    --white-color: #ffffff;
    --bg-body: #F5F7FB;
    --font-poppins: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-poppins);
    background: #EEF4FA;
}

.container {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}

.vz-colwrap {
    background: var(--white-color);
    padding: 14px;
    margin-bottom: 30px;
}

/* Header CSS */
.site-header {
    background: var(--white-color);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid #CAD6DC;
}

.site-header.is-sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.vz-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.vz-logo {
    text-decoration: none;
}

.vz-logo img {
    max-width: 84px;
    width: 100%;
}

/* Base Navigation wrap (hidden on Mobile by default) */
.vz-desktop-nav-wrap {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    gap: 20px;
}

.vz-desktop-nav-wrap.active {
    display: flex;
}

.vz-mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black-color);
}

.vz-mobile-menu-btn svg {
    width: 30px;
    height: 30px;
}

/* header action groups */
.vz-nav-group-1,
.vz-nav-group-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.vz-nav-group-2.vz-mobile-navgrp-2 {
    flex-direction: row;
    align-items: center;
}

.vz-nav-group-1 .vz-lang-select-wrap,
.vz-nav-group-1 .vz-btn-primary,
.vz-nav-group-2 .vz-btn-primary {
    width: 100%;
}

.vz-nav-group-2.vz-mobile-navgrp-2 .vz-btn-primary {
    width: auto;
}

.vz-headmobile-btndiv {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* language selector */
.vz-lang-select-wrap {
    position: relative;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    background: var(--white-color);
    font-family: var(--font-poppins);
}

.vz-lang-select-wrap select {
    appearance: none;
    background: transparent;
    border: none;
    padding: 8px 30px 8px 12px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    outline: none;
    width: 100%;
    font-family: var(--font-poppins);
}

.vz-lang-select-wrap svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 7px;
    pointer-events: none;
    color: var(--black-color);
}

/* buttons */
.vz-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0px 4px 24px 0px #00000040;
}

.vz-btn-orange {
    background: var(--orabge-color);
    color: #fff;
}

.vz-btn-orange:hover {
    filter: brightness(1.1);
}

.vz-btn-blue {
    background: var(--blue-light);
    color: #fff;
}

.vz-btn-blue:hover {
    filter: brightness(1.1);
}

/* center nav */
.vz-header-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.vz-header-nav a {
    text-decoration: none;
    color: var(--black-color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vz-header-nav a svg {
    width: 10px;
    height: 7px;
}

/* Dropdown Mobile */
.vz-has-dropdown {
    position: relative;
    width: 100%;
}

.vz-header-nav ul.vz-dropdown-menu {
    display: none;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 10px 0 0 15px !important;
    width: 100%;
}

.vz-dropdown-menu li a {
    font-size: 13px !important;
    color: var(--primary-color) !important;
    padding: 5px 0 !important;
    font-weight: 400 !important;
}

.vz-has-dropdown.active .vz-dropdown-menu {
    display: flex;
}

.vz-has-dropdown>a svg {
    transition: transform 0.3s ease;
}

.vz-has-dropdown.active>a svg {
    transform: rotate(180deg);
}

.vz-icon-search,
.vz-icon-whatsapp,
.vz-login {
    color: var(--black-color);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.vz-desktop-search,
.vz-desktop-signup {
    display: none;
}

.vz-login {
    font-weight: 500;
    font-size: 14px;
}

.vz-icon-search svg {
    width: 17px;
    height: 17px;
}

.vz-icon-whatsapp img {
    width: 24px;
    height: 24px;
}

.vz-main-wrapper {
    padding: 14px 0;
    position: relative;
}


/* Footer CSS */
.site-footer {
    background: var(--blue-dark);
    color: var(--white-color);
    padding: 20px 0 30px;
}

.vz-footer-main {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    margin-bottom: 20px;
}

/* Links Layout */
.vz-footer-links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}

.vz-foot-col {
    display: contents;
    /* unwrap columns on mobile */
}

/* Reorder on Mobile */
.widget-product {
    order: 2;
}

.widget-links {
    order: 3;
}

.widget-trade {
    order: 4;
}

.widget-support {
    order: 5;
}

.widget-legal {
    order: 6;
}

.widget-partners {
    order: 7;
    grid-column: span 2;
}

.widget-chat {
    display: none;
}

.vz-footer-heading {
    color: var(--white-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vz-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vz-footer-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    transition: color 0.3s;
}

.vz-footer-list li a:hover {
    color: var(--white-color);
}

/* Chat Widget */
.vz-chat-us-box img {
    width: 87px;
    height: auto;
}


/* Demo Form */
.vz-footer-form-wrapper {
    width: 100%;
    margin: 0 auto;
}

.vz-demo-form {
    background: var(--white-color);
    border-radius: 28px;
    padding: 18px;
}

.vz-demo-form h3 {
    color: var(--blue-dark);
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vz-form-group {
    margin-bottom: 8px;
}

.vz-form-control {
    width: 100%;
    padding: 9px 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-family: var(--font-poppins);
    outline: none;
    background: #EEF4FA;
    color: #6E7C87;
    display: block;
}

.vz-form-control::placeholder {
    color: #9CA3AF;
}

.vz-phone-group {
    display: flex;
    gap: 10px;
}

.vz-phone-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #EEF4FA;
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 20px;
    color: #6E7C87;
    min-width: 90px;
    white-space: nowrap;
}

.vz-phone-prefix img {
    width: 20px;
    height: 14px;
    object-fit: cover;
}

.vz-phone-group .vz-form-control {
    flex: 1;
}

.vz-btn-submit {
    width: 100%;
    background: var(--blue-light);
    color: var(--white-color);
    border: none;
    padding: 8px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    cursor: pointer;
    font-family: var(--font-poppins);
    transition: background 0.3s;
}

.vz-btn-submit:hover {
    filter: brightness(1.1);
}

/* Footer Bottom */
.vz-footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.vz-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    width: 100%;
}

.vz-footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.vz-social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--white-color);
    color: var(--blue-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.vz-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0;
}


/* ============== Media Query ============== */

@media (min-width: 768px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    /* Header CSS */
    .vz-logo img {
        max-width: 126px;
    }

    .vz-btn-primary {
        padding: 8px 24px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
    }


    /* Footer CSS */
    .site-footer {
        padding: 46px 0 37px;
    }

    .vz-copyright {
        font-size: 13px;
    }
}

@media (min-width: 992px) {

    /* Footer CSS */
    .vz-footer-main {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
    }

    .vz-footer-links-container {
        display: flex;
        /* Override mobile grid */
        flex: 1;
        gap: 40px;
        justify-content: space-between;
    }

    .vz-foot-col {
        display: flex;
        /* Restore wrapper column visibility */
        flex-direction: column;
        gap: 35px;
    }

    .widget-chat {
        display: block;
    }

    .vz-footer-form-wrapper {
        flex: 0 0 350px;
        max-width: 350px;
        margin: 0;
    }

    .vz-btn-submit {
        background: var(--blue-dark);
    }

    .vz-footer-divider {
        display: none;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }

    .vz-colwrap {
        padding: 22px;
    }

    /* Header Desktop */
    .site-header {
        padding: 6px 0;
    }

    .vz-mobile-navgrp-2,
    .vz-mobile-menu-btn,
    .vz-headmobile-btndiv {
        display: none;
    }

    .vz-desktop-search,
    .vz-desktop-signup {
        display: inline-flex;
    }

    .vz-desktop-nav-wrap {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        box-shadow: none;
        width: auto;
        flex: 1;
        justify-content: end;
        margin-left: 30px;
        align-items: center;
    }

    .vz-header-nav ul {
        flex-direction: row;
        gap: 24px;
        align-items: center;
    }

    .vz-nav-group-1,
    .vz-nav-group-2 {
        flex-direction: row;
        align-items: center;
        width: auto;
    }

    .vz-nav-group-1 {
        max-width: 480px;
        width: 100%;
        gap: 24px;
    }

    .vz-nav-group-1 .vz-lang-select-wrap,
    .vz-nav-group-1 .vz-btn-primary,
    .vz-nav-group-2 .vz-btn-primary {
        width: auto;
    }

    .vz-nav-group-1 .vz-lang-select-wrap {
        max-width: 280px;
        width: 100%;
    }

    /* Dropdown Desktop */
    .vz-dropdown-menu {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 200px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px 0 !important;
        margin-top: 15px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        transform: translateY(10px);
        z-index: 10;
        gap: 0 !important;
    }

    .vz-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
        background: transparent;
    }

    .vz-dropdown-menu li {
        width: 100%;
    }

    .vz-dropdown-menu li a {
        padding: 8px 20px !important;
        color: var(--black-color) !important;
        display: block !important;
        width: 100%;
    }

    .vz-dropdown-menu li a:hover {
        background: #f8f9fa;
        color: var(--blue-light) !important;
    }

    .vz-has-dropdown:hover .vz-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .vz-has-dropdown:hover>a svg {
        transform: rotate(180deg);
    }

    /* Footer CSS */
    .vz-footer-links-container {
        padding-right: 60px;
    }
}

@media (min-width: 1441px) {
    .container {
        max-width: 1430px;
    }
}

@media (max-width: 1199px) {

    /* Header CSS */
    .vz-nav-group-2.vz-mobile-navgrp-2 .vz-icon-search {
        background: var(--blue-light);
        padding: 11px;
        border-radius: 8px;
    }

    .vz-nav-group-2.vz-mobile-navgrp-2 .vz-icon-search svg path {
        stroke: var(--white-color);
    }

}

@media (max-width: 767px) {

    /* Header CSS */
    .vz-nav-group-2.vz-mobile-navgrp-2 .vz-icon-search {
        background: var(--blue-light);
        padding: 6px;
        border-radius: 4px;
    }

    .vz-nav-group-2.vz-mobile-navgrp-2 .vz-icon-search svg {
        width: 15px;
        height: 15px;
    }

    .vz-nav-group-2.vz-mobile-navgrp-2 .vz-icon-search svg path {
        stroke: var(--white-color);
    }

    .vz-nav-group-2.vz-mobile-navgrp-2 {
        gap: 10px;
    }

    /* Footer CSS */
    .vz-demo-form {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

    .vz-demo-form h3 {
        color: var(--white-color);
        font-size: 20px;
        line-height: 24px;
    }

    .vz-form-control,
    .vz-phone-prefix {
        background: var(--white-color);
    }

}