/**
 * VMP Mega Menu Styles
 * Bootstrap-compatible mega menu styling
 */

/* ===================================
   MEGA MENU BASE STYLES
   =================================== */

@font-face {
    font-family: 'Source Sans 3';
    src: url('assets/fonts/Source_Sans_3/SourceSans3-VariableFont_wght.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.vmp-mega-menu-item {
    position: relative;
}

.column_border_1{
    padding: 35px;
}

.overview_intro{
    margin-bottom: 10px;
}

.nav-heading-link-description {
    font-family: "Source Sans Regular";
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 12px;
    letter-spacing: 0;
    color: rgba(5, 6, 6, .6);
    margin-top: 8px;
    margin-bottom: 0;
}

.all_features .cta-title{
    padding: 0;
    font-size: 14px!important;
    text-decoration: underline;
}


.vmp-mega-menu-item > .nav-link {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 12px 8px;
    font-weight: 700;
    color: #050606;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vmp-mega-menu-item > .nav-link:hover {
    color: var(--secondary-color);
}

.vmp-mega-menu-item > .nav-link i:first-child {
    font-size: 18px;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.vmp-mega-menu-item.active .dropdown-arrow,
.vmp-mega-menu-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===================================
   MEGA MENU DROPDOWN CONTAINER
   =================================== */

.vmp-mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 600px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 0;
}

.vmp-mega-menu-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.vmp-mega-menu-dropdown.mega-menu-full-width {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-10px);
    width: calc(100vw - 40px);
    max-width: 972px;
}

.vmp-mega-menu-dropdown.mega-menu-full-width.show {
    transform: translateY(0)!important;
}

.vmp-mega-menu-dropdown.mega-menu-contained {
    width: auto;
    min-width: 600px;
    max-width: 900px;
}

.mega-menu-custom-content{
    display: none;
}

.mega-menu-inner {
    /* padding: 30px; */
}

/* ===================================
   CUSTOM CONTENT SECTION
   =================================== */

