/* ============================================
   GLOBAL COMPONENTS STYLES
   ============================================ */

/* Chat Widget */
.vmt-chat-widget {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vmt-chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.vmt-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.vmt-chat-btn img,
.vmt-chat-btn svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vmt-chat-popup {
    position: fixed;
    right: 30px;
    bottom: 250px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9998;
}

.vmt-chat-popup.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vmt-chat-popup-header {
    background: var(--vmt-primary);
    color: white;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmt-chat-logo {
    width: 40px;
    height: auto;
}

.vmt-chat-popup-header h4 {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.vmt-chat-close {
    font-size: 28px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.vmt-chat-popup-body {
    padding: 20px;
}

.vmt-chat-popup-body p {
    font-size: 14px;
    color: #1e1e1e;
    margin-bottom: 15px;
    line-height: 1.5;
}

.vmt-chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vmt-chat-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vmt-chat-option:hover {
    background: #f8f9fa;
    border-color: var(--vmt-primary);
}

.vmt-chat-option img,
.vmt-chat-option svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.vmt-chat-option span {
    font-size: 14px;
    color: #1e1e1e;
}

/* Statistics Counter */
.vmt-statistics {
    padding: 80px 0;
    background: #fff;
}

.vmt-statistics-title {
    font-family: var(--vmt-font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--vmt-primary);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vmt-statistics-description {
    font-family: var(--vmt-font-body);
    font-size: 16px;
    color: #424242;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.vmt-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.vmt-stat-item {
    text-align: center;
}

.vmt-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.vmt-stat-icon svg {
    width: 100%;
    height: 100%;
}

.vmt-stat-number {
    font-family: var(--vmt-font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--vmt-primary);
    margin-bottom: 10px;
}

.vmt-stat-label {
    font-family: var(--vmt-font-body);
    font-size: 16px;
    font-weight: 700;
    color: #424242;
    text-transform: uppercase;
}

/* Page Hero Banner */
.vmt-page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vmt-page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vmt-page-hero-link,
.vmt-page-hero-image {
    display: block;
    width: 100%;
    height: 100%;
}

.vmt-page-hero-link img,
.vmt-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vmt-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.vmt-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.vmt-breadcrumb {
    margin-bottom: 20px;
}

.vmt-breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vmt-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.vmt-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.vmt-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.vmt-breadcrumb a:hover {
    color: white;
}

.vmt-breadcrumb span {
    color: white;
}

.vmt-page-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vmt-page-hero-title {
    font-family: var(--vmt-font-heading);
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

/* Tab Navigation */
.vmt-tabs {
    margin-bottom: 40px;
}

.vmt-tabs-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.vmt-tab-btn {
    min-width: 194px;
    padding: 12px 22px;
    font-family: var(--vmt-font-body);
    font-size: 15px;
    font-weight: 600;
    color: #1e1e1e;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vmt-tab-btn:hover {
    border-color: var(--vmt-primary);
    color: var(--vmt-primary);
}

.vmt-tab-btn.active {
    background: var(--vmt-primary);
    color: white;
    font-weight: 700;
    border-color: var(--vmt-primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .vmt-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .vmt-page-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .vmt-chat-widget {
        right: 20px;
        bottom: 20px;
    }

    .vmt-chat-btn {
        width: 50px;
        height: 50px;
    }

    .vmt-chat-popup {
        right: 20px;
        bottom: 200px;
        width: calc(100vw - 40px);
        max-width: 320px;
    }

    .vmt-statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vmt-statistics-title {
        font-size: 28px;
    }

    .vmt-page-hero {
        min-height: 300px;
    }

    .vmt-page-hero-title {
        font-size: 28px;
    }

    .vmt-tabs-nav {
        flex-direction: column;
        gap: 10px;
    }

    .vmt-tab-btn {
        width: 100%;
        max-width: 300px;
    }
}
