/* Stevie Wood Recovery - Section Styles */

.services {
    padding: 100px 40px;
    background: #1e293b;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #0f172a;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #ffffff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
}

.about {
    padding: 100px 40px;
    background: #1e293b;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-content h2 span {
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.about-map-wrapper {
    background: #0f172a;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.map-pin {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #ffffff;
}

.coverage-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.coverage-text p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.8;
}

.reviews {
    padding: 100px 40px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.reviews .section-header {
    margin-bottom: 30px;
}

.reviews-intro {
    font-size: 18px;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
    text-align: center;
}

.review-display {
    width: 100%;
    min-height: 250px;
    position: relative;
}

.review-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.review-item.active {
    opacity: 1;
    visibility: visible;
}

.review-item.fade-out {
    opacity: 0;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 24px;
}

.review-text {
    font-size: 20px;
    color: #f1f5f9;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    max-width: 900px;
    width: 100%;
}

.review-author {
    font-size: 18px;
    font-weight: 600;
    color: #f1f5f9;
}
