/* =========================================
   RONIC SPECIFIC STYLES
   ========================================= */

.hero-ronic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    overflow: hidden;
}

.hero-ronic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Use one of the extracted images as background with dark overlay */
    background: linear-gradient(to right, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.6) 100%),
                url('../assets/ronic/Hydronic.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    color: var(--color-ronic-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        padding: var(--spacing-xl);
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.service-card {
    background: var(--color-bg-surface);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px var(--color-ronic-glow);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-body {
    padding: var(--spacing-md);
}

.service-body h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

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