/**
 * CSS cho trang chủ Elementor
 * Thêm file này vào Elementor > Settings > Custom CSS hoặc vào theme style.css
 */

/* Container */
.vmq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.vmq-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vmq-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.vmq-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vmq-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.vmq-hero-illustration img {
    max-width: 100%;
    height: auto;
}

.vmq-hero-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.vmq-hero-form h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.vmq-contact-form input,
.vmq-contact-form-full input,
.vmq-contact-form-full textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: "Segoe UI", sans-serif;
}

.vmq-contact-form-full textarea {
    resize: vertical;
    min-height: 120px;
}

.vmq-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.vmq-checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
}

.vmq-checkbox-group input[type="checkbox"] {
    margin-right: 8px;
}

/* Buttons */
.vmq-btn-primary {
    background: #ffa500;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.vmq-btn-primary:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* Services Section */
.vmq-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vmq-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a365d;
}

.vmq-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmq-service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.vmq-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vmq-service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.vmq-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a365d;
}

.vmq-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vmq-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #2c5282;
    transition: transform 0.3s ease;
}

.vmq-service-card:hover .vmq-arrow {
    transform: translateX(5px);
}

/* Other Services Section */
.vmq-other-services-section {
    padding: 80px 0;
    background: white;
}

.vmq-other-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.vmq-other-service-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.vmq-other-service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.vmq-other-service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a365d;
}

.vmq-other-service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Section */
.vmq-why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.vmq-why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vmq-why-choose-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.vmq-process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.vmq-process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vmq-step-number {
    width: 40px;
    height: 40px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vmq-process-step p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

/* Work Process Section */
.vmq-work-process-section {
    padding: 80px 0;
    background: white;
}

.vmq-section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vmq-work-process-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.vmq-process-item {
    text-align: center;
    background: #2c5282;
    color: white;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.2);
}

.vmq-process-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.vmq-process-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.vmq-success-rate {
    display: inline-block;
    background: #ffa500;
    padding: 5px 15px;
    border-radius: 20px;
    margin-left: 10px;
    font-weight: 700;
}

.vmq-process-connector {
    width: 3px;
    height: 30px;
    background: #2c5282;
}

.vmq-cta-center {
    text-align: center;
}

/* Completed Cases Section */
.vmq-completed-cases-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vmq-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vmq-case-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vmq-case-item:hover {
    transform: scale(1.05);
}

.vmq-case-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Testimonials Section */
.vmq-testimonials-section {
    padding: 80px 0;
    background: white;
}

.vmq-testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.vmq-testimonial-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.vmq-testimonial-image {
    text-align: center;
}

.vmq-testimonial-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2c5282;
}

.vmq-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.vmq-testimonial-author {
    font-weight: 600;
    color: #2c5282;
}

.vmq-testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.vmq-testimonial-nav button {
    background: #2c5282;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vmq-testimonial-nav button:hover {
    background: #1a365d;
    transform: scale(1.1);
}

/* Contact Section */
.vmq-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vmq-contact-section .vmq-section-title,
.vmq-contact-section .vmq-section-description {
    color: white;
}

.vmq-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vmq-contact-form-full {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.vmq-contact-form-full input,
.vmq-contact-form-full textarea {
    color: #333;
}

.vmq-contact-illustration img {
    max-width: 100%;
    height: auto;
}

/* News Section */
.vmq-news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vmq-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .vmq-hero-content,
    .vmq-why-choose-content,
    .vmq-contact-content {
        grid-template-columns: 1fr;
    }
    
    .vmq-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vmq-other-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vmq-testimonial-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .vmq-hero-title {
        font-size: 1.8rem;
    }
    
    .vmq-services-grid,
    .vmq-other-services,
    .vmq-cases-grid,
    .vmq-news-grid {
        grid-template-columns: 1fr;
    }
    
    .vmq-checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .vmq-section-title {
        font-size: 1.8rem;
    }
}

