/* Services Section */
.services-section {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.service-item {
    padding: 2rem;
}

.gold-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

.service-item h3 {
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Events Section */
.events-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

.event-image-container {
    width: 100%;
    height: 400px;
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-text {
    text-align: center;
}

.event-meta {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin: 1rem 0;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    min-height: auto;
    height: auto;
}
.testi-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-left: 2px solid var(--gold-primary);
    max-width: 600px;
    margin: 0 auto;
}

.stars {
    margin-bottom: 2rem;
    display: flex;
    gap: 5px;
}

.star-icon,
.stars img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    max-height: 20px;
}

.testi-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.testi-author h4 {
    margin-bottom: 0.3rem;
}

.testi-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .events-section {
        display: flex;
        align-items: center;
        gap: 5rem;
    }

    .event-image-container {
        flex: 1;
        margin-bottom: 0;
        height: 500px;
    }

    .event-text {
        flex: 1;
        text-align: left;
    }
}
