/*
Theme Name: Four Szabó Kft. Autószerviz
Theme URI: http://példa.hu
Author: Markó László
Author URI: https://horizonmarketing.hu
Description: Egyedi, modern és letisztult WordPress sablon a Four Szabó Kft. számára.
Version: 1.0
Text Domain: fourszabo
*/

/* ==========================================================================
   1. Alapbeállítások
   ========================================================================== */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #1e1e24;
    color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, 
.logo a, 
.nav-menu a, 
.hero-btn,
.form-submit-btn {
    font-family: 'Montserrat', sans-serif;
}

/* ==========================================================================
   2. Fejléc és Navigáció
   ========================================================================== */
.site-header {
    position: fixed; 
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; 
    box-sizing: border-box;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease; 
}

.main-nav {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2a2a35;
    padding: 12px 40px;
    border-radius: 50px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden; 
}

.main-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px; 
    background-color: #e63946;
    width: var(--scroll, 0%); 
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.8); 
    z-index: 10;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 35px; 
    width: auto;
    display: block;
    transition: transform 0.3s ease; 
}

.logo a:hover img {
    transform: scale(1.05); 
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 30px; 
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover, 
.nav-menu a.active {
    background-color: #e63946;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 101;
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px auto;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   3. Főoldal Hero (Parallax Szekció)
   ========================================================================== */
.hero-parallax {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('images/hero-bg.jpg'); 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15,15,20,1.0) 0%, rgba(15,15,20,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d1d1;
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    background-color: #e63946;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
    background-color: #d62839;
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1877F2; 
    border: none;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.hero-social-icon:hover {
    background-color: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6);
}

/* ==========================================================================
   4. Szolgáltatás Kártyák (Főoldal)
   ========================================================================== */
.features-section {
    padding: 60px 20px;
    background-color: #1e1e24; 
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background-color: #2a2a35;
    padding: 35px 30px;
    border-top: 4px solid #e63946;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 8px;
}

.feature-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    color: #e63946; 
}

.feature-card h3 {
    margin: 0 0 15px;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-card ul {
    margin: 0;
    padding-left: 20px;
    color: #a0a0a0;
}

.feature-card li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ==========================================================================
   5. Rólunk és Nyitvatartás Szekció
   ========================================================================== */
.about-section {
    padding: 60px 20px 80px;
    background-color: #15151a; 
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

.section-title {
    font-size: 2rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e63946;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d1d1;
    margin-bottom: 20px;
    text-align: justify; 
}

.founders {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #2a2a35;
}

.founder strong {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.founder span {
    font-size: 0.9rem;
    color: #e63946;
    font-weight: 500;
}

.about-sidebar {
    flex: 1; 
    min-width: 320px;
}

.opening-hours-card {
    background-color: #2a2a35;
    padding: 25px 25px; 
    border-top: 4px solid #e63946;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.opening-hours-card .icon {
    font-size: 26px; 
    color: #e63946;
    margin-bottom: 10px; 
    display: block;
}

.opening-hours-card h3 {
    margin: 0 0 15px; 
    font-size: 1.3rem; 
    color: #ffffff;
    text-transform: uppercase;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #d1d1d1;
    font-size: 0.95rem; 
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-list li.closed {
    color: #e63946;
    font-weight: 600;
}

/* ==========================================================================
   6. Belső oldalak általános beállításai
   ========================================================================== */
.page-padding {
    padding: 150px 20px 80px; 
    background-color: #1e1e24;
}

.page-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e63946;
}

.page-desc {
    color: #d1d1d1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* ==========================================================================
   7. Szolgáltatások Oldal Kialakítása
   ========================================================================== */
.services-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px; 
    margin-top: 60px;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 42%; 
    position: relative;
    display: flex;
    flex-direction: column;
}

.slides-wrapper,
.static-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(30, 30, 36, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    z-index: 3;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #e63946;
}

.slider-arrow.prev { left: 15px; }
.slider-arrow.next { right: 15px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: #3f3f4e;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #e63946;
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.6);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d1d1;
    margin-bottom: 20px;
    text-align: justify;
}

.service-content strong {
    color: #e63946; 
    font-weight: 600;
}

/* ==========================================================================
   8. Referencia Oldal Kialakítása
   ========================================================================== */
.gallery-section {
    margin-bottom: 80px;
}

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

.ba-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background-color: #15151a; 
}

.ba-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.ba-slideshow .img-after {
    z-index: 2;
    animation: crossFade 8s infinite ease-in-out;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #e63946;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.label-before {
    z-index: 1; 
}

.label-after {
    z-index: 3; 
    animation: crossFade 8s infinite ease-in-out;
}

@keyframes crossFade {
    0%, 35% { opacity: 1; }    
    45%, 85% { opacity: 0; }     
    95%, 100% { opacity: 1; }   
}

.reference-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-track-wrapper {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.gallery-slide img:hover {
    transform: scale(1.03);
}

.gallery-slide.clone {
    display: none;
}

.partners-section {
    padding-top: 40px;
    border-top: 1px solid #2a2a35;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.partner-card {
    background-color: #2a2a35;
    padding: 35px 30px;
    border-radius: 8px;
    border-top: 4px solid #e63946;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.partner-card h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-card h3 i {
    color: #e63946;
    font-size: 1.5rem;
}

.partner-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-card ul li {
    color: #d1d1d1;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.partner-card ul li:last-child {
    border-bottom: none;
}

.partner-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e63946;
    margin-right: 12px;
    font-size: 14px;
}

/* ==========================================================================
   Új Egységes Buszos Galéria Slideshow (Asztali + Mobil)
   ========================================================================== */
.bus-gallery-section {
    margin-top: 40px;
}

.bus-slideshow-container {
    width: 100%;
    margin: 0 auto;
}

.bus-gallery-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background-color: #15151a;
}

.bus-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.bus-slide.active {
    opacity: 1;
    z-index: 2;
}

.bus-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bus-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(30, 30, 36, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    z-index: 3;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bus-slider-arrow:hover {
    background-color: #e63946;
}

.bus-slider-arrow.prev { left: 15px; }
.bus-slider-arrow.next { right: 15px; }

.bus-dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.bus-dot {
    cursor: pointer;
    height: 14px;
    width: 14px;
    background-color: #3f3f4e;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.bus-dot.active, .bus-dot:hover {
    background-color: #e63946;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
}

/* ==========================================================================
   Impresszum Oldal Kialakítása
   ========================================================================== */
.impressum-container {
    max-width: 1000px; 
    margin: 0 auto;
}

.impressum-card {
    background-color: #2a2a35;
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid #e63946;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    gap: 40px;
}

.impressum-column {
    flex: 1;
}

.data-group {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.data-group strong {
    display: block;
    color: #e63946;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.data-group span {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.data-group a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.data-group a:hover {
    color: #e63946;
}

/* ==========================================================================
   Adatkezelési Tájékoztató / Jogi szövegek
   ========================================================================== */
.legal-container {
    max-width: 900px; 
    margin: 0 auto;
    background-color: #2a2a35;
    padding: 50px;
    border-radius: 8px;
    border-top: 4px solid #e63946;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.legal-content h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.legal-content h2:first-of-type {
    margin-top: 10px;
}

.legal-content p, 
.legal-content ul {
    color: #d1d1d1;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-content a {
    color: #e63946;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #ffffff;
}

/* ==========================================================================
   9. Kapcsolat Oldal Kialakítása
   ========================================================================== */
.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px; 
    align-items: flex-start;
}

.contact-form-wrapper {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
    min-width: 320px;
    max-width: 380px; 
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.premium-form .form-row {
    display: flex;
    gap: 20px;
}

.premium-form .form-group {
    margin-bottom: 30px; 
    width: 100%;
}

.premium-form label {
    display: block;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.05rem; 
    font-weight: 500;
}

.premium-form input[type="text"],
.premium-form input[type="tel"],
.premium-form input[type="email"],
.premium-form textarea {
    width: 100%;
    background-color: #2a2a35;
    border: 1px solid #3f3f4e;
    color: #ffffff;
    padding: 18px; 
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem; 
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.premium-form textarea {
    min-height: 200px; 
    resize: vertical;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: #e63946;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center; 
    gap: 12px;
    margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin: 0; 
    accent-color: #e63946;
    width: 22px; 
    height: 22px;
    cursor: pointer;
    flex-shrink: 0; 
}

.checkbox-group label {
    font-size: 0.95rem; 
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 0;
}

.checkbox-group a {
    color: #e63946;
    text-decoration: underline;
}

.form-submit-btn {
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    padding: 18px 40px; 
    font-size: 17px;
    margin-top: 15px;
}

/* ELÉRHETŐSÉGEK KÁRTYA STÍLUSAI */
.contact-card {
    background-color: #2a2a35;
    padding: 25px 25px; 
    border-top: 4px solid #e63946;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-card .icon {
    font-size: 26px; 
    color: #e63946;
    margin-bottom: 10px; 
    display: block;
}

.contact-card h3 {
    margin: 0 0 15px; 
    font-size: 1.3rem; 
    color: #ffffff;
    text-transform: uppercase;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center; 
    gap: 12px; 
    padding: 8px 0; 
}

.contact-list li:last-child {
    padding-bottom: 0;
}

.contact-list i {
    color: #e63946;
    font-size: 1.1rem; 
    width: 25px; 
    text-align: center;
}

.contact-list a, 
.contact-list span {
    color: #ffffff; 
    text-decoration: none;
    font-size: 1rem; 
    line-height: 1.4; 
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #e63946; 
}

.contact-list li div {
    display: flex;
    flex-direction: column; 
    gap: 2px; 
}

/* ==========================================================================
   10. Lábléc (Footer)
   ========================================================================== */
.site-footer {
    background-color: #15151a; 
    color: #d1d1d1;
    padding: 60px 20px 20px;
    border-top: 4px solid #e63946; 
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a2a35; 
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p, 
.footer-section ul {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.footer-section a {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e63946; 
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 14px;
    color: #888; 
}

.footer-bottom .copyright {
    text-align: left;
}

.footer-bottom .creator {
    text-align: right;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #e63946; 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-social-bottom {
    display: flex;
    justify-content: center;
}

.footer-social-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d1d1d1;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-bottom a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #2a2a35;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-bottom a:hover {
    color: #1877F2;
}

.footer-social-bottom a:hover i {
    background-color: #1877F2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.4);
}

/* ==========================================================================
   11. Reszponzivitás (Tabletek és Kisebb képernyők) max-width: 992px
   ========================================================================== */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-content,
    .about-sidebar {
        width: 100%;
        flex: none; 
        min-width: unset;
        box-sizing: border-box;
    }

    .founders {
        flex-direction: column;
        gap: 20px;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-image {
        width: 100%;
    }

    .contact-page-container {
        flex-direction: column;
    }
    
    .contact-sidebar {
        width: 100%;
        max-width: none;
        min-width: unset;
    }

    .premium-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ==========================================================================
   12. Reszponzivitás (Mobiltelefonok) max-width: 768px
   ========================================================================== */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 15px; 
    }
    .main-nav {
        padding: 15px 25px;
        overflow: visible;
    }
    
    .main-nav::after {
        position: fixed;
        top: 0;
        bottom: auto;
        border-radius: 0; 
        z-index: 1005; 
    }

    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: absolute;
        top: 120%; 
        left: 20px;
        right: 20px;
        background-color: #2a2a35;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        transform-origin: top center;
        transform: scaleY(0);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.3s ease;
    }

    .nav-menu.active {
        transform: scaleY(1);
        opacity: 1;
    }

    .nav-menu li {
        display: block;
        margin: 10px 0;
    }

    .hero-parallax {
        align-items: stretch; 
        background-attachment: scroll; 
        background-position: right center; 
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 15, 20, 0.3) 0%, rgba(15, 15, 20, 0.95) 80%);
    }
    
    .hero-title {
        margin-top: 80px; 
        font-size: 2.2rem;
        text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8); 
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
        text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
        text-align: justify;
        hyphens: auto;
    }
    
    .hero-btn {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 18px 20px; 
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        width: 100%;
        padding-bottom: 50px; 
    }

    .hero-social-icon {
        position: absolute;
        bottom: 90px; 
        left: 50%;
        margin-left: -25px; 
    }

    .features-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom .copyright,
    .footer-bottom .creator {
        text-align: center;
    }

    .gallery-track {
        display: flex;
        width: 500%; 
        gap: 0; 
        animation: mobileSlideshow 16s infinite; 
    }

    .gallery-slide {
        width: 20%; 
        flex-shrink: 0;
        padding: 0 10px; 
        box-sizing: border-box;
    }

    .gallery-slide img {
        height: 400px;
    }

    .gallery-slide.clone {
        display: block;
    }

    @keyframes mobileSlideshow {
        0%, 15%   { transform: translateX(0); }       
        25%, 40%  { transform: translateX(-20%); }    
        50%, 65%  { transform: translateX(-40%); }    
        75%, 90%  { transform: translateX(-60%); }    
        100%      { transform: translateX(-80%); }    
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-container {
        padding: 30px 20px;
    }
    
    .legal-content p, 
    .legal-content ul {
        text-align: left; 
    }

    /* Mobilos finomhangolás a buszos sliderhez */
    .bus-gallery-wrapper {
        aspect-ratio: 4 / 3;
    }
    
    .bus-slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}