/* ==========================================================================
   JÓTETŐK - TELJES KÖRŰ, PRÉMIUM STÍLUSLAP
   Minden javítással: Rólunk, Footer, Szolgáltatások, Mobil nézet, Ikonok
   ========================================================================== */

/* 1. ALAPOK ÉS RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #F7F8F8;
  color: #52677B;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: #030303; }
.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.section-padding { padding: 100px 0; }
.accent { color: #CC7C65; }
.bg-soft { background-color: #f0f2f5; }
.text-center { text-align: center; }

/* 2. TOPBAR */
.topbar { background: #52677B; color: #F7F8F8; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; flex-wrap: wrap; gap: 10px; }
.topbar a { color: white; font-weight: 500; text-decoration: none; transition: color 0.3s; }
.topbar a:hover { color: #CC7C65; }

/* 3. NAVIGÁCIÓ ÉS MOBIL MENÜ */
.nav { 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    background: rgba(247, 248, 248, 0.95); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #D2D9E1; 
    min-height: 90px;
    display: flex; 
    align-items: center; 
    padding: 5px 0;
}

.nav .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { max-height: 60px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { 
    font-weight: 600; 
    color: #030303; 
    text-decoration: none; 
    font-size: 14px; 
    transition: 0.3s;
}
.nav-links a:hover { color: #CC7C65; }

.mobile-toggle { 
    display: none; 
    flex-direction: column; 
    gap: 6px; 
    background: none; 
    border: none; 
    cursor: pointer; 
}
.mobile-toggle .bar { width: 28px; height: 3px; background: #030303; border-radius: 4px; }

@media (max-width: 1024px) {
    .mobile-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #F7F8F8;
        padding: 30px;
        border-bottom: 3px solid #CC7C65;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        gap: 20px;
    }
    .nav-links.active { display: flex; }
}

/* 4. HERO SZEKCIÓ */
.hero { min-height: 85vh; display: flex; align-items: center; padding: 120px 0; position: relative; }
.hero-content { max-width: 750px; position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: #CC7C65; margin-bottom: 15px; font-size: 14px; }
.hero h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.1; margin-bottom: 25px; }
.lead { font-size: 19px; margin-bottom: 40px; color: #444; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

/* 5. SZOLGÁLTATÁSOK (ZIG-ZAG GRID) */
.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(32px, 4vw, 42px); margin-bottom: 20px; }

.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 120px; align-items: center; }
.service-img img { border-radius: 24px; width: 100%; height: 500px; object-fit: cover; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.service-text h3 { font-size: 32px; margin: 20px 0; line-height: 1.3; }
.service-num { font-size: 80px; color: #D2D9E1; font-weight: 800; opacity: 0.4; display: block; line-height: 1; }

.service-features { list-style: none; margin-top: 25px; }
.service-features li { position: relative; padding-left: 35px; margin-bottom: 15px; font-weight: 500; font-size: 16px; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: #CC7C65; font-weight: bold; font-size: 20px; }

@media (min-width: 769px) {
    .service-row.reverse .service-img { grid-column: 2; }
    .service-row.reverse .service-text { grid-column: 1; grid-row: 1; }
}

/* 6. GARANCIA ÉS ELŐNYÖK */
.guarantee-box { 
    background: #52677B; color: white; padding: 70px 40px; border-radius: 32px; text-align: center; 
    box-shadow: 0 30px 60px rgba(82, 103, 123, 0.25); margin-bottom: 40px;
}
.guarantee-box h2 { color: white; margin-bottom: 20px; font-size: clamp(28px, 4vw, 40px); }
.guarantee-box p { font-size: 18px; max-width: 900px; margin: 0 auto; opacity: 0.9; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.benefit-card { background: white; padding: 50px 40px; border-radius: 24px; text-align: center; transition: 0.4s; border: 1px solid #eee; }
.benefit-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.06); border-color: transparent; }
.benefit-icon { font-size: 50px; margin-bottom: 25px; display: block; }

/* 7. RÓLUNK SZEKCIÓ */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: clamp(30px, 4vw, 38px); margin: 20px 0; }
.about-text p { font-size: 17px; margin-bottom: 20px; }
.about-image img { width: 100%; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* 8. VÉLEMÉNYEK */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.review-card { background: white; padding: 40px; border-radius: 20px; border-top: 6px solid #CC7C65; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.stars { color: #FFB100; margin-bottom: 20px; font-size: 20px; letter-spacing: 2px; }

/* 9. GALÉRIA */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 18px; overflow: hidden; cursor: pointer; height: 280px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover img { transform: scale(1.1); }

/* 10. KAPCSOLAT */
.contact-card { background: white; border-radius: 40px; overflow: hidden; box-shadow: 0 50px 100px rgba(0,0,0,0.08); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; }
.contact-info { background: #52677B; color: white; padding: 80px 60px; }
.contact-info h2 { color: white; margin-bottom: 30px; font-size: 36px; }
.contact-list { list-style: none; margin-top: 40px; }
.contact-list li { margin-bottom: 25px; font-size: 18px; }
.contact-list a { color: white; text-decoration: none; font-weight: 700; font-size: 20px; transition: 0.3s; }
.contact-list a:hover { color: #CC7C65; }

.contact-form-wrap { padding: 80px 60px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.field { margin-bottom: 25px; }
.field label { display: block; font-weight: 700; margin-bottom: 10px; font-size: 14px; color: #030303; }
.field input, .field textarea { 
    width: 100%; padding: 16px; border: 1px solid #D2D9E1; border-radius: 12px; font-family: inherit; font-size: 16px; transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: #CC7C65; }

/* ADATVÉDELMI CHECKBOX JAVÍTÁSA */
.privacy-check { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    font-size: 14px; 
    margin-top: 20px; 
    cursor: pointer;
}
.privacy-check input[type="checkbox"] { 
    width: 20px !important; 
    height: 20px !important; 
    flex-shrink: 0; 
    margin-top: 2px; 
    cursor: pointer;
    accent-color: #CC7C65;
}
.privacy-check label { 
    font-weight: 500; 
    line-height: 1.5; 
    cursor: pointer;
    color: #52677B;
}
.privacy-check a { 
    color: #CC7C65; 
    text-decoration: none; 
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}
.privacy-check a:hover { 
    border-bottom-color: #CC7C65;
}

/* 11. LIGHTBOX */
.lightbox { 
    display: none; position: fixed; z-index: 2000; inset: 0; background: rgba(0,0,0,0.96); 
    align-items: center; justify-content: center; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 100%; max-height: 80vh; border-radius: 12px; border: 4px solid white; box-shadow: 0 0 60px rgba(0,0,0,0.8); }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: white; font-size: 60px; cursor: pointer; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; color: white; font-size: 40px; background: none; border: none; cursor: pointer; padding: 20px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* 12. LEBEGŐ GOMBOK */
.float-btn { 
    position: fixed; right: 30px; width: 65px; height: 65px; border-radius: 50%; 
    background: #CC7C65; color: white; display: flex; align-items: center; justify-content: center; 
    text-decoration: none; box-shadow: 0 10px 30px rgba(204, 124, 101, 0.4); z-index: 1500; transition: 0.4s; 
}
.btn-call { bottom: 30px; font-size: 30px; }
.btn-call:hover { transform: scale(1.1) rotate(15deg); }
.btn-top { bottom: 110px; font-size: 24px; background: #52677B; opacity: 0; pointer-events: none; }
.btn-top.visible { opacity: 1; pointer-events: auto; }

/* 13. FOOTER JAVÍTOTT (4 OSZLOPOS) */
.footer { background: #030303; color: #F7F8F8; padding: 100px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 50px; }

.footer-column h4 { color: white; font-size: 18px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-column h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: #CC7C65; }

.footer-logo { height: 50px; margin-bottom: 20px; border-radius: 4px; }
.footer-brand p { color: #889; font-size: 14px; line-height: 1.6; }

.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 12px; }
.footer-list a { color: #889; text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-list a:hover { color: #CC7C65; padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; font-size: 14px; color: #889; }
.footer-contact li { margin-bottom: 15px; }
.footer-contact a { color: white; text-decoration: none; font-weight: 600; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 13px; color: #667; }

/* KÖZÖSSÉGI MÉDIA IKONOK STÍLUSA (TÖKÉLETESÍTVE) */
.social-links, .social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a, .social-links-footer a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover, .social-links-footer a:hover {
    background: #CC7C65;
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-links a svg, .social-links-footer a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

/* 14. MOBIL FINOMHANGOLÁS */
@media (max-width: 1024px) {
    .about-flex, .service-row { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .hero { padding: 80px 0; text-align: center; }
    .hero-actions { justify-content: center; }
    .service-img img { height: 300px; }
    .contact-info, .contact-form-wrap { padding: 40px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* GOMBOK */
.btn { display: inline-block; padding: 18px 42px; border-radius: 50px; font-weight: 700; transition: 0.4s; text-decoration: none; text-align: center; border: none; cursor: pointer; font-size: 16px; }
.btn-primary { background: #CC7C65; color: white; box-shadow: 0 10px 25px rgba(204, 124, 101, 0.3); }
.btn-primary:hover { background: #b56b55; transform: translateY(-4px); box-shadow: 0 15px 35px rgba(204, 124, 101, 0.5); }
.btn-outline { border: 2px solid #CC7C65; color: #CC7C65; background: transparent; }
.btn-outline:hover { background: #CC7C65; color: white; }
.full-width { width: 100%; }

/* ANIMÁCIÓK */
.reveal { opacity: 0; transform: translateY(50px); transition: 1.2s cubic-bezier(0.215, 0.61, 0.355, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   NAV CTA HOVER JAVÍTÁS
   ========================================================================== */

.nav-links a.btn,
.nav-links a.btn-primary,
.nav-links a.btn-primary:visited {
    color: #ffffff;
}

.nav-links a.btn:hover,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus {
    color: #ffffff;
    background: #b56b55;
}