/* Guarantee Section Styles */
.guarantee-section {
    background-color: var(--primary-color);
    padding: 40px 0;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.guarantee-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.guarantee-title {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
}

.guarantee-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-10px);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.guarantee-item-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 700;
}

.guarantee-text {
    color: var(--text-color);
}

/* Footer rating styles */
.footer-rating {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.rating-stars {
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Responsive styles for guarantee section */
@media (max-width: 767.98px) {
    .guarantee-section {
        padding: 30px 0;
    }
    
    .guarantee-title {
        font-size: 1.8rem;
    }
    
    .guarantee-container {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-item {
        width: 100%;
        max-width: 100%;
    }
}

/* Fix for hero form select */
.hero-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
    color: var(--text-color);
}

.hero-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}