.mega-menu-custom-content {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.mega-menu-custom-content h3,
.mega-menu-custom-content h4 {
    color: #2271b1;
    margin-bottom: 10px;
}

.mega-menu-custom-content p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

/* ===================================
   FEATURED IMAGE
   =================================== */

.mega-menu-featured-image {
    margin-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
}

.mega-menu-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   COLUMNS LAYOUT
   =================================== */

.mega-menu-columns {
    display: grid;
    gap: 30px;
}

.mega-menu-columns.mega-menu-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mega-menu-columns.mega-menu-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mega-menu-columns.mega-menu-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mega-menu-column {
    min-width: 0; /* Prevents grid overflow */
}

/* ===================================
   MENU ITEMS INSIDE MEGA MENU
   =================================== */

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list > li {
    margin: 0;
    padding: 0;
}

.mega-menu-list > li > a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mega-menu-list > li > a:hover {
    background-color: #f8f9fa;
    color: #D32F2F;
}

.mega-menu-list > li > a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

/* Sub-items within mega menu columns */
.mega-menu-list .sub-menu {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.mega-menu-list .sub-menu li a {
    display: block;
    padding: 6px 10px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mega-menu-list .sub-menu li a:hover {
    background-color: #f0f0f0;
    color: #D32F2F;
}

/* ===================================
   REGULAR DROPDOWN (NON-MEGA MENU)
   =================================== */

.has-dropdown > .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 0;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown.active > .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

@media (max-width: 991px) {
    
    /* Stack menu items vertically on mobile */
    .navbar-left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    /* Reset mega menu positioning for mobile */
    .vmp-mega-menu-dropdown {
        position: static;
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
        transform: none !important;
        background: #f8f9fa;
    }
    
    .vmp-mega-menu-dropdown.show {
        transform: none !important;
    }
    
    .mega-menu-inner {
        padding: 15px;
    }
    
    /* Stack columns vertically on mobile */
    .mega-menu-columns {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    /* Mobile menu item styling */
    .vmp-mega-menu-item > .nav-link {
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    /* Mobile dropdown arrow */
    .dropdown-arrow {
        margin-left: auto;
    }
    
    /* Featured image adjustments */
    .mega-menu-featured-image {
        margin-bottom: 15px;
    }
    
    /* Custom content adjustments */
    .mega-menu-custom-content {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    /* Regular dropdowns on mobile */
    .has-dropdown > .dropdown-menu {
        position: static;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: #f0f0f0;
        padding: 0;
    }
    
    .dropdown-menu .dropdown-item {
        padding: 10px 30px;
    }
}

@media (max-width: 767px) {
    .mega-menu-inner {
        padding: 10px;
    }
    
    .mega-menu-columns {
        gap: 10px;
    }
    
    .vmp-mega-menu-item > .nav-link {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .mega-menu-list > li > a {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */

.vmp-mega-menu-item > .nav-link:focus,
.mega-menu-list > li > a:focus,
.dropdown-menu .dropdown-item:focus {
    outline: none;
    outline-offset: 2px;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDownFull {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vmp-mega-menu-dropdown.animating {
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.vmp-mega-menu-dropdown.mega-menu-contained.animating {
    animation-name: fadeInDown;
}

.vmp-mega-menu-dropdown.mega-menu-full-width.animating {
    animation-name: fadeInDownFull;
}

/* ===================================
   LOADING STATE
   =================================== */

.vmp-mega-menu-loading {
    position: relative;
}

.vmp-mega-menu-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   TEMPLATE-SPECIFIC STYLES
   =================================== */

/* Base template wrapper */
.vmp-mega-menu-template {
    width: 100%;
}

/* ===================================
   E-COMMERCE TEMPLATE
   =================================== */

.vmp-template-ecommerce .ecommerce-products-grid {
    display: grid;
    gap: 20px;
}

.vmp-template-ecommerce .ecommerce-products-grid.mega-menu-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.vmp-template-ecommerce .ecommerce-products-grid.mega-menu-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vmp-template-ecommerce .ecommerce-products-grid.mega-menu-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.vmp-template-ecommerce .ecommerce-product-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vmp-template-ecommerce .ecommerce-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.vmp-template-ecommerce .product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.vmp-template-ecommerce .product-icon {
    font-size: 32px;
    color: #D32F2F;
    min-width: 40px;
}

.vmp-template-ecommerce .product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.vmp-template-ecommerce .product-description {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.vmp-template-ecommerce .product-link-text {
    font-size: 14px;
    color: #D32F2F;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vmp-template-ecommerce .ecommerce-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.vmp-template-ecommerce .btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background: #D32F2F;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.vmp-template-ecommerce .btn-view-all:hover {
    background: #b71c1c;
}

/* ===================================
   SERVICES TEMPLATE
   =================================== */

.vmp-template-services .services-grid {
    display: grid;
    gap: 20px;
}

.vmp-template-services .services-grid.mega-menu-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.vmp-template-services .services-grid.mega-menu-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vmp-template-services .services-grid.mega-menu-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.vmp-template-services .service-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.vmp-template-services .service-item:hover {
    border-color: #D32F2F;
    transform: translateY(-5px);
}

.vmp-template-services .service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.vmp-template-services .service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D32F2F, #b71c1c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: white;
}

.vmp-template-services .service-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.vmp-template-services .service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.vmp-template-services .service-link-arrow {
    font-size: 20px;
    color: #D32F2F;
    font-weight: bold;
}

.vmp-template-services .services-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.vmp-template-services .services-cta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.vmp-template-services .cta-text {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
}

.vmp-template-services .btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background: #2271b1;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.vmp-template-services .btn-contact:hover {
    background: #135e96;
}

/* ===================================
   BLOG GRID TEMPLATE
   =================================== */

.vmp-template-blog-grid .blog-grid {
    display: grid;
    gap: 20px;
}

.vmp-template-blog-grid .blog-grid.mega-menu-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.vmp-template-blog-grid .blog-grid.mega-menu-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vmp-template-blog-grid .blog-grid.mega-menu-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.vmp-template-blog-grid .blog-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.vmp-template-blog-grid .blog-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.vmp-template-blog-grid .blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.vmp-template-blog-grid .blog-thumbnail {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.vmp-template-blog-grid .blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vmp-template-blog-grid .blog-icon-wrapper {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.vmp-template-blog-grid .blog-content {
    padding: 20px;
}

.vmp-template-blog-grid .blog-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.vmp-template-blog-grid .blog-date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.vmp-template-blog-grid .blog-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.vmp-template-blog-grid .blog-read-more {
    font-size: 14px;
    color: #2271b1;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vmp-template-blog-grid .blog-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.vmp-template-blog-grid .btn-view-all-posts {
    display: inline-block;
    padding: 12px 30px;
    background: #2271b1;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.vmp-template-blog-grid .btn-view-all-posts:hover {
    background: #135e96;
}

/* ===================================
   IMAGE GALLERY TEMPLATE
   =================================== */

.vmp-template-image-gallery .image-gallery-grid {
    display: grid;
    gap: 15px;
}

.vmp-template-image-gallery .image-gallery-grid.mega-menu-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.vmp-template-image-gallery .image-gallery-grid.mega-menu-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.vmp-template-image-gallery .image-gallery-grid.mega-menu-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.vmp-template-image-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.vmp-template-image-gallery .gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.vmp-template-image-gallery .gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
}

.vmp-template-image-gallery .gallery-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vmp-template-image-gallery .gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.vmp-template-image-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 47, 47, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vmp-template-image-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.vmp-template-image-gallery .gallery-icon {
    font-size: 40px;
    color: white;
}

.vmp-template-image-gallery .gallery-caption {
    padding: 15px;
    background: white;
}

.vmp-template-image-gallery .gallery-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.vmp-template-image-gallery .gallery-description {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.vmp-template-image-gallery .gallery-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.vmp-template-image-gallery .btn-view-gallery {
    display: inline-block;
    padding: 12px 30px;
    background: #D32F2F;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.vmp-template-image-gallery .btn-view-gallery:hover {
    background: #b71c1c;
}

/* ===================================
   WHY VMP PASS TEMPLATE
   =================================== */

.vmp-template-why-vmp-pass .why-vmp-pass-container {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 50px;
    align-items: start;
}

.vmp-template-why-vmp-pass .why-vmp-column {
    min-width: 0;
}

.vmp-template-why-vmp-pass .column-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 12px 0;
    padding: 0;
}

.vmp-template-why-vmp-pass .column-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vmp-template-why-vmp-pass .why-vmp-item {
    margin-bottom: 0;
}

.vmp-template-why-vmp-pass .why-vmp-link {
    display: block;
    padding: 0 0 20px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.vmp-template-why-vmp-pass .why-vmp-link:hover {
    opacity: 0.7;
}

.vmp-template-why-vmp-pass .item-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #000;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vmp-template-why-vmp-pass .item-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #4A90E2;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.vmp-template-why-vmp-pass .item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.vmp-template-why-vmp-pass .features-footer {
    margin-top: 10px;
    padding-top: 0;
}

.vmp-template-why-vmp-pass .all-features-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.vmp-template-why-vmp-pass .all-features-link:hover {
    opacity: 0.7;
}

.vmp-template-why-vmp-pass .all-features-link .arrow {
    font-size: 16px;
    text-decoration: none;
}

/* CTA Boxes Styling */
.vmp-template-why-vmp-pass .cta-column {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eee;
}

.vmp-template-why-vmp-pass .cta-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 24px 20px;
    transition: box-shadow 0.2s ease;
}

.personal-template-root .vmp-template-why-vmp-pass .cta-box{
    padding: 34px 20px!important;
}

.vmp-template-why-vmp-pass .cta-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vmp-template-why-vmp-pass .cta-style-primary {
    background: #fff;
    border: none;
    border-bottom: 1px solid #ddd;    
    background: #F1F8F1;
}

.cta_style_personal{
    display: grid;
    grid-template-columns: 16% 84%;
}

.vmp-template-why-vmp-pass .cta-style-secondary {
    background: #fff;
    border: none;
    border-bottom: 1px solid #ddd;
    background: #F3F7FB;
}

.vmp-template-why-vmp-pass .cta-style-contact {
    background: #fff;
    border: none;
    border-bottom: 1px solid #ddd;
    background: #F3F7FB;
}

.vmp-template-why-vmp-pass .cta-style-download {
    background: #fff;
    border: none;
    border-bottom: 1px solid #ddd;
    background: #f9f6f3;
}

.vmp-template-why-vmp-pass .cta-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 16px;
    color: white;
}

.cta-download-btn{
    padding: 0!important;
    display: block!important;
}

.cta-download-btn:hover .cta-title{
    color: var(--secondary-color)!important;
}


.vmp-template-why-vmp-pass .cta-style-download .cta-icon {
    display: none;
}

.vmp-template-why-vmp-pass .cta-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #050606;
}

.vmp-template-why-vmp-pass .cta-title:hover{
    color: var(--secondary-color);
}

span.cta-title{
    padding: 0!important;
}

.cta-title a{
    padding: 0!important;
}

.cta-title a:hover{
    color: var(--secondary-color)!important;
}

.overview_intro_a{
    padding: 0!important;
    font-weight: initial!important;
}

.overview_intro_a:hover span.cta-title{
    color: var(--secondary-color);
    cursor: pointer;
    
}

.vmp-template-why-vmp-pass .cta-style-contact .cta-title,
.vmp-template-why-vmp-pass .cta-style-download .cta-title {
    color: #000;
}

.vmp-template-why-vmp-pass .cta-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #666;
}

.vmp-template-why-vmp-pass .cta-button {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    background: #D32F2F;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: background 0.2s ease;
}

.vmp-template-why-vmp-pass .cta-button:hover {
    background: #b71c1c;
}

.vmp-template-why-vmp-pass .platform-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.vmp-template-why-vmp-pass .platform-icons i {
    font-size: 28px;
    color: #666;
    text-align: center;
    transition: transform 0.2s ease;
}

.vmp-template-why-vmp-pass .platform-icons i:hover {
    transform: scale(1.1);
}

.vmp-template-why-vmp-pass .no-items {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* ===================================
   MOBILE RESPONSIVE - TEMPLATES
   =================================== */

@media (max-width: 991px) {
    .ecommerce-products-grid,
    .services-grid,
    .blog-grid,
    .image-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .vmp-template-ecommerce .ecommerce-product-item,
    .vmp-template-services .service-item,
    .vmp-template-blog-grid .blog-item {
        padding: 15px;
    }
    
    .vmp-template-why-vmp-pass .why-vmp-pass-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vmp-template-why-vmp-pass .cta-column {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 767px) {
    .vmp-template-services .service-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .vmp-template-blog-grid .blog-icon-wrapper {
        height: 100px;
        font-size: 32px;
    }
    
    .vmp-template-why-vmp-pass .cta-column {
        grid-template-columns: 1fr;
    }

    .column_border_1{
        padding: 15px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .vmp-mega-menu-dropdown {
        display: none !important;
    }
}

@media (max-width: 575px) {
    
}
