/* Reset és alapértelmezett stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #333333;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigáció */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    position: relative;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Szekció */
.hero {
    position: relative;
    height: 100vh;
    background: url('uj_hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-subtitle-2 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(-45deg);
}

/* Szakasz címek */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery .section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Bemutatkozás */
.about-dark {
    padding: 6rem 0;
    background: #1a1a1a;
    color: var(--white);
}

.section-header-dark {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-white {
    color: var(--white) !important;
}

.about-content-dark {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.about-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.about-secondary-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Miért Mi szekció */
.why-us {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.why-card:hover .why-image img {
    transform: scale(1.05);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1.5rem 1.5rem 0.5rem;
    letter-spacing: 0.5px;
}

.why-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
}

/* Szolgáltatások */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.services-note {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: var(--text-light);
    line-height: 1.8;
}

.services-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-box {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-box:hover {
    box-shadow: var(--shadow-md);
}

.service-header {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-list,
.service-extras {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-extras li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.service-extras .price {
    color: var(--primary-color);
    font-weight: 600;
}

.extra-note {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Prémium Kiegészítők */
.premium-section {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
}

.premium-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.premium-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.premium-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.premium-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.premium-contact {
    font-size: 1rem;
    opacity: 0.8;
}

/* Egyedi igények */
.custom-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
}

.custom-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.custom-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-details p {
    margin: 0.5rem 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Egyéb szolgáltatások */
.other-services {
    margin-bottom: 3rem;
}

.other-services h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.other-service-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--text-dark);
}

/* Tiszta Otthon */
.home-cleaning {
    background: var(--white);
    border: 2px solid var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.home-cleaning h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.home-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.home-services {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.home-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.home-service {
    font-weight: 600;
    color: var(--text-dark);
}

.home-price {
    color: var(--primary-color);
    font-weight: 600;
}

.home-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Kiszállási információk */
.delivery-info {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
}

.delivery-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.delivery-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.delivery-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.delivery-note {
    text-align: center;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Galéria */
.gallery {
    padding: 8rem 0;
    background: var(--bg-light);
}

.gallery-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.gallery-slides {
    position: relative;
    width: 100%;
    min-height: 100px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.comparison-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}

.comparison-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    background: var(--white);
    transition: var(--transition);
}

.comparison-item:hover {
    box-shadow: var(--shadow-md);
}

.comparison-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/11;
}

.comparison-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.comparison-label.before {
    background: var(--text-dark);
    color: var(--white);
}

.comparison-label.after {
    background: var(--primary-color);
    color: var(--white);
}

/* Navigációs gombok */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.gallery-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

/* Indikátorok */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.indicator:hover {
    background: var(--text-dark);
    transform: scale(1.3);
}

.indicator.active {
    background: var(--primary-color);
    width: 50px;
    border-radius: 7px;
}

/* FAQ - Gyakran Ismételt Beszélgetés */
.faq {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-item.active .faq-question {
    background: var(--text-dark);
    color: var(--white);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 2rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Kapcsolat */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-icon-location {
    color: #e74c3c;
}

.contact-icon-phone {
    color: #27ae60;
}

.contact-icon-email {
    color: #3498db;
}

.contact-icon-clock {
    color: #5a5a5a;
}

 .contact-text h4 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
     color: var(--secondary-color);
 }
 
 .contact-text p {
     color: var(--text-dark);
     margin: 0.3rem 0;
     line-height: 1.6;
 }
 
 .contact-text-italic {
     font-size: 0.95rem;
     color: var(--text-light);
     font-style: italic;
     margin-top: 0.8rem;
 }
 
 .contact-link {
     color: #0066cc;
     text-decoration: none;
     transition: var(--transition);
 }
 
 .contact-link:hover {
     text-decoration: underline;
 }

 .contact-map {
     background: var(--white);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: var(--shadow-sm);
     height: 100%;
     min-height: 500px;
 }
 
 .contact-map iframe {
     width: 100%;
     height: 100%;
     min-height: 500px;
 }

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info-text {
    text-align: left;
}

.footer-info-text h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-info-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.6;
}

.footer-social {
    text-align: center;
}

.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    color: var(--white);
    background: #1877f2;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll animációk alapértelmezett állapot */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Különböző elemek specifikus animációi */
.section-header.scroll-animate {
    transform: translateY(30px);
}

.section-header.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.why-card.scroll-animate {
    transform: translateY(50px) scale(0.95);
}

.why-card.animate-in {
    transform: translateY(0) scale(1);
}

.service-box.scroll-animate {
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box.animate-in {
    transform: translateX(0);
}

.service-box:nth-child(even).scroll-animate {
    transform: translateX(30px);
}

.faq-item.scroll-animate {
    transform: translateY(30px);
}

.faq-item.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-item.scroll-animate {
    transform: scale(0.9);
}

.contact-item.animate-in {
    transform: scale(1);
}

.premium-section.scroll-animate,
.custom-section.scroll-animate,
.other-services.scroll-animate,
.home-cleaning.scroll-animate,
.delivery-info.scroll-animate {
    transform: translateY(40px);
}

.about-content-dark.scroll-animate {
    transform: translateY(40px);
}

.comparison-container.scroll-animate {
    transform: translateY(40px);
}

.premium-item.scroll-animate {
    transform: translateY(30px) scale(0.95);
}

.premium-item.animate-in {
    transform: translateY(0) scale(1);
}

.other-service-item.scroll-animate {
    transform: translateX(-20px);
}

.other-service-item.animate-in {
    transform: translateX(0);
}

.other-service-item:nth-child(even).scroll-animate {
    transform: translateX(20px);
}

/* Előre betöltött elemek (azonnal láthatóak) */
.hero-content {
    animation: fadeInUp 1s ease;
}

.navbar {
    animation: fadeInUp 0.5s ease;
}

.home-item.scroll-animate {
    transform: translateX(-20px);
}

.home-item.animate-in {
    transform: translateX(0);
}

.home-item:nth-child(even).scroll-animate {
    transform: translateX(20px);
}

.contact-map.scroll-animate {
    transform: scale(0.95);
}

.contact-map.animate-in {
    transform: scale(1);
}

/* Accessibility - Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-content,
    .navbar {
        animation: none !important;
    }
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .logo img {
        height: 50px;
    }

     .nav-menu {
         position: fixed;
         left: -100%;
         top: 60px;
         flex-direction: column;
         background-color: var(--white);
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: var(--shadow-md);
         padding: 2rem 0;
     }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Mobilon egyszerűbb animációk */
    .scroll-animate {
        transform: translateY(30px);
    }

    .service-box.scroll-animate,
    .service-box:nth-child(even).scroll-animate {
        transform: translateY(30px);
    }

    .why-card.scroll-animate {
        transform: translateY(30px) scale(0.98);
    }

    .other-service-item.scroll-animate,
    .other-service-item:nth-child(even).scroll-animate {
        transform: translateY(20px);
    }

    .home-item.scroll-animate,
    .home-item:nth-child(even).scroll-animate {
        transform: translateY(20px);
    }

    .premium-item.scroll-animate {
        transform: translateY(20px) scale(0.98);
    }

     .contact-content {
         grid-template-columns: 1fr;
     }
 
     .contact-map {
         min-height: 400px;
     }
 
     .contact-map iframe {
         min-height: 400px;
     }
 
     .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        padding: 6rem 0;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        top: 40%;
    }

    .gallery-slider {
        padding: 0;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .comparison-label {
        top: 12px;
        left: 12px;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .gallery-slides {
        min-height: auto;
    }

    .gallery-indicators {
        margin-top: 3rem;
        gap: 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        height: 250px;
    }

    .services-main {
        grid-template-columns: 1fr;
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

     .home-item {
         flex-direction: column;
         gap: 0.5rem;
         text-align: center;
     }
 
     .faq-question {
         padding: 1.2rem 1.5rem;
         font-size: 1rem;
     }
 
     .faq-item.active .faq-answer {
         padding: 1.5rem;
     }
 
     .faq-icon {
         font-size: 1.3rem;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .footer-info-text {
         text-align: center;
     }
 }

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-label {
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-label.before {
    background: var(--text-dark);
    color: var(--white);
}

.lightbox-label.after {
    background: var(--primary-color);
    color: var(--white);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 300;
}

.lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Kép kurzor változtatás hover-nél */
.comparison-item {
    cursor: pointer;
    position: relative;
}

.comparison-item::before {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.comparison-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
    pointer-events: none;
    border-radius: 20px;
}

.comparison-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.comparison-item:hover::after {
    background: rgba(0, 0, 0, 0.4);
}

.comparison-item img {
    transition: var(--transition);
}

.comparison-item:hover img {
    transform: scale(1.05);
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-content img {
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-label {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .comparison-item::before {
        font-size: 2.5rem;
    }
}

