/* ==========================================
   ALAP BEÁLLÍTÁSOK & VÁLTOZÓK
   ========================================== */

:root {
    /* Színek - Sárga/Narancs/Meleg téma */
    --primary-color: #F5A623;
    --primary-light: #FFB84D;
    --primary-dark: #E69500;
    --secondary-color: #FFC857;
    --accent-color: #FF9F1C;
    
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --warm-yellow: #FFF3CD;
    
    /* Neutrális színek */
    --bg-light: #FFFEF9;
    --bg-cream: #FFF9E6;
    --bg-white: #FFFFFF;
    --text-dark: #2C1810;
    --text-medium: #5D4E37;
    --text-light: #8B7355;
    
    /* Gradientek */
    --gradient-primary: linear-gradient(135deg, #FFB84D 0%, #F5A623 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 184, 77, 0.95) 0%, rgba(245, 166, 35, 0.9) 100%);
    --gradient-gold: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    
    /* Árnyékok */
    --shadow-sm: 0 2px 8px rgba(245, 166, 35, 0.1);
    --shadow-md: 0 4px 16px rgba(245, 166, 35, 0.15);
    --shadow-lg: 0 8px 32px rgba(245, 166, 35, 0.2);
    --shadow-xl: 0 12px 48px rgba(245, 166, 35, 0.25);
    
    /* Betűtípusok */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Méretek */
    --max-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ==========================================
   ALAPBEÁLLÍTÁSOK
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==========================================
   NAVIGÁCIÓ
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

/* Dropdown menü */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--bg-cream);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.dropdown-link.active {
    color: var(--primary-color);
    background: var(--warm-yellow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================
   HERO SZEKCIÓ
   ========================================== */

.hero {
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero), url('../images/Kezdőlapra_kép.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(245, 166, 35, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--bg-white);
    font-style: italic;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--bg-white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* ==========================================
   GOMBOK
   ========================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   SZEKCIÓ ALAPOK
   ========================================== */

section {
    padding: 5rem 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   RÓLAM SZEKCIÓ
   ========================================== */

.about {
    background: var(--bg-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-wrapper {
    position: relative;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: 0;
}

.image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.1) 0%, rgba(245, 166, 35, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.emphasized {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-dark);
    font-style: italic;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-medium);
    border-left: 4px solid var(--gold);
    padding-left: 2rem;
    margin: 2rem 0;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    left: -10px;
    top: -20px;
    opacity: 0.3;
}

.closing {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.signature {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    font-style: italic;
    margin: 2rem 0;
}

/* ==========================================
   VÉGZETTSÉGEK SZEKCIÓ
   ========================================== */

.qualifications {
    background: var(--bg-white);
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.qual-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.qual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.qual-card.featured {
    background: var(--gradient-primary);
    color: var(--bg-white);
}

.qual-card.featured h3,
.qual-card.featured p {
    color: var(--bg-white);
}

.qual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.qual-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.qual-card p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.qual-card a {
    color: var(--primary-dark);
    font-size: 0.9rem;
    text-decoration: underline;
}

.qual-card.featured a {
    color: var(--bg-white);
}

.qual-detail {
    font-style: italic;
    font-size: 0.95rem;
}

/* ==========================================
   SZOLGÁLTATÁSOK SZEKCIÓ
   ========================================== */

.services {
    background: var(--gradient-hero);
    color: var(--bg-white);
}

.services .section-title,
.services .section-description {
    color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    color: var(--text-dark);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-white);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.service-card > p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    text-align: left;
}

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

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

/* ==========================================
   KAPCSOLAT SZEKCIÓ
   ========================================== */

.contact {
    background: var(--bg-cream);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-card.full-width {
    grid-column: 1 / -1;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--text-medium);
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-medium);
    margin: 0.25rem 0;
}

/* Kapcsolati űrlap */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a0f08 100%);
    color: var(--bg-cream);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-family: var(--font-heading);
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 166, 35, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

/* ==========================================
   VISSZA A TETEJÉRE GOMB
   ========================================== */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        align-items: center;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-link {
        text-align: center;
        width: 100%;
    }
    
    .dropdown {
        width: 100%;
        text-align: center;
    }
    
    /* Dropdown mobil stílusok */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--bg-cream);
        margin: 0.5rem 0;
        padding: 0;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-link {
        padding: 0.75rem 1rem;
        border-left: 3px solid transparent;
    }
    
    .dropdown-link:hover,
    .dropdown-link.active {
        border-left-color: var(--primary-color);
        padding-left: 1.25rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        position: static;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .qualifications-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ==========================================
   ANIMÁCIÓK & EFFEKTEK
   ========================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-icon {
    animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 1s;
}

/* Fade-in animáció görgetéskor */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   JOGI OLDALAK (ADATKEZELÉS, ÁSZF)
   ========================================== */

.page-header {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 6rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 4rem 0;
    background: var(--bg-light);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-notice {
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.15) 0%, rgba(245, 166, 35, 0.15) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.legal-section {
    background: var(--bg-white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.legal-section h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

.highlight-section {
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.05) 0%, rgba(245, 166, 35, 0.05) 100%);
    border: 2px solid var(--primary-light);
}

.important-section {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.08) 0%, rgba(245, 166, 35, 0.08) 100%);
    border-left: 5px solid var(--accent-color);
}

/* Listák stílusai */
.info-list,
.standard-list,
.definition-list,
.numbered-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.info-list li,
.standard-list li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.info-list li {
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.standard-list li {
    list-style-type: disc;
}

.definition-list li {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-cream);
    border-radius: 8px;
}

.definition-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.numbered-list {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.numbered-list li {
    counter-increment: item;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.8;
}

.numbered-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

/* ==========================================
   LÉLEKHANG OLDAL EXTRA STÍLUSOK
   ========================================== */

.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.testimonials {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.testimonial-item {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.testimonial-item p {
    margin: 0;
    color: var(--text-dark);
}

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

.price-item {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.price-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-item .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: white;
}

.price-item .duration {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.price-item .note {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

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

/* Szolgáltatás oldal specific stílusok */
.service-detail {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.service-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 1rem;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.service-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
}

.service-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.service-content ul {
    margin: 1.5rem 0;
}

.info-box {
    background: var(--bg-cream);
    border: 2px solid var(--primary-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
}

.info-box p {
    margin-bottom: 0.8rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.pricing {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.pricing h3 {
    color: white !important;
    margin-top: 0;
}

.pricing p,
.pricing ul,
.pricing li {
    color: white;
}

.pricing ul {
    list-style: none;
    padding: 0;
}

.pricing li {
    padding: 0.5rem 0;
}

.cta-section {
    text-align: center;
    background: var(--bg-cream);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
}

.cta-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.quote-author {
    display: block;
    text-align: right;
    font-size: 1rem;
    margin-top: 1rem;
    color: var(--primary-color);
}

/* Tanfolyamok oldal stílusok */
.course-section {
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--bg-cream);
}

.course-section:last-of-type {
    border-bottom: none;
}

.course-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.course-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
}

.course-section h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem 0;
}

.external-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

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

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

blockquote.quote {
    background: var(--bg-cream);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* ==========================================
   PRINT STÍLUSOK
   ========================================== */

/* Developer credit hover effect */
.footer-bottom a:hover {
    color: #ddd !important;
}

@media print {
    .navbar,
    .hero-buttons,
    .scroll-top,
    .contact-form-wrapper {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .legal-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}