/*==================================================
  Garbi-Csel Bt.
  style.css
==================================================*/

/*================ RESET ================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8fafc;
    color:#1f2937;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
textarea{
    font:inherit;
}

/*================ VARIABLES ================*/

:root{

    --primary:#0f4c81;
    --primary-dark:#09365d;

    --secondary:#f59e0b;

    --dark:#0f172a;

    --light:#f8fafc;

    --white:#ffffff;

    --text:#334155;

    --gray:#64748b;

    --border:#e5e7eb;

    --shadow:0 10px 35px rgba(0,0,0,.08);

    --radius:16px;

    --transition:.30s;

    --max-width:1240px;

}

/*================ CONTAINER ================*/

.container{

    width:min(92%, var(--max-width));

    margin:auto;

}

/*================ SECTION ================*/

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    max-width:900px;

    margin:0 auto 60px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:10px;

}

.section-title h2{

    font-size:2.5rem;

    color:var(--dark);

    margin-bottom:20px;

    line-height:1.2;

}

.section-title p{

    color:var(--gray);

    font-size:1.1rem;

}

/*================ TOPBAR ================*/

.topbar{

    background:var(--dark);

    color:white;

    padding:10px 0;

    font-size:.95rem;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.topbar a{

    color:white;

}

/*================ HEADER ================*/

header{

    position:sticky;

    top:0;

    z-index:999;

    background:white;

    box-shadow:0 3px 15px rgba(0,0,0,.05);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:90px;

}

.logo img{
    height:55px;
    width:auto;
    max-width:220px;
    display:block;
}
.nav-menu{

    display:flex;

    gap:30px;

}

.nav-menu a{

    font-weight:700;

    transition:var(--transition);

    color:var(--dark);

}

.nav-menu a:hover{

    color:var(--secondary);

}

.menu-toggle{

    display:none;

    font-size:2rem;

    cursor:pointer;

}

/*================ HERO ================*/

.hero{

    background:linear-gradient(135deg,#0f172a,#0f4c81);

    color:white;

    padding:120px 0;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 18px;

    border-radius:40px;

    margin-bottom:25px;

    font-weight:700;

}

.hero h1{

    font-size:3.5rem;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    font-size:1.15rem;

    color:#d6e4f5;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:var(--radius);

    padding:35px;

}

.hero-card h3{

    margin-bottom:20px;

    font-size:1.5rem;

}

.hero-card ul li{

    margin-bottom:15px;

    padding-left:30px;

    position:relative;

}

.hero-card ul li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#22c55e;

    font-weight:bold;

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.hero-stats div{

    text-align:center;

}

.hero-stats h2{

    font-size:2rem;

    color:#fbbf24;

}

.hero-stats p{

    margin-top:5px;

    margin-bottom:0;

    font-size:.95rem;

    color:#dbeafe;

}
/*================ BUTTONS ================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 32px;

    border-radius:50px;

    font-weight:700;

    transition:var(--transition);

    cursor:pointer;

}

.btn-primary{

    background:var(--secondary);

    color:#111827;

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    background:#d97706;

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.35);

    color:white;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.12);

}

.btn-outline{

    display:inline-block;

    margin-top:20px;

    padding:12px 24px;

    border:2px solid var(--primary);

    border-radius:40px;

    color:var(--primary);

    font-weight:700;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

/*================ QUICK SERVICES ================*/

.quick-services{

    background:white;

}

.quick-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.quick-item{

    background:white;

    border-radius:var(--radius);

    padding:35px;

    text-align:center;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.quick-item:hover{

    transform:translateY(-8px);

}

.quick-item h3{

    color:var(--dark);

    margin-bottom:15px;

    font-size:1.3rem;

}

.quick-item p{

    color:var(--gray);

}

/*================ ABOUT ================*/

.about{

    background:#f8fafc;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.about-content h3{

    font-size:2rem;

    color:var(--dark);

    margin-bottom:20px;

}

.about-content p{

    margin-bottom:20px;

    color:var(--text);

}

/*================ STATS ================*/

.stats{

    background:var(--primary);

    color:white;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

}

.stat-card h2{

    font-size:3rem;

    color:var(--secondary);

    margin-bottom:10px;

}

.stat-card p{

    font-size:1.05rem;

}

/*================ WHY US ================*/

.why-us{

    background:white;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-icon{

    width:70px;

    height:70px;

    margin-bottom:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#e8f3ff;

    font-size:2rem;

}

.service-card h3{

    margin-bottom:15px;

    color:var(--dark);

    font-size:1.4rem;

}

.service-card p{

    color:var(--gray);

}

/*================ TIMELINE ================*/

.timeline{

    background:#eef5fb;

}

.timeline-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.timeline-item{

    background:white;

    padding:35px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    text-align:center;

    border-top:5px solid var(--secondary);

}

.timeline-item h3{

    color:var(--primary);

    font-size:2rem;

    margin-bottom:15px;

}

.timeline-item p{

    color:var(--text);

}
/*================ SERVICES =================*/

.services{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:var(--radius);

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.service-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h3{

    margin-bottom:15px;

    color:var(--dark);

    font-size:1.45rem;

}

.service-content p{

    color:var(--gray);

    margin-bottom:20px;

}

/*================ BRANDS =================*/

.brands{

    background:#f8fafc;

}

.brand-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

}

.brand-item{

    background:white;

    border:1px solid var(--border);

    border-radius:14px;

    padding:25px;

    text-align:center;

    font-weight:700;

    color:var(--primary);

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.brand-item:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-5px);

}

/*================ HIGHLIGHT =================*/

.highlight{

    background:linear-gradient(135deg,#0f4c81,#0f172a);

    color:white;

}

.highlight-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.highlight span{

    color:#fbbf24;

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:2px;

}

.highlight h2{

    margin:18px 0 25px;

    font-size:2.6rem;

    line-height:1.2;

}

.highlight p{

    color:#dbeafe;

    margin-bottom:25px;

}

.highlight img{

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.check-list{

    margin:30px 0;

}

.check-list li{

    margin-bottom:15px;

    padding-left:30px;

    position:relative;

}

.check-list li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#22c55e;

    font-weight:bold;

}

/*================ EQUIPMENT =================*/

.equipment{

    background:#ffffff;

}

/*================ CTA =================*/

.cta{

    background:linear-gradient(135deg,#0f172a,#1e3a5f);

    text-align:center;

    color:white;

}

.cta h2{

    font-size:2.8rem;

    margin-bottom:20px;

}

.cta p{

    max-width:760px;

    margin:0 auto 40px;

    color:#dbeafe;

    font-size:1.15rem;

}
/*==================================================
=               REFERENCIÁK / GALÉRIA
==================================================*/

.references{
    background:#f8fafc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.gallery-card{
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border:1px solid var(--border);
}

.gallery-card:hover{
    transform:translateY(-8px);
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.gallery-content{
    padding:28px;
}

.gallery-content h3{
    margin-bottom:15px;
    color:var(--dark);
    font-size:1.45rem;
}

.gallery-content p{
    color:var(--gray);
    line-height:1.7;
}

/*==================================================
=               ELŐTTE - UTÁNA
==================================================*/

.before-after{
    background:#ffffff;
}

.before-after-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.before-card,
.after-card{

    background:white;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    border:1px solid var(--border);

    transition:var(--transition);

}

.before-card:hover,
.after-card:hover{

    transform:translateY(-8px);

}

.before-card img,
.after-card img{

    width:100%;

    height:420px;

    object-fit:cover;

}

.before-card h3,
.after-card h3{

    text-align:center;

    padding:25px;

    color:var(--primary);

    font-size:1.4rem;

}

/*==================================================
=                   GYIK
==================================================*/

.faq{

    background:#f8fafc;

}

.faq-box{

    background:white;

    padding:30px;

    border-radius:var(--radius);

    margin-bottom:20px;

    border-left:5px solid var(--secondary);

    box-shadow:var(--shadow);

}

.faq-box h3{

    color:var(--dark);

    margin-bottom:15px;

    font-size:1.35rem;

}

.faq-box p{

    color:var(--gray);

}

/*==================================================
=                  CONTACT
==================================================*/

.contact{

    background:white;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.contact-card{

    background:#fff;

    border-radius:var(--radius);

    padding:40px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.contact-card h3{

    color:var(--dark);

    margin-bottom:25px;

    font-size:1.8rem;

}

.contact-list li{

    margin-bottom:20px;

    color:var(--text);

    line-height:1.8;

}

.contact-list strong{

    color:var(--primary);

}

.contact-list a{

    color:var(--primary);

    font-weight:700;

}

.contact-list a:hover{

    color:var(--secondary);

}

/*==================================================
=                   MAP
==================================================*/

.map{

    padding:0;

}

.map iframe{

    width:100%;

    height:500px;

    border:0;

    display:block;

}
/*==================================================
=                    FOOTER
==================================================*/

footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-grid h3{

    color:#ffffff;

    margin-bottom:25px;

    font-size:1.4rem;

}

.footer-grid p{

    line-height:1.9;

    color:#cbd5e1;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:#cbd5e1;

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--secondary);

    padding-left:6px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    text-align:center;

    color:#94a3b8;

    font-size:.95rem;

}

/*==================================================
=               FLOATING PHONE
==================================================*/

.floating-phone{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#22c55e;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:9999;

    transition:var(--transition);

    animation:pulse 2s infinite;

}

.floating-phone:hover{

    transform:scale(1.08);

}

/*==================================================
=               SCROLL TO TOP
==================================================*/

.scroll-top{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:24px;

    box-shadow:var(--shadow);

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:9998;

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
=                  ANIMATIONS
==================================================*/

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(34,197,94,.55);

    }

    70%{

        box-shadow:0 0 0 18px rgba(34,197,94,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(34,197,94,0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease both;

}

/*==================================================
=               RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .hero-grid,
    .about-grid,
    .highlight-grid,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .hero{

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:900px){

    .services-grid,
    .gallery-grid,
    .brand-grid,
    .quick-grid,
    .timeline-grid{

        grid-template-columns:1fr 1fr;

    }

    .before-after-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .menu-toggle{

        display:block;

    }

    .nav-menu{

        position:absolute;

        top:90px;

        left:0;

        width:100%;

        background:#fff;

        display:none;

        flex-direction:column;

        padding:25px;

        box-shadow:0 15px 30px rgba(0,0,0,.08);

    }

    .nav-menu.active{

        display:flex;

    }

    .hero{

        padding:80px 0;

    }

    .hero h1{

        font-size:2.4rem;

    }

    .section-title h2{

        font-size:2rem;

    }

    .hero-stats{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:576px){

    section{

        padding:70px 0;

    }

    .services-grid,
    .gallery-grid,
    .brand-grid,
    .quick-grid,
    .timeline-grid{

        grid-template-columns:1fr;

    }

    .hero-stats{

        grid-template-columns:1fr;

    }

    .hero h1{

        font-size:2rem;

    }

    .btn{

        width:100%;

    }

    .floating-phone{

        width:58px;

        height:58px;

        font-size:26px;

        right:18px;

        bottom:18px;

    }

    .scroll-top{

        left:18px;

        bottom:18px;

    }
}

/*==================================================
=               LOGÓ JAVÍTÁS - KÉP NÉLKÜL
==================================================*/

.logo-text{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.45rem;
    font-weight:800;
    color:#0f172a;
    white-space:nowrap;
    line-height:1;
    letter-spacing:-0.3px;
    flex-shrink:0;
}

.logo-text:hover{
    color:#f59e0b;
}

@media(max-width:768px){
    .logo-text{
        font-size:1.2rem;
    }
}

@media(max-width:576px){
    .logo-text{
        font-size:1.05rem;
    }
}

/*==================================================
=               NAVIGÁCIÓ VÉGLEGES JAVÍTÁS
==================================================*/

header .navbar{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    position:relative;
}

header nav{
    margin-left:auto;
}

.nav-menu{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    flex-wrap:nowrap;
}

.nav-menu li{
    flex-shrink:0;
}

.nav-menu a{
    display:block;
    font-size:.95rem;
    line-height:1.2;
    white-space:nowrap;
}

.logo-text{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.35rem;
    font-weight:800;
    color:#0f172a;
    white-space:nowrap;
    line-height:1;
    flex-shrink:0;
}

@media(max-width:1150px){
    .nav-menu{
        gap:12px;
    }

    .nav-menu a{
        font-size:.88rem;
    }

    .logo-text{
        font-size:1.2rem;
    }
}

@media(max-width:980px){
    header .navbar{
        min-height:76px;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
    }

    header nav{
        margin-left:0;
    }

    .nav-menu{
        position:absolute;
        top:76px;
        left:0;
        right:0;
        width:100%;
        background:#ffffff;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        gap:0;
        padding:18px 22px;
        border-top:1px solid #e5e7eb;
        box-shadow:0 15px 30px rgba(0,0,0,.08);
        z-index:999;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu a{
        width:100%;
        padding:12px 0;
        font-size:1rem;
        white-space:normal;
    }
}

@media(max-width:576px){
    header .navbar{
        min-height:68px;
    }

    .logo-text{
        font-size:1.05rem;
    }

    .nav-menu{
        top:68px;
    }
}



/*==================================================
=               PNG LOGÓ VÉGLEGES BEÁLLÍTÁS
==================================================*/
.logo{
    display:flex !important;
    align-items:center !important;
    flex-shrink:0 !important;
    line-height:0 !important;
    width:64px !important;
    max-width:64px !important;
    height:64px !important;
    overflow:hidden !important;
}

.logo img{
    display:block !important;
    width:64px !important;
    height:64px !important;
    max-width:64px !important;
    max-height:64px !important;
    object-fit:contain !important;
}

.nav-menu a.active{
    color:var(--secondary) !important;
}

@media(max-width:768px){
    .logo{
        width:52px !important;
        max-width:52px !important;
        height:52px !important;
    }
    .logo img{
        width:52px !important;
        height:52px !important;
        max-width:52px !important;
        max-height:52px !important;
    }
}

@media(max-width:576px){
    .logo{
        width:46px !important;
        max-width:46px !important;
        height:46px !important;
    }
    .logo img{
        width:46px !important;
        height:46px !important;
        max-width:46px !important;
        max-height:46px !important;
    }
}
