/* Változók és Alapbeállítások */
:root {
    --main-blue: #004a99;
    --light-blue: #00c6ff;
    --accent-green: #28a745;
    --bg-light: #f4f7f9;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- SŰRŰ FEJLÉC --- */
header {
    background: linear-gradient(135deg, var(--main-blue), var(--light-blue));
    color: white;
    padding: 40px 0 60px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.shimmer-text {
    font-size: 2.2rem;
    margin: 0;
    background: linear-gradient(to right, #fff 20%, var(--light-blue) 40%, #fff 60%, var(--light-blue) 80%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer { to { background-position: 200% center; } }

/* --- KOMPAKT FEATURES SÁV --- */
.compact-features {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-top: -30px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
}

.feature-item-mini { display: flex; align-items: center; gap: 8px; }
.feature-item-mini h4 { margin: 0; font-size: 0.85rem; color: var(--main-blue); }
.feature-item-mini p { margin: 0; font-size: 0.7rem; color: #777; }
.feature-item-mini .icon { font-size: 1.2rem; }

/* --- KLÍMA GRID --- */
.section-title-mini { text-align: center; margin: 40px 0 20px; color: var(--main-blue); font-size: 1.6rem; }

.klima-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.glass-card {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
    border-radius: 12px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.klima-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

.card-image-container {
    width: 100%;
    height: 160px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.klima-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.klima-card:hover .klima-img { transform: scale(1.08); }

.klima-info { 
    padding: 15px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}

.klima-info h3 { font-size: 1.1rem; margin: 0 0 5px 0; color: var(--main-blue); }
.specs { font-size: 0.75rem; color: #666; font-weight: bold; margin-bottom: 10px; }
.price { font-size: 1.3rem; color: var(--main-blue); font-weight: 800; margin-top: auto; margin-bottom: 15px; }

.badge {
    position: absolute; top: 10px; right: 10px; background: var(--accent-green);
    color: white; padding: 3px 10px; border-radius: 8px; font-size: 0.7rem; font-weight: bold;
    z-index: 5;
}

/* --- GOMBOK ÉS CSOPORTOK --- */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-select, .btn-data, .cta-button-mini {
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-select { background: var(--main-blue); color: white; }
.btn-select:hover { background: #003366; }

.btn-data {
    background: white;
    border: 1px solid var(--main-blue);
    color: var(--main-blue);
}
.btn-data:hover { background: var(--main-blue); color: white; }

.cta-button-mini { background: var(--accent-green); color: white; width: 100%; }

/* --- SZOLGÁLTATÁSOK --- */
#services { margin-top: 50px; }
.services-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card-mini { padding: 20px; text-align: center; }
.service-card-mini h4 { margin: 0 0 10px 0; font-size: 1.1rem; color: var(--main-blue); }
.service-card-mini p { margin: 0; font-size: 0.85rem; color: #666; }

/* --- ALSÓ RÉSZ --- */
.bottom-flex { display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.flex-item { flex: 1; min-width: 300px; }

.price-table { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.price-table td { padding: 15px; border-bottom: 1px solid #eee; font-size: 0.95rem; }
.price-table td:last-child { text-align: right; font-weight: bold; color: var(--main-blue); }

.contact-box { padding: 25px; }
.contact-form input { 
    padding: 12px; 
    margin-bottom: 15px; 
    width: 100%; 
    box-sizing: border-box; 
    border-radius: 6px; 
    border: 1px solid #ddd;
    font-size: 1rem;
}

/* --- EFFEKTEK --- */
.cta-button { background: var(--accent-green); color: white; padding: 12px 30px; text-decoration: none; border-radius: 50px; font-weight: bold; display: inline-block; transition: 0.3s; }
.cta-button:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4); }

.shine-effect { position: relative; overflow: hidden; }
.shine-effect::after {
    content: ''; position: absolute; top: -50%; left: -60%; width: 20%; height: 200%;
    background: rgba(255, 255, 255, 0.4); transform: rotate(30deg); animation: light-sweep 4s infinite;
}
@keyframes light-sweep { 20% { left: 120%; } 100% { left: 120%; } }

/* --- LÁBLÉC --- */
footer { background: #1a1a1a; color: #888; padding: 30px 0; text-align: center; font-size: 0.85rem; margin-top: 50px; }
.privacy-link { color: #aaa; text-decoration: none; display: inline-block; margin-top: 15px; border-bottom: 1px dashed #555; }
.privacy-link:hover { color: var(--light-blue); border-color: var(--light-blue); }
.privacy-text { 
    font-size: 0.75rem; 
    max-width: 700px; 
    margin: 20px auto 0; 
    line-height: 1.6;
    opacity: 0.8;
}

/* --- MOBIL NÉZET --- */
@media (max-width: 768px) {
    header { padding: 30px 0 50px; }
    .shimmer-text { font-size: 1.8rem; }
    .services-grid-mini { grid-template-columns: 1fr; }
    .compact-features { flex-direction: column; gap: 15px; align-items: flex-start; margin-left: 15px; margin-right: 15px; }
    .klima-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .klima-info h3 { font-size: 0.9rem; }
    .price { font-size: 1rem; }
}

@media (max-width: 480px) {
    .klima-grid { grid-template-columns: 1fr; } /* Nagyon kicsi mobilon 1 oszlop */
}