/* ============================================
   OneCo Ingatlan Kft. - Egysegesiett CSS
   Minden oldal kozos es egyedi stilusai
   ============================================ */

/* === CSS VALTOZOK === */
:root {
    --background: #ffffff;
    --foreground: #1f2937;
    --card: #f9fafb;
    --card-foreground: #1f2937;
    --primary: #065f46;
    --primary-foreground: #ffffff;
    --secondary: #e1e1e1;
    --secondary-foreground: #1f2937;
    --muted: #fffbeb;
    --muted-foreground: #374151;
    --accent: #caa603;
    --accent-foreground: #ffffff;
    --border: #e5e7eb;
    --radius: 0.5rem;
}

/* === RESET & ALAP === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bold {
    font-weight: bold;
}

/* === HEADER === */
.header {
    background: var(--background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary);
}

.logo-motto {
    opacity: 0.8;
    font-style: italic;
    font-size: 1rem;
    color: #002d21;
    margin: 0;
    white-space: nowrap;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    padding-left: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* === DESKTOP DROPDOWN === */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--foreground);
    font-weight: 500;
}

.dropdown-toggle::after {
    content: '\25BC';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    color: var(--foreground);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--secondary);
    color: var(--primary);
    padding-left: 2rem;
}

.dropdown-menu a.featured {
    color: #dc2626;
    font-weight: 600;
}

/* === CTA & SECONDARY GOMBOK === */
.cta-button, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button {
    background: transparent;
    color: var(--primary-foreground);
    border: 2px solid var(--primary-foreground);
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-foreground);
    border: 2px solid var(--primary-foreground);
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
}

/* === MOBIL MENU === */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    font-family: 'Source Sans Pro', sans-serif;
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li {
    padding: 0.5rem 0;
    border-bottom: none;
}

.mobile-dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* === HERO SECTION === */
/* Fooldal hero (hatterkeppel) */
.hero {
    background: linear-gradient(rgba(6, 95, 70, 0.9), rgba(6, 95, 70, 0.9)), url('fooldalra.png') center/cover no-repeat;
    color: white;
    padding: 220px 0 80px;
    text-align: center;

}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.hero-feature i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.hero-feature span {
    font-weight: 600;
    font-size: 1rem;
}

/* Aloldalak hero (szolid hatter) - felulirja a fooldal herot ha nincs hatterkep */
.hero-simple {
    background-color: #065f46;
    background-image: none;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

/* === SECTION CIMEK === */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === SERVICES SECTION (Fooldal) === */
.services {
    padding: 80px 0;
    background: var(--background);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1.5fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    min-height: 550px;
    align-items: center;
    justify-content: space-between;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
}

.service-icon {
    background: var(--primary);
    color: var(--primary-foreground);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--muted-foreground);
}

