/* -------------------------------------
   Szolgáltatások oldal
   ------------------------------------- */

.small-hero {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem 2rem;
    border-bottom: 3px solid var(--red);
}
.small-hero h1 {
    color: var(--red);
    margin-bottom: 0.5rem;
}
.small-hero p {
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* --- Szolgáltatás kártyák --- */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem 1.2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--red);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card .icon {
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    color: #222;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobil nézet */
@media (max-width: 600px) {
    .service-card {
        padding: 1.5rem 1rem;
    }
}
/* --- "Kérjen ajánlatot" gomb stílus --- */
.btn-offer {
    display: inline-block;
    margin-top: 1rem;
    background: var(--red);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.btn-offer:hover {
    background: #b80000;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}
.small-hero {
  position: relative;
  z-index: 1;
}
.small-hero {
  margin-top: 90px; /* a header helye */
}
.small-hero {
  margin-top: 90px;
  position: relative;
  z-index: 1;
}
