/* ===============================
   SZOLGÁLTATÁSOK – TELJES CSS
   =============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== ALAPOK & GLOBÁLIS STÍLUSOK ===== */
body {
    font-family: Arial, sans-serif;
    background-color: #F3EFE8;
    color: #3E2A20;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    overflow-x: hidden;
}

/* ===== FŐ TARTALOM ===== */
#main-content-container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 5%;
}

/* ===== OLDAL CÍM ===== */
.page-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.page-header h1 {
    text-align: center;
    color: #3E2A20;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.page-header h1::after {
    content: '';
    width: min(120px, 30vw);
    height: 4px;
    background: linear-gradient(90deg, #C49A6C, #E0A84D);
    display: block;
    margin: 18px auto 0;
    border-radius: 2px;
}

.page-header .subtitle {
    color: #5A4032;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: min(800px, 90vw);
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

/* ===== SZOLGÁLTATÁS KÁRTYÁK ===== */
.services-container {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 8vw, 60px);
    margin-bottom: clamp(40px, 8vw, 80px);
}

.service-card {
    background-color: #F7F3ED;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(78, 54, 41, 0.15);
    overflow: hidden;
    border: 1px solid rgba(196, 154, 108, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(78, 54, 41, 0.25);
}

/* ===== SERVICE HEADER - ÚJ, LETISZTULT DESIGN ===== */
.service-header {
    padding: clamp(20px, 4vw, 30px) clamp(20px, 4vw, 30px);
    border-bottom: 2px solid rgba(196, 154, 108, 0.3);
    position: relative;
}

/* Finom dekoráció - csak egy vékony csík a bal oldalon */
.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #C49A6C, #E0A84D);
    border-radius: 3px 0 0 3px;
}

.service-header h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin: 0;
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
    color: #3E2A20;
    position: relative;
    padding-left: 15px;
}

.service-icon {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(196, 154, 108, 0.15);
    border: 1px solid rgba(196, 154, 108, 0.4);
    color: #3E2A20;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: rgba(196, 154, 108, 0.25);
    transform: scale(1.05);
}

.service-content {
    padding: clamp(20px, 4vw, 40px);
}

.service-description {
    color: #5A4032;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: clamp(20px, 4vw, 30px);
    padding: clamp(15px, 3vw, 20px);
    background: linear-gradient(
        135deg,
        rgba(196, 154, 108, 0.08),
        transparent
    );
    border-radius: 12px;
    border-left: 4px solid #C49A6C;
    word-wrap: break-word;
}

/* ===== SZOLGÁLTATÁS SZEKCIÓK ===== */
.service-section {
    margin-bottom: clamp(25px, 5vw, 35px);
}

.service-section h3 {
    color: #3E2A20;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(196, 154, 108, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.service-section h3 i {
    color: #C49A6C;
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
}

/* ===== KETTŐS OSZLOP LAYOUT ===== */
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin: clamp(20px, 4vw, 25px) 0;
}

