.hero-section {
    height: 100vh;
    display: flex;
    background: #1A1A1A;
}

.hero-left {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
}

.hero-right {
    width: 45%;
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    .hero-left, .hero-right {
        width: 100%;
    }
    .hero-right {
        order: -1; /* Image first on mobile */
        height: 40vh;
    }
    .hero-left {
        padding: 40px 20px 80px;
        text-align: center;
        align-items: center;
    }
}

/* Service Cards */
.service-card {
    background: var(--color-charcoal);
    border-top: 3px solid var(--color-primary);
    padding: 40px;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Testimonials */
.swiper-slide {
    padding: 40px;
    background: white;
    border-radius: 8px;
    height: auto;
}

.quote-icon {
    font-family: var(--font-accent);
    font-size: 90px;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 0;
    margin-bottom: 20px;
}
