body {
    margin:0;
    font-family: 'Montserrat', sans-serif;
    background:#fff;
    color:#1a1a1a;
}

.container {
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header {
    position:fixed;
    width:100%;
    background:rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
    z-index:1000;
}

.nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo {
    font-weight:800;
    font-size:20px;
    color:#0A4DBF;
}

nav a {
    margin-left:25px;
    text-decoration:none;
    color:#333;
    font-weight:600;
}

.lang-btn {
    border:2px solid #0A4DBF;
    padding:6px 12px;
    border-radius:5px;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* háttérkép réteg */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/hero.jpg') top center/cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
    z-index: 1;
}

/* sötét overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* tartalom mindig felül */
.hero-content {
    position: relative;
    z-index: 3;
}

.overlay {
    background:rgba(0,0,0,0.4);
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content h1 {
    color:#fff;
    font-size:48px;
    font-weight:800;
}

.hero-content p {
    color:#fff;
    margin:20px 0;
}

.btn-primary {
    background:#0A4DBF;
    color:#fff;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
}

.services {
    padding:100px 0;
}


@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.card {
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact {
    background:#f4f7fb;
    padding:80px 0;
    text-align:center;
}

.cookie-bar {
    position:fixed;
    bottom:0;
    width:100%;
    background:#111;
    color:#fff;
    padding:15px;
    text-align:center;
}
.hamburger {
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.hamburger span {
    width:25px;
    height:3px;
    background:#0A4DBF;
    margin:4px 0;
    transition:0.3s;
}

/* Mobil */
@media(max-width:900px){

    nav {
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100vh;
        background:white;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        transform:translateY(-100%);
        transition:0.4s;
    }

    nav.active {
        transform:translateY(0);
    }

    nav a {
        margin:20px 0;
        font-size:22px;
    }

    .hamburger {
        display:flex;
    }
}
.contact-wrapper {
    display:flex;
    flex-wrap:wrap;
    gap:40px;
    align-items:center;
    margin-top:40px;
}

#map {
    width:100%;
    max-width:600px;
    height:400px;
    border-radius:10px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

@media(max-width:900px){
    .contact-wrapper {
        flex-direction:column;
    }
}
.whatsapp {
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    font-size:26px;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    z-index:999;
    animation:pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow:0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow:0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp:hover {
    transform:scale(1.1);
}
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    z-index: 99999;
    animation: pulse 2s infinite;
}

.whatsapp img {
    width: 34px;
    height: 34px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 25px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp:hover {
    transform: scale(1.1);
}
.logo img {
    height: 70px;
    width: auto;
    display: block;
}
#backToTop {
    position: fixed;
    bottom: 110px; /* WhatsApp fölött */
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #0A4DBF;
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 9999;
}

#backToTop:hover {
    transform: scale(1.1);
}
.references {
    padding: 100px 0;
}
.gallery {
    column-count: 3;
    column-gap: 25px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
@media (max-width:900px){
    .gallery {
        column-count: 2;
    }
}

@media (max-width:500px){
    .gallery {
        column-count: 1;
    }
}
@keyframes heroZoom {
    0% {
        transform: scale(1);
        filter: brightness(0.9);
    }
    100% {
        transform: scale(1.12);
        filter: brightness(1);
    }
}
/* KÖZÖSSÉGI IKONOK */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    background: #0b2d2f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons svg {
    width: 22px;
    height: 22px;
    fill: white;
}


/* EMAIL ŰRLAP */
/* EMAIL ŰRLAP – TELJES SZÉLESSÉG */
.email-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;   /* középre igazít */
}

.email-form input,
.email-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.email-form textarea {
    min-height: 120px;
}

.email-form button {
    background: #c9972b;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
.success-box {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #2ecc71;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.4s ease;
    z-index: 9999;
}

.success-box.show {
    opacity: 1;
    transform: translateY(0);
}
/* =========================
   PRÉMIUM CONTACT LAYOUT
========================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-right {
    display: flex;
    justify-content: flex-end;
}
/* BAL OLDAL */
.contact-left h3 {
    margin-bottom: 20px;
}

.contact-left p {
    margin-bottom: 12px;
    font-size: 15px;
}


/* JOBB OLDAL – EMAIL CARD */
.contact-right {
    background: white;
    padding: 40px;
    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.08),
        0 5px 15px rgba(0,0,0,0.05);
}


/* FORM */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.email-form h3 {
    margin-bottom: 10px;
}

.email-form input,
.email-form textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.email-form textarea {
    min-height: 140px;
}

.email-form button {
    background: #0b2d2f;
    color: white;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
@media (max-width: 900px) {

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-right {
        padding: 30px;
    }

}

#map-full {
    width: 100%;
    height: 550px;
    margin-top: 60px;
}
.callback-box {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    max-width: 380px;
}

.callback-box h3 {
    margin-bottom: 6px;
}

.callback-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.callback-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.callback-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #0b2d2f;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.callback-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.callback-box {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    max-width: 380px;
}

.callback-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.callback-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #0b2d2f;
    color: white;
    font-weight: 600;
    cursor: pointer;
}
.callback-success {
    background:#2ecc71 !important;
}

.callback-success::after {
    content:" ✓";
    font-weight:700;
}
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-right {
        justify-content: center;
    }
}
/* ELŐTAG */
.label {
    font-weight: 700;
    color: #1f1f1f;
    margin-right: 6px;
}
.contact-left a {
    color: #0b2d2f;
    text-decoration: none;
    font-weight: 600;
}
.contact-left a:hover {
    color: #d4a537;
    text-decoration: underline;
}
/* ===== BEMUTATKOZÁS ===== */

.about {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.about .container {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0b2d2f;
}

.about p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}
 .services-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
/* ===== SERVICES 2x2 FIX ===== */

.services-grid{
    display:grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap:30px;
}

.service-box{
    width:auto !important;
    display:block !important;
}
/* ===== SZOLGÁLTATÁSOK 2x2 FIX ===== */

.services .container{
    max-width:1100px;
    margin:0 auto;
}

.services-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
}

.service-box{
    width:100%;
}