/* ===== BODY & HERO ===== */
html, body {
    height: 100%;
    margin: 0;
    padding-top: 70px; /* navbar miatt */
    background: linear-gradient(135deg, #1f1f1f, #3a3a3a);
    color: #f8f9fa;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* kitölti a fennmaradó helyet, hogy a footer lent legyen */
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(
        rgba(20,20,20,0.7),
        rgba(255,140,0,0.3)
    ),
    url("https://images.unsplash.com/photo-1541976590-713941681591?q=80&w=1920&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    padding-top: 25vh;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Hero gomb */
.hero .hero-btn,
.hero .hero-btn:active,
.hero .hero-btn.active {
    background-color: #ff7a00 !important;
    color: #fff !important;
    padding: 15px 35px;
    font-size: 1.3rem;
    font-weight: 600;
    border: 2px solid #fff !important;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .hero-btn:hover {
    background: #fff !important;
    color: #ff7a00 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,122,0,0.5);
}

/* ===== ANIMÁCIÓ ===== */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }

/* ===== CTA SZEKCIÓ ===== */
.cta-section {
    margin-top: 80px;
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
}

.cta-box {
    background: rgba(0,0,0,0.6);
    border: 2px solid #ff7a00;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.4);
}

/* ===== DESIGN TABS ===== */
.service-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    background: #1f1f1f;
    color: white;
    border: 2px solid #ff7a00;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover {
    background: #ff7a00;
    transform: translateY(-3px);
}

.tab-btn.active {
    background: #ff7a00;
    box-shadow: 0 8px 20px rgba(255,122,0,0.4);
}

.tab-content-wrapper {
    position: relative;
    overflow: hidden;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ===== SERVICE ITEM ===== */
.service-item {
    background: rgba(0,0,0,0.6);
    border-left: 4px solid #ff7a00;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ===== LEBEGŐ CTA GOMBOK ===== */
.cta-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff7a00;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(255,122,0,0.5);
    transition: all 0.3s ease;
    z-index: 9999;
}

.cta-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,122,0,0.6);
}

.cta-float.email {
    bottom: 80px;
    background: #1f1f1f;
}

/* ===== MODAL ===== */
.modal-content {
    background: #1f1f1f;
    color: #fff;
}

.btn-warning {
    background: #ff7a00;
    border-color: #ff7a00;
}

.btn-warning:hover {
    background: #fff;
    color: #ff7a00;
}

/* ===== STICKY FOOTER ===== */
footer {
    background-color: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
/* Több hely a lead és gomb között */
.hero p.lead {
    margin-bottom: 50px; /* állíthatod 40-60px között, ami tetszik */
}