/* Quote CTA Section - Modern & Elegant */
.quote-cta-section {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
}

.quote-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.quote-cta-wrapper {
    position: relative;
    z-index: 2;
}

.quote-cta-content {
    max-width: 550px;
    margin: 0 auto;
    padding: 35px 40px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e9ecef;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.quote-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.quote-cta-content p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.6;
}

.quote-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #28a745;
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.quote-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s;
}

.quote-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
    background: #218838;
    text-decoration: none;
}

.quote-cta-button:hover::before {
    left: 100%;
}

.quote-cta-button:active {
    transform: translateY(-1px);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.quote-cta-button:hover .button-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-cta-section {
        padding: 30px 0;
    }
    
    .quote-cta-content {
        padding: 20px 15px;
        margin: 0 15px;
    }
    
    .quote-cta-content h2 {
        font-size: 1.6rem;
    }
    
    .quote-cta-content p {
        font-size: 0.95rem;
    }
    
    .quote-cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .quote-cta-section {
        padding: 25px 0;
    }
    
    .quote-cta-content {
        padding: 18px 12px;
        margin: 0 10px;
    }
    
    .quote-cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .quote-cta-content p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .quote-cta-button {
        padding: 10px 18px;
        font-size: 0.85rem;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }
}

/* Animation on scroll */
.quote-cta-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
