/* Vantage Media Elementor Widgets Styles */

/* Hero Section */
.vm-hero-section {
    position: relative;
    overflow: hidden;
}

.vm-hero-section .vm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.vm-hero-section .vm-btn-secondary:hover {
    background: white !important;
    color: #1B3A52 !important;
}

/* Service Cards */
.vm-service-card {
    height: 100%;
}

.vm-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 144, 164, 0.2) !important;
}

/* Stats Counter */
.vm-stats-counter {
    transition: transform 0.3s ease;
}

.vm-stats-counter:hover {
    transform: scale(1.05);
}

/* Process Steps */
.vm-process-step {
    transition: all 0.3s ease;
}

.vm-process-step:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials */
.vm-testimonial {
    transition: all 0.3s ease;
}

.vm-testimonial:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CTA Section */
.vm-cta-section .vm-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vm-hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .vm-hero-section p {
        font-size: 1.1rem !important;
    }
    
    .vm-hero-section .vm-btn {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }
    
    .vm-service-card {
        margin-bottom: 20px;
    }
    
    .vm-cta-section h2 {
        font-size: 2rem !important;
    }
}

/* FontAwesome Icons Support */
.vm-service-icon i,
.vm-stars i {
    display: inline-block;
}

/* Smooth Animations */
* {
    transition: all 0.3s ease;
}

/* Grid Layout Helper */
.vm-widget-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .vm-widget-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vm-widget-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Section Spacing */
.elementor-section {
    position: relative;
}