.service-features li:before {
    content: "\2713";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* === CONTENT SECTION (Aloldalak) === */
.content-section {
    padding: 80px 0;
    background: var(--background);
}

/* === FEATURES GRID (Aloldalak: kft, bt, stb.) === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
}

.feature-icon {
    background: var(--card);
    color: var(--primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* === PRICING SECTION === */
.pricing {
    padding: 80px 0;
    background: var(--secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(6, 95, 70, 0.35);
    background: #f0fdf4;
    border-color: var(--primary);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Legnepszerubb";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.pricing-subtitle {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.pricing-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.75rem 0;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.pricing-features {
    list-style: none;
    margin: 1.25rem 0;
}

.pricing-features li {
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features i {
    color: #10b981;
    width: 16px;
}

.pricing-card ul {
    flex-grow: 1;
}

/* === ORDER BUTTON === */
.order-btn {
    display: block;
    margin-top: 1rem;
    text-align: center;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: var(--primary);
    color: white;
}

.pricing-card .order-btn {
    margin-top: auto;
}

/* === WHY CHOOSE US (Fooldal) === */
.why-choose {
    padding: 80px 0;
    background: var(--background);
}

/* === ABOUT SECTION (Fooldal) === */
.about {
    padding: 80px 0;
    background: var(--secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.team-member h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* === CONTACT SECTION (Fooldal) === */
.contact {
    padding: 120px 0;
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    background: var(--primary);
    color: var(--primary-foreground);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-form iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    text-align: center;
}

.contact-form p i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* === FAQ SECTION (Fooldal) === */
.faq {
    padding: 4rem 2rem;
    background: var(--secondary);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(6, 95, 70, 0.15);
}

.faq h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-subtitle {
    text-align: center;
    color: var(--foreground);
    opacity: 0.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.faq-item {
    background: #f8faf9;
    border: 2px solid #e0e7e4;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: white;
    border-color: var(--primary);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.15);
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    position: absolute;
    right: 1.5rem;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;        /* görgetés ha túl hosszú */
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 65vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0 1.5rem 1.5rem 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

/* FAQ scrollbar stilusok */
.faq-answer::-webkit-scrollbar {
    width: 8px;
}

.faq-answer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.faq-answer::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.faq-answer::-webkit-scrollbar-thumb:hover {
    background: #054d38;
}

.faq-answer p {
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--foreground);
    line-height: 1.6;
}

/* === SOCIAL MEDIA ICONS === */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Contact section social links */
.contact-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-social-link {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* === FOOTER === */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    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: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--primary-foreground);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* === ANIMACIOK === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   BLOG OLDAL SPECIFIKUS STILUSOK
   ============================================ */

/* Blog osszesito oldal (blogok.php) */
.blog-hero {
    background: linear-gradient(rgba(6, 95, 70, 0.85), rgba(6, 95, 70, 0.85)), url('blog-hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.blog-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Blog list */
.blog-list {
    padding: 80px 0;
    background: var(--secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 95, 70, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--secondary);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.blog-card-meta i {
    color: var(--primary);
}

.blog-card-category {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: var(--accent);
    gap: 0.75rem;
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(3px);
}

/* Blog cikk oldalak */
.blog-article-hero {
    background: linear-gradient(rgba(6, 95, 70, 0.9), rgba(6, 95, 70, 0.9)), url('blog-cegalapitas.jpg') center/cover no-repeat;
    color: white;
    padding: 180px 0 80px;
    text-align: center;
}

.blog-article-hero .blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.blog-article-hero .blog-meta i {
    margin-right: 0.5rem;
}

.blog-article-hero .blog-category {
    background: var(--accent);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.blog-article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.blog-article-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Blog tartalom */
.blog-content {
    padding: 60px 0;
    background: var(--background);
}

.blog-content .container {
    max-width: 800px;
}

.blog-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

.blog-content p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--foreground);
}

.blog-content ul, .blog-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.blog-content strong {
    color: var(--primary);
}

/* Highlight box (blogokban) */
.highlight-box {
    background: var(--muted);
    border-left: 4px solid var(--accent);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.highlight-box ul {
    margin: 0;
    padding-left: 1.25rem;
}

.highlight-box li {
    margin-bottom: 0.5rem;
}

/* Step box (blogokban) */
.step-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
}

/* Blog CTA */
.blog-cta {
    background: var(--primary);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin: 3rem 0;
}

.blog-cta h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-cta .cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.blog-cta .cta-button:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Kapcsolodo posztok */
.related-posts {
    padding: 60px 0;
    background: var(--secondary);
}

.related-posts h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card-content {
    padding: 1.25rem;
}

.related-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.related-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.related-card a:hover {
    color: var(--accent);
}

/* Vissza a blogra gomb */
.back-to-blog {
    text-align: center;
    padding: 2rem 0;
}

.back-to-blog a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-to-blog a:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   MEGRENDELES OLDAL SPECIFIKUS STILUSOK
   ============================================ */
.order-section {
    padding: 80px 0;
    background: var(--secondary);
}

.order-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--background);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha-box {
    background: var(--muted);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--accent);
    margin-bottom: 1.5rem;
}

.captcha-box label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.captcha-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.captcha-box input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1.25rem;
    text-align: center;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.3);
}

.message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.message.error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #dc2626;
}

/* ============================================
   JOGI OLDALAK (Adatkezelesi tajekoztato, Impresszum)
   ============================================ */
.legal-hero {
    background: linear-gradient(rgba(6, 95, 70, 0.95), rgba(6, 95, 70, 0.95));
    color: white;
    padding: 160px 0 60px;
    text-align: center;
}

.legal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 60px 0;
    background: var(--background);
}

.legal-content .container {
    max-width: 860px;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--foreground);
}

.legal-content ul, .legal-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--primary);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--accent);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.legal-table tr:nth-child(even) {
    background: var(--card);
}

.legal-info-box {
    background: var(--muted);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.legal-info-box p {
    margin-bottom: 0.25rem;
}

.legal-back {
    text-align: center;
    padding: 2rem 0 3rem;
}

.legal-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.legal-back a:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   IRODA GALERIA (Kapcsolat szekció)
   ============================================ */
.office-gallery {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.office-gallery h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-gallery h4 i {
    color: var(--accent);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(6, 95, 70, 0.8));
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.gallery-dot:hover {
    background: rgba(255,255,255,0.8);
}

.gallery-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.gallery-nav {
    display: flex;
    gap: 0.5rem;
}

.gallery-nav button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav button:hover {
    background: var(--accent);
}

.gallery-expand {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(6, 95, 70, 0.7);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.gallery-expand:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 95, 70, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--accent);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.5rem 2rem;
    border-top: 3px solid var(--primary);
    animation: cookieSlideUp 0.4s ease-out;
}

.cookie-banner.active {
    display: block;
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-text {
    margin-bottom: 1rem;
}

.cookie-banner-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--foreground);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    color: var(--accent);
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Source Sans Pro', sans-serif;
}

.cookie-btn-accept {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cookie-btn-accept:hover {
    background: #047857;
    border-color: #047857;
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.cookie-btn-settings:hover {
    background: var(--primary);
    color: white;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--muted-foreground);
    border-color: var(--border);
}

.cookie-btn-reject:hover {
    background: var(--card);
    border-color: var(--muted-foreground);
    color: var(--foreground);
}

/* Cookie beallitasok panel */
.cookie-settings-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    animation: cookieFadeIn 0.3s ease-out;
}