/* ===== LISTA STÍLUSOK ===== */
.benefits-list,
.process-list {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.process-list li {
    padding: 12px 15px 12px 40px;
    margin-bottom: 10px;
    position: relative;
    color: #5A4032;
    line-height: 1.6;
    background: linear-gradient(
        90deg,
        rgba(196, 154, 108, 0.08),
        transparent
    );
    border-radius: 8px;
    word-wrap: break-word;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.benefits-list li::before,
.process-list li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #B8825C;
    font-weight: bold;
    font-size: 1.2rem;
    background-color: rgba(196, 154, 108, 0.15);
    width: clamp(24px, 5vw, 28px);
    height: clamp(24px, 5vw, 28px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-list li::before {
    content: "→";
}

/* ===== KINEK AJÁNLOM ===== */
.target-audience {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 15px);
    margin-top: 15px;
}

.target-item {
    background-color: rgba(196, 154, 108, 0.1);
    padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
    border-radius: 25px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #3E2A20;
    border: 1px solid rgba(196, 154, 108, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.target-item:hover {
    background-color: rgba(196, 154, 108, 0.2);
    transform: translateY(-2px);
}

/* ===== HIREFELHŐK ===== */
.cloud-list {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 15px);
    margin-top: 15px;
}

.cloud-item {
    background: linear-gradient(135deg, rgba(196, 154, 108, 0.1), rgba(224, 168, 77, 0.05));
    padding: clamp(8px, 2vw, 12px) clamp(15px, 3vw, 22px);
    border-radius: 30px;
    color: #3E2A20;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    border: 1px solid rgba(196, 154, 108, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.cloud-item:hover {
    background: linear-gradient(135deg, rgba(196, 154, 108, 0.2), rgba(224, 168, 77, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 154, 108, 0.2);
}

/* ===== INFO BOX ===== */
.info-box {
    background-color: rgba(196, 154, 108, 0.08);
    padding: clamp(15px, 3vw, 25px);
    border-radius: 12px;
    border-left: 5px solid #E0A84D;
    margin: clamp(20px, 4vw, 30px) 0;
}

.info-box h4 {
    color: #3E2A20;
    margin-bottom: 15px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.info-box h4 i {
    color: #E0A84D;
}

.info-box p {
    color: #5A4032;
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    word-wrap: break-word;
}

/* ===== ÁRAK MEGJELENÍTÉSE – PRICING INFO ===== */
.pricing-info {
    background: linear-gradient(135deg, rgba(196, 154, 108, 0.05), rgba(224, 168, 77, 0.02));
    border-radius: 16px;
    padding: clamp(15px, 3vw, 25px);
    border: 1px solid rgba(196, 154, 108, 0.2);
    box-shadow: 0 4px 12px rgba(78, 54, 41, 0.05);
    margin-top: 10px;
}

.price-item {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(196, 154, 108, 0.15);
    transition: background-color 0.2s ease;
}

.price-item:hover {
    background-color: rgba(196, 154, 108, 0.02);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
    color: #3E2A20;
    min-width: 250px;
    font-size: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 5px;
}

.price-label::before {
    content: "•";
    color: #C49A6C;
    font-weight: bold;
    position: absolute;
    left: -5px;
    font-size: 1.2rem;
}

.price-value {
    font-weight: 700;
    color: #B8825C;
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(196, 154, 108, 0.1), rgba(224, 168, 77, 0.1));
    padding: 6px 16px;
    border-radius: 40px;
    display: inline-block;
    border: 1px solid rgba(196, 154, 108, 0.2);
    box-shadow: 0 2px 6px rgba(78, 54, 41, 0.05);
    letter-spacing: 0.5px;
}

.price-note {
    font-size: 0.95rem;
    color: #5A4032;
    font-style: italic;
    margin-top: 15px;
    padding: 15px 15px 5px;
    background-color: rgba(196, 154, 108, 0.03);
    border-radius: 10px;
    border-left: 3px solid #E0A84D;
    line-height: 1.6;
}

.price-note i {
    color: #C49A6C;
    margin-right: 8px;
    font-size: 1rem;
}

/* ===== CTA SZEKCIÓ ===== */
.reference-cta {
    text-align: center;
    background: linear-gradient(135deg, #838f88, #454e48);
    padding: clamp(40px, 8vw, 60px) clamp(20px, 5vw, 30px);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(78, 54, 41, 0.35);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.reference-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #ebebeb;
    margin-bottom: 20px;
    line-height: 1.3;
}

.reference-cta p {
    color: #ebebeb;
    max-width: min(650px, 90vw);
    margin: 0 auto 35px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1F4F3F;
    color: #F7F3ED;
    padding: clamp(12px, 3vw, 16px) clamp(24px, 5vw, 36px);
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #3E2A20;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(43, 30, 23, 0.4);
}

.cta-button i {
    font-size: 1.2rem;
}

/* ===============================
   RESPONZÍV TÖRÉSPONTOK
   =============================== */

@media (max-width: 768px) {
    body {
        padding-top: 50px;
    }
    
    #main-content-container {
        padding: 30px 20px;
    }
    
    .page-header {
        margin-bottom: 50px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header h1::after {
        width: 100px;
        height: 3px;
        margin-top: 15px;
    }
    
    .page-header .subtitle {
        font-size: 1.1rem;
    }
    
    .services-container {
        gap: 45px;
        margin-bottom: 60px;
    }
    
    .service-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reference-cta {
        padding: 40px 20px;
    }
    
    .reference-cta h2 {
        font-size: 1.7rem;
    }
    
    /* Árak reszponzív viselkedése */
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 10px;
    }
    
    .price-label {
        min-width: auto;
        font-size: 0.95rem;
    }
    
    .price-label::before {
        display: none;
    }
    
    .price-label {
        padding-left: 0;
        font-weight: 700;
    }
    
    .price-value {
        font-size: 1.1rem;
        padding: 5px 14px;
        margin-left: 0;
        width: fit-content;
    }
    
    .price-note {
        font-size: 0.9rem;
        padding: 12px 12px 5px;
    }
}

@media (max-width: 576px) {
    #main-content-container {
        padding: 20px 15px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .subtitle {
        font-size: 1rem;
    }
    
    .service-header h2 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-description {
        font-size: 0.95rem;
        padding: 12px;
        border-left-width: 3px;
    }
    
    .benefits-list li,
    .process-list li {
        padding-left: 30px;
        font-size: 0.9rem;
    }
    
    .benefits-list li::before,
    .process-list li::before {
        width: 22px;
        height: 22px;
        font-size: 1rem;
    }
    
    .reference-cta {
        padding: 30px 15px;
    }
    
    .reference-cta h2 {
        font-size: 1.5rem;
    }
    
    /* Árak finomhangolása kis mobilra */
    .pricing-info {
        padding: 12px;
    }
    
    .price-item {
        padding: 10px 8px;
    }
    
    .price-value {
        font-size: 1rem;
        padding: 4px 12px;
    }
    
    .price-note {
        font-size: 0.85rem;
        padding: 10px 10px 5px;
    }
}

@media (max-width: 350px) {
    #main-content-container {
        padding: 15px 10px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header h1::after {
        width: 70px;
        height: 3px;
        margin-top: 10px;
    }
    
    .service-header {
        padding: 15px;
    }
    
    .service-header h2 {
        font-size: 1.2rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .benefits-list li,
    .process-list li {
        padding-left: 28px;
        font-size: 0.85rem;
    }
    
    .benefits-list li::before,
    .process-list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
        left: 8px;
    }
    
    .reference-cta h2 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 10px 20px;
        white-space: normal;
        min-height: 44px;
    }
    
    /* Árak extra kis képernyőre */
    .price-label {
        font-size: 0.9rem;
    }
    
    .price-value {
        font-size: 0.95rem;
        padding: 4px 10px;
    }
}

@media (min-width: 1200px) {
    #main-content-container {
        padding: 60px 40px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    #main-content-container {
        padding: 20px;
    }
    
    .page-header {
        margin-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* ===============================
   EXTRA FINOMHANGOLÁSOK
   =============================== */

/* Egymás mellett lévő árak jobb megjelenése */
.price-item:first-child {
    padding-top: 5px;
}

/* Ha több ártétel van, a note ne legyen túl közel */
.price-note + .price-item {
    margin-top: 10px;
    border-top: 1px dashed rgba(196, 154, 108, 0.2);
}

/* Dísztőelem a pricing-info tetejére */
.pricing-info {
    position: relative;
    overflow: hidden;
}

.pricing-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(196, 154, 108, 0.1), transparent 70%);
    border-radius: 0 16px 0 0;
    pointer-events: none;
}

/* Ha a price-item mellett van note, akkor a note-ot kicsit elválasztjuk */
.price-item + .price-note {
    margin-top: 20px;
    border-top: 1px dashed rgba(196, 154, 108, 0.2);
    padding-top: 15px;
}