        :root {
            --rt-navy: #1A2B4C;        /* Mélykék - Fő brand szín */
            --rt-turquoise: #2EC4B6;   /* Türkiz - Akció szín */
            --rt-yellow: #FFD166;      /* Sárga - Figyelemfelkeltő */
            --rt-light-grey: #E9ECEF;  /* Kavicsszürke - Tagolás */
            --rt-text: #333333;        /* Palaszürke - Szöveg */
        }

        * {
            /*outline: 1px solid red;*/
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--rt-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
            scroll-padding-top: 80px;
        }

        h1, h2, h3, .rt-font-heading {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* Egyedi osztályok későbbi használatra */
        .rt-bg-navy { background-color: var(--rt-navy) !important; color: white; }
        .rt-bg-turquoise { background-color: var(--rt-turquoise) !important; color: white; }
        .rt-bg-yellow { background-color: var(--rt-yellow) !important; color: var(--rt-navy); }
        .rt-bg-light { background-color: var(--rt-light-grey) !important; }
        
        .rt-text-navy { color: var(--rt-navy); }
        .rt-text-turquoise { color: var(--rt-turquoise); }

        .btn-rt-primary {
            background-color: var(--rt-turquoise);
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            border-radius: 8px; /* Enyhén lekerekített sarkok */
            padding: 12px 30px;
            border: none;
            transition: 0.3s;
        }

        .btn-rt-primary:hover {
            background-color: #25a095;
            color: white;
        }

        .btn-rt-action {
            background-color: var(--rt-yellow);
            color: var(--rt-navy);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            border-radius: 8px;
            padding: 15px 35px;
            border: none;
        }

        .rt-card {
            background: white;
            border-radius: 12px;
            border: 2px solid var(--rt-light-grey);
            padding: 25px;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .rt-card:hover {
            transform: translateY(-5px);
            border-color: var(--rt-turquoise);
        }

        .hero-section {
        background-color: #ffffff;
        overflow: hidden; /* A kilógó nyilak miatt */
        position: relative;
    }
    .hero-bg-layer {
        background-image: url('../images/hero_bg.png');
        background-repeat: no-repeat;
        background-position: right center; 
        background-size: auto;
        z-index: 1;
    }


.rt-navbar{

background:rgba(255,255,255,0.85);
backdrop-filter:blur(10px);
box-shadow:0 5px 20px rgba(0,0,0,0.05);

}

.rt-menu{

flex:1;
display:flex;
justify-content:space-evenly;

}

.navbar .nav-link{

font-weight:500;
color:#333;
position:relative;
padding-bottom: 0.1rem !important;

}

.navbar .nav-link:hover{
color:#1bb3a7;
}

.navbar .nav-link.active{

color:#1bb3a7;
font-weight:600;

}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1bb3a7;
    /* Csak asztali nézetben jelenjen meg az aláhúzás */
    display: none; 
}


.btn-rt-primary{

background:#1bb3a7;
color:white;
border-radius:10px;
padding:9px 18px;
font-weight:600;

}

.btn-rt-primary:hover{

background:#149b90;

}

.btn-rt-outline{

border:2px solid #1bb3a7;
color:#1bb3a7;
border-radius:10px;
padding:8px 18px;
font-weight:600;

}

.btn-rt-outline:hover{

background:#1bb3a7;
color:white;

}

.rt-trustbar{

background:#f5f9f9;
padding:14px 0;
font-size:15px;

}

/* Asztali nézeten (992px felett) kapcsoljuk vissza */
@media (min-width: 992px) {
    .navbar .nav-link.active::after {
        display: block;
    }
}

/* Mobilos finomhangolás a gombokhoz, hogy ne érjenek össze */
@media (max-width: 991.98px) {
    .rt-menu {
        margin-bottom: 1rem; /* Távolság a lista és a gombok között */
    }
    
    .nav-item {
        padding: 5px 0; /* Kényelmesebb kattintási felület mobilon */
    }

    .rt-menu-cta {
        display: flex;
        flex-direction: column; /* Mobilon a gombok egymás alatt jobban mutatnak */
        gap: 10px;
    }

    .rt-menu-cta .ms-2 {
        margin-left: 0 !important; /* Bootstrap alapértelmezett margó törlése */
    }
    
    /* Opcionális: Mobilon az aláhúzás helyett csak a szöveg színe legyen más, 
       vagy egy bal oldali csík jelezze az aktív menüpontot */
    .navbar .nav-link.active {
        border-left: 3px solid #1bb3a7;
        padding-left: 10px;
    }
}

/* BIZTONSÁGI PROTOKOLL OLDAL LINK */
  /* Szövegbuborék egyedi stílusa */
    .rt-security-bubble {
        max-width: 600px;
        transition: all 0.3s ease;
    }
    .rt-security-bubble:hover {
        border-color: #00d1c1 !important;
        transform: translateY(-2px);
    }
    .rt-bg-light { background-color: #f0f4f8; }
    .rt-text-turquoise { color: #00d1c1; }
    .rt-text-navy { color: #001f3f; }
    .rt-bg-navy { background-color: #001f3f; }
    
    /* Mobil optimalizálás */
    @media (max-width: 576px) {
        .rt-security-bubble {
            flex-direction: column;
            text-align: center;
        }
        .rt-security-bubble .me-3, .rt-security-bubble .me-4 {
            margin-right: 0 !important;
            margin-bottom: 10px;
        }
    }
/* BIZTONSÁGI PROTOKOLL OLDAL LINK -----*/

/* Alapértelmezetten nincs keret (mobil) */
.hero-img-border {
    border: none;
}

/* Asztali nézeten (tablet/laptop) megjelenik a keret */
@media (min-width: 768px) {
    .hero-img-border {
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}
@media (max-width: 991.98px) {
    .hero-bg-accent {
        display: none !important;
    }
}
/* CTA */
    .rt-mobile-cta {
        display: flex;
        gap: 8px;               /* margin helyett */
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        bottom: 0;
        left: 0;
        position: fixed;
        background: white;
        /*box-shadow: 0 -5px 20px rgba(0,0,0,0.1);*/
        z-index: 9999;
        overflow: hidden;       /* extra biztonság */
        box-sizing: border-box;
    }

    .rt-mobile-cta a {
        flex: 1;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        box-sizing: border-box; /* itt a kulcs */
    }
    .rt-mobile-secondary {
        border: 2px solid #1bb3a7;
        color: #1bb3a7;
    }

    .rt-mobile-primary {
        background: #1bb3a7;
        color: white;
    }
/* END CTA */ 

    /* FOOTER */
    /* Egyedi lábléc stílusok */
    .rt-footer{
        background-color:#1A2B4C;
        color:rgba(255,255,255,0.8);
        padding:80px 0 30px;
        border-top:1px solid rgba(255,255,255,0.05);
    }
    /* Mobil: kisebb, százalékos vagy px padding */
    @media (max-width: 991px) {
        .rt-footer {
            padding: 80px 0 30%; /* mobilon marad a nagyobb alsó padding */
        }
    }

    #newsletter label{
        color:rgba(255,255,255,0.8) !important;
    }
    
    .rt-footer h3 {
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 25px;
    }
    
    .rt-footer-link{
    color:rgba(255,255,255,0.7);
    text-decoration:none;
    transition:all .25s ease;
    display:block;
    margin-bottom:12px;
}

.rt-footer-link:hover{
    color:#2EC4B6;
    padding-left:6px;
}
    
    /* Hírlevél form stílus */
    .newsletter-form .form-control{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    color:white;
    padding:12px 18px;
}
    
    .newsletter-form .form-control:focus {
        background: rgba(255, 255, 255, 0.08) !important;
        box-shadow: none;
        border-color: #2EC4B6;
        color: white;
    }
    
    .newsletter-btn {
        background-color: #2EC4B6;
        color: white;
        border: none;
        border-radius: 0 8px 8px 0;
        padding: 0 25px;
        font-weight: 600;
        transition: 0.3s;
    }
    
    .newsletter-btn:hover {
        background-color: #25a095;
    }

    .newsletter-form .form-control::placeholder {
        color: white;           /* placeholder szöveg színe */
        opacity: 1;             /* hogy biztosan ne legyen halvány */
    }

    .newsletter-form .form-control:focus::placeholder {
        color: white;           /* fókusz állapotban is */
        opacity: 1;
    }
    
   .social-icon {
    width:44px;
    height:44px;
    background:rgba(255,255,255,0.08);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:white;
    margin-right:12px;
    font-size:1.1rem;
    transition:.25s;
}

.social-icon:hover{
    background:#2EC4B6;
    transform:translateY(-4px) scale(1.05);
}

    /**/
    .rt-final-cta{
    background: linear-gradient(135deg,#1A2B4C,#223863);
    color:white;
    padding:90px 0;
    border-top:1px solid rgba(255,255,255,0.05);
}

.cta-sub{
    opacity:0.8;
    font-size:1.1rem;
}

.btn-rt-action{
    background:#FFB020;
    color:#1A2B4C;
    font-weight:700;
    padding:14px 34px;
    border-radius:10px;
    transition:.25s;
}

.btn-rt-action:hover{
    background:#ffc04a;
    transform:translateY(-2px);
}


    /* Services */ 
    /* Kártya animációk és finomítások */
    .rt-card {
        transition: all 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
    }

    .rt-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

    .rt-bg-light-turquoise {
        background-color: rgba(46, 196, 182, 0.1);
    }

    p.lead {
        font-size:1rem;
    }

    /* Egyedi ikon körök */
    .rt-icon-circle {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

    /* Táblázat stílusok */
    .table {
        border-collapse: separate;
        border-spacing: 0 10px;
    }

    .table tr {
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        border-radius: 8px;
    }

    .table td, .table th {
        padding: 10px;
        border: none;
    }

    /* Dashcam kiemelés */
    .dashcam-badge {
        background: #FFD166;
        color: #1A2B4C;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
        text-transform: uppercase;
    }

    /* extra szolgáltatások fal */
    .extra-wall {
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        margin-top: 50px;
    }

    .extra-column {
        flex: 1;
        padding: 40px 25px;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        display: flex;
        flex-direction: column;
        color: #1A2B4C;
        min-height: 550px;
        position: relative;
        cursor: default;
    }

    /* Kiemelkedő effekt hover esetén */
    .extra-column:hover {
        flex: 1.2; /* Kicsit kiszélesedik */
        transform: translateY(-15px); /* Megemelkedik */
        z-index: 10;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    .extra-column h3 {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .extra-column p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .extra-column .icon-box {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    /* Egyedi háttérszínek az éles váltáshoz */
    .col-house    { background-color: #F8F9FA; } /* Világosszürke */
    .col-dashcam  { background-color: #E6F7F6; } /* Nagyon világos türkiz */
    .col-own-car  { background-color: #D1F0ED; } /* Közepes türkiz */
    .col-school   { background-color: #1A2B4C; color: #ffffff; } /* Navy kék */
    .col-kresz    { background-color: #FFD166; } /* Sárga */

    .col-school h3 { color: #2EC4B6; }

    /* Mobil nézet: ha túl keskeny a kijelző, egymás alá rakja */
    @media (max-width: 991px) {
        .extra-wall {
            flex-direction: column;
        }
        .extra-column:hover {
            flex: 1;
            transform: scale(1.02);
        }
    }
    .rt-row-white { background-color: #ffffff; }
    .rt-row-alt { background-color: #f4fdfc; } /* Nagyon halvány türkiz a váltáshoz */
    
    .target-box {
        padding: 15px;
        border-radius: 12px;
        display: inline-block;
        min-width: 200px;
    }
    .target-box.bg-turquoise { background-color: #2EC4B6; color: white; }
    .target-box.bg-navy { background-color: #1A2B4C; color: white; }
    
    .rt-number {
        font-size: 5rem;
        font-weight: 900;
        opacity: 0.1;
        line-height: 1;
    }


    /* Calculator */
        /*.hero-wrapper {
            background-image: url("../images/kapcsolatok_bg.png");
            background-size: cover;
            background-position: center;
            padding: 100px 0;
        }
        .calc-container {
            color: var(--rt-navy);
            border-radius: 2rem;
            box-shadow: 0 20px 40px -15px rgba(26, 43, 76, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);            
            width: 100%;
            max-width: 600px;
            overflow: hidden;
        }*/

        .calc-container {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-radius: 2rem;
            box-shadow: 0 20px 40px -15px rgba(26, 43, 76, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);            

        }

        /* A háttérkép, ami alul van */
        .calc-container::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url("../images/kapcsolatok_bg.png");
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

        /* A fehér "tejüveg" réteg a kép és a szöveg között */
        .calc-container::after {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255, 255, 255, 0.4); /* Itt állítsd be, mennyire legyen fehér */
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            z-index: -1;
        }

        .calc-header {
            /*background: var(--rt-light);*/
            padding: 2rem;
            text-align: center;
            border-bottom: 2px solid #edf2f7;
        }

        .calc-header h2 {
            color: var(--rt-navy);
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .calc-body {
            padding: 2.5rem;
        }

        #calculator label {
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
            color: var(--rt-navy);
            font-size: 0.95rem;
        }

        .form-select {
            padding: 0.8rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 0.8rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .form-select:focus {
            border-color: var(--rt-turquoise);
            box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.1);
        }

        .calc-btn {
            background: var(--rt-navy);
            color: white;
            border: none;
            width: 100%;
            padding: 1.2rem;
            border-radius: 1rem;
            font-size: 1.1rem;
            font-weight: 800;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .calc-btn:hover {
            background: var(--rt-turquoise);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(46, 196, 182, 0.3);
        }

        /* Eredmény szekció */
        #resultArea {
            display: none;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px dashed #e2e8f0;
        }

        .res-badge {
            display: inline-block;
            background: var(--rt-light);
            color: var(--rt-turquoise);
            padding: 0.4rem 1rem;
            border-radius: 2rem;
            font-weight: 800;
            font-size: 0.75rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .res-hours {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--rt-navy);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .package-box {
            background: var(--rt-navy);
            color: white;
            padding: 1.2rem;
            border-radius: 1rem;
            margin-bottom: 1.5rem;
        }

        .cta-btn {
            display: block;
            background: var(--rt-turquoise);
            color: white;
            text-align: center;
            text-decoration: none;
            padding: 1.2rem;
            border-radius: 1rem;
            font-weight: 800;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
            transition: all 0.3s;
        }

        .cta-btn:hover {
            background: #25a095;
            color: white;
            transform: scale(1.02);
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }





/*  GÉPPARK */
    .translate-hover {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .translate-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    }
    .rt-hero-sm::after {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(rgba(26, 43, 76, 0.8), rgba(26, 43, 76, 0.9));
        z-index: 1;
    }
    .rt-hero-sm .container {
        position: relative;
        z-index: 2;
    }
    .rt-text-turquoise { color: #2EC4B6 !important; }
    .rt-bg-turquoise { background-color: #2EC4B6 !important; }
    .bg-turquoise { background-color: #2EC4B6; }
    
    .rt-hero-split {
        position: relative;
        z-index: 1;
    }
    
    /* Reszponzív finomítás: mobilon a kép legyen felül vagy alul? Alapértelmezett: alul */
    @media (max-width: 991px) {
        .rt-hero-split { text-align: center; padding-top: 80px; }
        .rt-hero-split .d-flex { justify-content: center; }
        .rt-hero-split img { max-height: 500px; margin-top: 40px; }
    }
/* GP */


/* GYIK */
    /* Accordion testreszabás */
    .accordion-button:not(.collapsed) {
        background-color: var(--rt-light);
        color: var(--rt-navy);
        box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }
    .accordion-button:focus {
        border-color: var(--rt-turquoise);
        box-shadow: 0 0 0 0.25rem rgba(46, 196, 182, 0.25);
    }
    .faq-category-header {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        border-radius: 8px 8px 0 0;
    }
    .accordion-item {
        border: none;
        border-bottom: 1px solid #eee;
    }
    .rt-text-turquoise {
        color: #2EC4B6 !important;
    }
    .faq-category-header i {
        -webkit-text-stroke: 0.5px; /* Vékonyabb hatás */
        display: inline-block;
    }

    .accordion-button:not(.collapsed) {
        background-color: rgba(46, 196, 182, 0.1); /* Halvány türkiz háttér nyitott állapotban */
        color: var(--rt-navy);
    }
/* GYIK */


/* CSOMAGOK & ÁRAK */
    .border-turquoise { border-color: #2EC4B6 !important; }
    .rt-bg-turquoise { background-color: #2EC4B6 !important; }
    .rt-text-turquoise { color: #2EC4B6 !important; }
    .rt-bg-navy { background-color: #1A2B4C !important; }
    .rt-text-navy { color: #1A2B4C !important; }
    .rt-bg-light { background-color: #f4fdfc !important; }

    .translate-hover {
        transition: transform 0.3s ease;
    }
    .translate-hover:hover {
        transform: translateY(-10px);
    }
    .pulse-btn {
        animation: pulse-animation 2s infinite;
    }
    @keyframes pulse-animation {
        0% { transform: scale(1); }
        50% { transform: scale(1.02); }
        100% { transform: scale(1); }
    }

    .rt-bg-navy { background-color: #1A2B4C !important; }
    .rt-text-navy { color: #1A2B4C !important; }
    .rt-bg-turquoise { background-color: #2EC4B6 !important; }
    .rt-text-turquoise { color: #2EC4B6 !important; }
    .border-turquoise { border-color: #2EC4B6 !important; }
    
    .card { transition: all 0.3s ease; }
    .card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; }

    
    .rt-text-turquoise { color: #2EC4B6 !important; }
    .rt-bg-turquoise { background-color: #2EC4B6 !important; }
    .rt-text-navy { color: #1A2B4C !important; }
    .rt-bg-navy { background-color: #1A2B4C !important; }
    
    .translate-hover {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .translate-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }
    
    .card {
        background: #ffffff;
    }

    /* BASKET **/
    #floating-cart {
        transition: all 0.3s ease-in-out;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px); /* Modern, üvegszerű hatás */
    }

    /* Egy kis pulzálás a beküldő gombnak, hogy vonzza a szemet */
    .btn-rt-primary {
        animation: shadow-pulse 2s infinite;
    }

    /* Egy kis extra stílus a validációs hiba jelzéséhez */
    .cart-error-shake {
        animation: shake 0.5s;
        border: 2px solid red !important;
    }

    @keyframes shake {
        0%, 100% {transform: translateX(-50%);}
        25% {transform: translateX(-52%);}
        75% {transform: translateX(-48%);}
    }

    @keyframes shadow-pulse {
        0% { box-shadow: 0 0 0 0 rgba(0, 209, 193, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(0, 209, 193, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 209, 193, 0); }
    }

    /* Mobilon kicsit kisebb margó */
    @media (max-width: 576px) {
        #floating-cart {
            width: 95%;
            border-radius: 15px !important;
        }
    }
    /* Az "Add to cart" gomb egyedi stílusa, ha nem a sima primary-t használod */
    .add-to-cart {
        background-color: var(--rt-turquoise);
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 50px; /* Pirula alak */
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .add-to-cart:hover {
        background-color: #25a095; /* Sötétebb türkiz */
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(46, 196, 182, 0.3);
    }

    /* Lebegő kosár egyedi elemei */
    #floating-cart {
        border: 2px solid var(--rt-turquoise) !important;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px); /* Modern üvegszerű hatás */
    }

    /* A kosárban lévő kuka/törlés ikon stílusa */
    .cursor-pointer {
        cursor: pointer;
    }

    /* Egyedi animáció a kosár megjelenéséhez */
    @keyframes slideUp {
        from { transform: translate(-50%, 100%); opacity: 0; }
        to { transform: translate(-50%, 0); opacity: 1; }
    }

    #floating-cart:not(.d-none) {
        animation: slideUp 0.4s ease-out forwards;
    }

    /* Popup bezáró gomb */
    .close-btn {
        color: var(--rt-navy);
        opacity: 0.5;
        transition: 0.2s;
    }

    .close-btn:hover {
        opacity: 1;
        transform: rotate(90deg);
    }

    /* Form input fókusz stílus a popupban */
    #calcOfferForm .form-control:focus {
        border-color: var(--rt-turquoise);
        box-shadow: 0 0 0 0.25 rbg(46, 196, 182, 0.25);
    }

/* */

/* MÓDSZERTAN */
/* Türkiz szövegszín */
/* --- ALAPSZÍNEK ÉS SZÖVEGEK --- */
.rt-text-turquoise {
    color: #2ec4b6 !important;
}

.rt-text-navy {
    color: #011627 !important;
}

.rt-bg-navy {
    background-color: #011627 !important;
}

/* --- KÁRTYA ÉS KERET STÍLUSOK --- */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

.border-turquoise-2 {
    border: 2px solid #2ec4b6 !important;
}

.border-dash {
    border: 2px dashed #dee2e6 !important;
}

/* --- ELEMEK FINOMHANGOLÁSA --- */
.opacity-10 { opacity: 0.2 !important; } /* Számokhoz a háttérben */
.opacity-85 { opacity: 0.85; }             /* Kiegészítő kártyákhoz */

/* Vékonyabb ikon stroke - minden Bootstrap ikonra érvényesül */
.bi::before {
    display: inline-block;
    -webkit-text-stroke: 0.5px;
    stroke-width: 0.5px;
}

/* --- GOMBOK --- */
.btn-turquoise {
    background-color: #2ec4b6;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-turquoise:hover {
    background-color: #26a69a;
    color: white;
    transform: scale(1.05);
}
/* */

/* Kapcsolatok */
    .rt-text-turquoise { color: #2EC4B6 !important; }
    .rt-bg-turquoise { background-color: #2EC4B6 !important; }
    .rt-text-navy { color: #1A2B4C !important; }
    .rt-bg-navy { background-color: #1A2B4C !important; }
    .rt-bg-light { background-color: #e9f7f6 !important; }
    .border-turquoise { border-color: #2EC4B6 !important; }

    .form-control:focus {
        background-color: #fff !important;
        border: 1px solid #2EC4B6 !important;
        box-shadow: none;
    }
    
    .form-check-input:checked {
        background-color: #2EC4B6;
        border-color: #2EC4B6;
    }



/* K */

/*  KRESZ KVÍZ  */
    .rt-text-navy { color: #1A2B4C !important; }
    .rt-bg-navy { background-color: #1A2B4C !important; }
    .rt-bg-turquoise { background-color: #2EC4B6 !important; }
    .rt-text-turquoise { color: #2EC4B6 !important; }
    .rt-bg-light { background-color: #f4fdfc !important; }
    .form-check-input:checked { background-color: #2EC4B6; border-color: #2EC4B6; }
/*  KK  */
















.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.popup-box {
  background: white;
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-box h2 {
  margin-top: 0;
  color: var(--rt-yellow);
}

.popup-box ul {
  padding-left: 20px;
}

.popup-box li {
  margin-bottom: 8px;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  font-weight: bold;
}

.action-btn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background-color: var(--rt-turquoise);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.action-btn:hover {
  background-color: #25a095;
    color: white;
}
.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.popup-box textarea {
  min-height: 80px;
  resize: vertical;
}
/* Popup fade out animáció */
.popup-box.fade-out {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-20px); }
}
@keyframes fadeIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== MOBIL OPTIMALIZÁLÁS ===== */
@media (max-width: 600px) {

  .floating-pickup {
    bottom: 15px;
    right: 15px;
    font-size: 13px;
    padding: 10px 14px;
  }

  .banner-content {
    flex-direction: column;
    gap: 8px;
  }

  .details-btn {
    padding: 5px 12px;
    font-size: 13px;
  }

  .popup-box {
    padding: 20px;
  }
}


/* Hero Section mobil optimalizálás */
@media (max-width: 991px) {
    .hero-bg-layer {
        background-image: url('../images/hero.webp') !important; /* új háttér */
        background-position: center top;
        background-size: cover;
        min-height: auto;
        padding: 60px 20px;
        position: relative; /* overlay-hez szükséges */
    }

    /* Sötét overlay a háttérre */
    .hero-bg-layer::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-color: rgba(255,255,255,0.7); /* 40%-os sötétítés */
        z-index: 1;
    }

    /* Szöveg mindig az overlay fölött */
    .hero-bg-layer > .row {
        position: relative;
        z-index: 2;
    }

    /* Szövegek világosítása 
    .hero-bg-layer h1,
    .hero-bg-layer p.lead,
    .hero-bg-layer .btn {
        color: #ffffff !important;          /* fehér szöveg */
        /*text-shadow: 0 2px 6px rgba(0,0,0,0.5); /* jobban látszik a sötét háttéren */
    /*}*/

    .hero-bg-layer .row > .col-lg-6 {
        text-align: center;
        margin: 0 auto;
    }

    .hero-bg-layer h1 {
        font-size: 1.8rem;   /* kisebb cím mobilra */
        line-height: 1.2;
        font-weight: 700;
    }

    .hero-bg-layer p.lead {
        font-size: 1rem;     /* kisebb lead szöveg */
        font-weight: 500;
    }

    .hero-bg-layer .btn {
        width: 100%;         /* gomb legyen teljes széles */
        font-size: 1rem;
        padding: 12px 0;
    }

    .hero-bg-layer img {
        max-height: 80px;    /* kisebb logo */
        margin-top: 40px;
    }

    /* Logo fehérre cserélése mobilon 
    .hero-bg-layer img {
        content: url('../images/logo_white.png') !important;
        max-height: 120px;
        margin-top: 80px;
    }*/
}




/* Google értékelés gomb design  */
.google-review-section {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--rt-navy); /* A footer alapja */
}

.review-text {
    font-size: 1.1rem;
    color: var(--rt-light-grey); /* Világos szürke szöveg a sötét háttéren */
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-google-review {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 2px solid var(--rt-turquoise); /* Türkiz keret */
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-google-review .stars {
    color: var(--rt-yellow); /* A te sárga színed a csillagoknak */
    margin-right: 10px;
    font-size: 1.3rem;
    vertical-align: middle;
}

.btn-google-review:hover {
    background-color: var(--rt-turquoise); /* Kitöltés türkizzel hoverre */
    color: var(--rt-navy); /* A szöveg sötét lesz a világosabb háttéren */
    transform: scale(1.05); /* Enyhe növekedés */
    box-shadow: 0 0 15px rgba(46, 196, 182, 0.4);
}