.cookie-settings-panel.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes cookieFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-settings-box {
    background: var(--background);
    border-radius: var(--radius);
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cookie-settings-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cookie-settings-box > p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-settings-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
    line-height: 1;
}

.cookie-settings-close:hover {
    color: var(--foreground);
}

.cookie-category {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category-header label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
    cursor: pointer;
}

.cookie-category-header .cookie-always-active {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(6, 95, 70, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.cookie-category p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    border-radius: 26px;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-settings-save {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.cookie-settings-save:hover {
    background: #047857;
}

.cookie-settings-legal {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.cookie-settings-legal a {
    color: var(--primary);
    text-decoration: underline;
}

/* Footer cookie link */
.footer-cookie-link {
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-foreground);
    opacity: 0.8;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
    transition: opacity 0.3s ease;
}

.footer-cookie-link:hover {
    opacity: 1;
    text-decoration: underline;
}

* Áthúzott régi ár */
.price-original {
    text-decoration: line-through;
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Piros -10% badge */
.badge-discount {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.promo-banner {
    background: #1a1a1a;
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    margin-top: 100px;
    width: 100%;
}

.promo-banner-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.promo-banner-track:hover {
    animation-play-state: paused;
}

.promo-banner-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
    white-space: nowrap;
}

.promo-banner-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-badge-red {
    background: #dc2626;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
}

.promo-btn {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-btn:hover {
    background: #b91c1c;
    transform: scale(1.05);
}


@keyframes marquee {
    00% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet nezet */
@media (min-width: 769px) and (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil nezet */
@media (max-width: 768px) {

    /* Header mobil */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        overflow-x: hidden;
        background: var(--background);
    }

    .header .container {
        padding: 0.75rem 1rem;
        max-width: 100%;
        overflow: hidden;
    }

    .nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .nav-links {
        display: none;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--background);
        z-index: 999;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
        padding: 10px;
        flex-shrink: 0;
        margin-left: auto;
        z-index: 1002;
        -webkit-tap-highlight-color: transparent;
    }

    .cta-button {
        display: none;
    }

    /* Logo mobil */
    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
    }

    .logo img {
        height: 40px;
        width: auto;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-motto {
        font-size: 0.7rem;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 220px;
    }

    /* Hero mobil */
    .hero {
        padding: 8rem 1rem 4rem 1rem !important;
        text-align: center !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        line-height: 1.3 !important;
    }

    .hero p {
        text-align: center !important;
        padding: 0 1rem !important;
    }

    .hero-features {
        gap: 1rem;
        justify-content: center;
    }

    .hero-feature {
        font-size: 0.9rem;
    }

    /* Services mobil */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        min-height: auto;
        padding: 1.5rem;
    }

    /* Features mobil */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing mobil */
    .pricing-card.featured {
        transform: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* About mobil */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr !important;
    }

    .about .container {
        padding: 2rem 1rem !important;
    }

    .about h2.section-title {
        font-size: 2rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
        margin-bottom: 2rem !important;
    }

    .about-content > div {
        width: 100% !important;
        margin: 0 !important;
        padding: 1rem !important;
    }

    .about-content > div > div[style*="background"] {
        padding: 1.5rem !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .about-content h3 {
        text-align: center !important;
        font-size: 1.5rem !important;
    }

    .about-content h4 {
        font-size: 1rem !important;
        word-break: break-word;
    }

    .about-content p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }

    /* Blog mobil */
    .blog-hero {
        padding: 140px 1rem 60px;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-article-hero {
        padding: 140px 1rem 60px;
    }

    .blog-article-hero h1 {
        font-size: 1.8rem;
    }

    .blog-article-hero .blog-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .step-box {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    /* Megrendeles mobil */
    .order-form-container {
        padding: 1.5rem;
        margin: 0 15px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    /* Jogi oldalak mobil */
    .legal-hero {
        padding: 130px 1rem 50px;
    }

    .legal-hero h1 {
        font-size: 1.8rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-table {
        font-size: 0.85rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.5rem;
    }

    /* Cookie banner mobil */
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-text h3 {
        font-size: 1.05rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .cookie-settings-box {
        padding: 1.25rem;
        width: 95%;
    }

    .cookie-settings-box h3 {
        font-size: 1.15rem;
        padding-right: 2rem;
    }

    .cookie-category {
        padding: 0.75rem 1rem;
    }

    .cookie-category-header label {
        font-size: 0.9rem;
    }

    /* Iroda galeria mobil */
    .gallery-container {
        height: 180px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }

    .lightbox-counter {
        bottom: 20px;
    }


    .promo-banner {
        padding: 10px 0;
        margin-top: 70px;
    }
    
    .promo-banner-text {
        font-size: 0.85rem;
    }
    
    .promo-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .promo-banner-content {
        gap: 2rem;
        padding: 0 1rem;
    }
}
