/* ============================================
   TÍMÁR AUTÓMENTÉS - CUSTOM STYLES
   Színek: #ef6518 (narancs), #ffffff (fehér), #6c757d (szürke)
   ============================================ */

:root {
    --primary-orange: #ef6518;
    --primary-orange-dark: #d85614;
    --primary-orange-light: #ff7a2e;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(239, 101, 24, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-call {
    background: var(--primary-orange);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.btn-call:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.navbar-toggler {
    border-color: var(--primary-orange);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(239, 101, 24, 0.25);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(239, 101, 24, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-section h2 {
    font-weight: 400;
    opacity: 0.9;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-orange);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 101, 24, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-orange) !important;
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-badge:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.hero-image {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.title-separator {
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ============================================
   RÓLUNK SECTION
   ============================================ */

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(239, 101, 24, 0.3);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   SZOLGÁLTATÁSOK SECTION
   ============================================ */

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(239, 101, 24, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(239, 101, 24, 0.4);
}

.info-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-list i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ============================================
   ÁRAK SECTION
   ============================================ */

.pricing-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.price-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-hover);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-header i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.price-card.featured .price-header i {
    color: var(--white);
}

.price-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-card.featured .price-header h3 {
    color: var(--white);
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount .from {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-card.featured .price-amount .from {
    color: rgba(255, 255, 255, 0.8);
}

.price-amount .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.price-card.featured .price-amount .amount {
    color: var(--white);
}

.price-amount .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-card.featured .price-amount .currency {
    color: var(--white);
}

.minimum-price-box {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff8f3, #ffffff);
    border-radius: 15px;
    border: 3px solid var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(239, 101, 24, 0.2);
}

.min-price-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.min-price-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0;
}

.additional-prices {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.additional-prices h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-label i {
    color: var(--primary-orange);
}

.price-value {
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.payment-methods {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    border-radius: 15px;
    border: 2px solid #3b82f6;
}

.payment-methods h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.payment-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.payment-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.payment-option i {
    font-size: 2rem;
    color: #3b82f6;
}

.payment-option span {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-note {
    margin-top: 2rem;
    padding: 2rem;
    background: #fff8f3;
    border-left: 4px solid var(--primary-orange);
    border-radius: 10px;
}

.pricing-note p {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-note ul {
    list-style: none;
    padding: 0;
}

.pricing-note li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   REFERENCIÁK SECTION (GALÉRIA)
   ============================================ */

.gallery-item {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 3/2;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 101, 24, 0.9), rgba(216, 86, 20, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* GLightbox custom styling */
.glightbox-clean .gslide-description {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
}

.glightbox-clean .gclose,
.glightbox-clean .gprev,
.glightbox-clean .gnext {
    background: var(--primary-orange);
    color: var(--white);
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
    background: var(--primary-orange-dark);
}

/* ============================================
   KAPCSOLAT SECTION
   ============================================ */

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(239, 101, 24, 0.3);
}

.contact-icon-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dcc);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-orange-dark);
    text-decoration: underline;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
}

.cta-card h3 {
    color: var(--white);
}

.cta-card .lead {
    color: rgba(255, 255, 255, 0.9);
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--primary-orange) !important;
}

.cta-card .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.cta-contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.cta-contact-info p {
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-contact-info i {
    color: var(--white);
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: #1877f2;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

.fade-in.delay-3 {
    animation-delay: 0.6s;
}

.fade-in.delay-4 {
    animation-delay: 0.8s;
}

.fade-in.delay-5 {
    animation-delay: 1s;
}

.fade-in.delay-6 {
    animation-delay: 1.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1.visible {
    animation-delay: 0.1s;
}

.fade-in-up.delay-2.visible {
    animation-delay: 0.2s;
}

.fade-in-up.delay-3.visible {
    animation-delay: 0.3s;
}

.fade-in-up.delay-4.visible {
    animation-delay: 0.4s;
}

.fade-in-up.delay-5.visible {
    animation-delay: 0.5s;
}

.fade-in-up.delay-6.visible {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .navbar-nav {
        background: var(--white);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: var(--shadow);
    }
    
    .btn-call {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .price-amount {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .pricing-container {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .feature-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .about-card,
    .service-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
