.testimonial-card {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 40px 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-quote {
    position: absolute;
    top: -10px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin-bottom: 25px;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    position: relative;
}

.testimonial-author::before {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #f36522 0%, #ff8650 100%);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.author-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 5px;
}

.author-location {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

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