/* ==========================================================================
   Globális stílusok és változók
   ========================================================================== */

   :root {
    /* Színpaletta */
    --primary-dark: rgb(37, 60, 78);
    --primary-white: rgb(255, 255, 255);
    --accent-orange: rgb(237, 125, 49);
    --accent-blue: rgb(86, 193, 255);

    /* Gradientek */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-blue) 100%);

    /* Betűtípus */
    --font-family: 'Barlow Semi Condensed', sans-serif;

    /* Méretezés */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* Anchor scroll offset */
.service-section {
    scroll-margin-top: 80px;
}

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

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

/* ==========================================================================
   Tipográfia
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* ==========================================================================
   Navigáció
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37, 60, 78, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 35px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover .logo-img {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: lowercase;
}

.logo-pro {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-top: -0.2rem;
}

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

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

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

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

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

/* Hamburger menü */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* ==========================================================================
   Hero szekció
   ========================================================================== */

.hero {
    min-height: 100vh;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    color: var(--primary-white);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: center;
}

.highlight {
    color: var(--accent-orange);
    font-size: clamp(1rem, 6vw, 2.5rem);
    white-space: nowrap;
    display: block;
    width: 100%;
    text-align: center;
}

.highlight-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

/* Gombok */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: #d4742c;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background-color: #d4742c;
}

/* Hero subtitle */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    /* font-style: italic; */
}
.hero-lead {
    color: rgb(255 206 173);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.6;
    /* font-style: italic; */
}
/* Hero visual - csempék */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.grid-item {
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
    transition: var(--transition);
    cursor: pointer;
}

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

.grid-item:hover::before {
    opacity: 0.8;
}

.grid-large {
    background-image: url('../images/strategic.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation-delay: 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    height: 100%;
}

.grid-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 60, 78, 0.3);
    border-radius: var(--border-radius);
}

.grid-text {
    text-align: center;
    color: var(--primary-white);
    z-index: 2;
    position: relative;
    background: rgba(37, 60, 78, 0.6);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.grid-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.grid-text p {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
}



/* ==========================================================================
   Szekciók alapstílusa
   ========================================================================== */

.section {
    padding: 80px 0;
}

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

.section-title {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Modern Szakértelem Szekció - 2025 Design Trends
   ========================================================================== */

.expertise-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.expertise-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(86, 193, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-blue) 100%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* New Service Cards Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

/* Service Card Links */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-2px);
}

/* New Service Cards */
.service-card-new {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card-new:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

/* Service Icon Area */
.service-icon-area {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-icon-img {
    transform: scale(1.1);
}

/* Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-link-text {
    color: var(--accent-orange);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.service-link-text::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-link-text::after {
    transform: translateX(4px);
}



/* Modern Value Proposition */
.value-proposition {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    background: var(--primary-dark);
    padding: 4rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.value-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.value-intro h3 {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-white);
    margin: 0;
    letter-spacing: -0.01em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 60, 78, 0.3);
}

.value-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-white);
    margin: 0 0 0.5rem 0;
}

.value-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Modern CTA Button */
.cta-modern {
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-section {
    text-align: center;
}
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #f97316 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(237, 125, 49, 0.3);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(237, 125, 49, 0.4);
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern svg {
    transition: transform 0.3s ease;
}

.btn-modern:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Rólunk szekció (régi, eltávolítandó)
   ========================================================================== */

.about {
    background-color: #f8f9fa;
}

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

.about-text h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-of-type {
    margin-top: 0;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.1rem;
}

/* ==========================================================================
   Szolgáltatások szekció
   ========================================================================== */

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

.service-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(37, 60, 78, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   Ügyfeleink szekció
   ========================================================================== */

.clients {
    background-color: #f8f9fa;
}

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

.client-logo {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(37, 60, 78, 0.1);
}

.client-logo:hover {
    transform: translateY(-3px);
}

.logo-placeholder {
    color: #999;
    font-weight: 500;
    text-align: center;
}

/* ==========================================================================
   Kapcsolat szekció
   ========================================================================== */

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

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

/* Űrlap stílusok */
.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--primary-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(237, 125, 49, 0.1);
}

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

/* ==========================================================================
   Oldalspecifikus stílusok
   ========================================================================== */

/* Page Hero */
.page-hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    color: var(--primary-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin: 0;
}



/* Active nav link */
.nav-link.active {
    color: var(--accent-orange);
}

/* Rólam oldal */
.about-detailed-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-block {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid var(--accent-orange);
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
}

.quote-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.experience-section {
    margin-bottom: 3rem;
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--primary-white);
}

.experience-section h3 {
    color: var(--primary-white);
}

.experience-section p {
    color: rgba(255, 255, 255, 0.9);
}

.values-section {
    margin-bottom: 3rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.value-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.humor-content {
    flex: 1;
}

.humor-content strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.humor-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    font-style: italic;
}

.cta-personal {
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.cta-personal p {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

.experience-highlight {
    background-color: #f8f9fa;
}

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

.experience-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    border-top: 4px solid var(--accent-orange);
}

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

.experience-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.experience-card p {
    color: #666;
    margin: 0;
}

/* Szolgáltatások oldal */
.services-intro {
    text-align: center;
    background-color: #f8f9fa;
}

.intro-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.beliefs {
    max-width: 800px;
    margin: 3rem auto 0;
}

.beliefs h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.beliefs-list {
    list-style: none;
    padding: 0;
}

.beliefs-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.beliefs-list li::before {
    content: "•";
    color: var(--accent-orange);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

/* Main services container */
.main-services {
    padding: 0;
    padding-top: 40px;
}

/* Modern Service Sections with Different Themes */
.service-section {
    margin-bottom: 0;
    padding: 4rem 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

/* Light theme (Branding) */
.service-section-light {
    background: #f8f9fa;
    border-radius: 40px;
    margin-bottom: 20px;
}

.service-section-light .service-header h2 {
    color: var(--primary-dark);
}

.service-section-light .service-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 60, 78, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.service-section-light .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.service-section-light .service-item h4 {
    color: var(--primary-dark);
}

.service-section-light .service-item p {
    color: #666;
}

/* Orange theme (SMarketing) */
.service-section-orange {
    background: var(--accent-orange);
    color: white;
    border-radius: 40px;
    margin-bottom: 20px;
}

.service-section-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); */
    opacity: 0.3;
    pointer-events: none;
}

.service-section-orange .service-header h2 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-section-orange .service-emoji {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.service-section-orange .service-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-section-orange .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-section-orange .service-item h4 {
    color: var(--primary-dark);
}

.service-section-orange .service-item p {
    color: #555;
}

/* Dark theme (Go-to-market) */
.service-section-dark {
    background: var(--primary-dark);
    color: white;
    border-radius: 40px;
    margin-bottom: 20px;
}

.service-section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    /* background: radial-gradient(circle, rgba(86, 193, 255, 0.1) 0%, transparent 70%); */
    pointer-events: none;
}

.service-section-dark .service-header h2 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-section-dark .service-emoji {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.service-section-dark .service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-section-dark .service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service-section-dark .service-item h4 {
    color: white;
}

.service-section-dark .service-item p {
    color: rgba(255, 255, 255, 0.85);
}

/* Gradient theme (Workshops) */
.service-section-gradient {
    background: #f1f5f9;
    position: relative;
    border-radius: 40px;
    margin-bottom: 20px;
}

.service-section-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, transparent 30%, rgba(86, 193, 255, 0.05) 50%, transparent 70%); */
    pointer-events: none;
}

.service-section-gradient .service-header h2 {
    color: var(--primary-dark);
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}

.service-section-gradient .service-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(86, 193, 255, 0.2);
    box-shadow: 0 4px 20px rgba(86, 193, 255, 0.1);
    transition: all 0.3s ease;
}

.service-section-gradient .service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(86, 193, 255, 0.15);
    border-color: var(--accent-blue);
}
.service-section-gradient .workshop-note:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(86, 193, 255, 0.15);
    border-color: var(--accent-blue);
}
.service-section-gradient .service-item h4 {
    color: var(--primary-dark);
}

.service-section-gradient .service-item p {
    color: #64748b;
}

.service-section-gradient .service-description p {
    color: #64748b;
}

.service-section-gradient .workshop-note {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(86, 193, 255, 0.2);
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}

.service-section-gradient .workshop-note p {
    color: var(--primary-dark);
    margin: 0;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-emoji {
    font-size: 3rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.service-header h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.service-item {
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
    position: relative;
}

.service-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.service-description {
    margin-bottom: 2rem;
}

.service-description p {
    color: #666;
    margin-bottom: 1rem;
}

.workshop-note {
    margin: 2rem auto 0;
    text-align: center;
    /* font-style: italic; */
    width: 250px;
}

.services-cta {
    background-color: #f8f9fa;
    text-align: center;
}

/* Kapcsolat oldal */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-highlight {
    color: var(--accent-orange);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

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

.contact-item a{
    text-decoration: none;
}

.contact-item a:hover{
    color: #d4742c;
}


.services-offered {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.services-offered h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

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

.services-offered li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-offered li::before {
    content: "→";
    color: var(--accent-orange);
    position: absolute;
    left: 0;
}

.contact-form h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
}

.contact-form button[type="submit"] {
    display: block;
    margin: 0 auto;
}

.contact-cta {
    background-color: #f8f9fa;
    text-align: center;
}

.contact-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Responsive oldalak */
@media screen and (max-width: 1024px) {
    .about-detailed-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigáció mobil */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--box-shadow);
        padding: 2rem 0;
        gap: 1rem;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero mobil */
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .highlight-description {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-visual {
        height: 250px;
        margin-top: 2rem;
    }

    /* Szekciók mobil */
    .section {
        padding: 40px 0;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .service-section {
        padding: 2rem 0;
        margin-bottom: 15px;
        border-radius: 20px;
    }

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .service-header h2 {
        font-size: 1.8rem;
    }

    .service-emoji {
        font-size: 2rem;
    }

    .service-item {
        padding: 1.25rem;
    }

    .service-item h4 {
        font-size: 1.1rem;
    }

    .workshop-note {
        width: auto;
        margin: 1rem 20px 0;
    }

    /* Footer mobil */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        padding: 0 20px;
    }

    .linkedin-button-container {
        display: flex;
        justify-content: center;
    }

    /* Értékajánlat szekció mobil */
    .expertise-modern {
        padding: 40px 0;
    }

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

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }

    .service-card-new {
        padding: 1.5rem;
    }

    .value-proposition {
        margin: 40px 15px;
        padding: 2rem 1.5rem;
    }

    .value-intro h3 {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-item {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .contact-quote {
        font-size: 1.2rem;
    }

    .service-section {
        padding: 2rem 0;
    }

    .service-header h2 {
        font-size: 1.8rem;
    }

    .service-emoji {
        font-size: 2rem;
    }

    .service-item {
        padding: 1.25rem;
    }

    .service-item h4 {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--primary-dark);
    color: var(--primary-white);
    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,
.footer-section h4 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a:hover {
    text-decoration: underline !important;
}

.footer-section a:hover {
    color: var(--accent-orange) !important;
    text-decoration: underline !important;
}

/* LinkedIn button - from barkandclean */
.linkedin-button-container {
    margin-top: 1.5rem;
    /* text-align: center; */
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    margin: 0 auto;
}

#linkedin-link {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.2);
}

#linkedin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
    background: linear-gradient(135deg, #005885 0%, #004066 100%);
    color: white;
}

/* ==========================================================================
   Animációk
   ========================================================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animációk */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ==========================================================================
   Responsive design
   ========================================================================== */

/* Tablet és nagyobb mobilok */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 80px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .expertise-modern {
        padding: 60px 0;
    }
    
    .section-title-modern {
        font-size: 2.8rem;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 20px;
    }

    .presentations-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .about-detailed-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .contact-main .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
}

/* Mobil stílusok */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigáció mobil */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--box-shadow);
        padding: 2rem 0;
        gap: 1rem;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero mobil */
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .highlight-description {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-visual {
        height: 250px;
        margin-top: 2rem;
    }

    /* Szekciók mobil */
    .section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .service-section {
        padding: 2rem 0;
        margin-bottom: 15px;
        border-radius: 20px;
    }

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .service-header h2 {
        font-size: 1.8rem;
    }

    .service-emoji {
        font-size: 2rem;
    }

    .service-item {
        padding: 1.25rem;
    }

    .service-item h4 {
        font-size: 1.1rem;
    }

    .workshop-note {
        width: auto;
        margin: 1rem 20px 0;
    }

    /* Prezentációk mobil */
    .presentation-categories {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .category-item {
        margin: 0;
    }

    .presentation-card {
        margin: 0 15px;
    }

    .presentation-preview {
        height: 150px;
    }

    .presentation-content {
        padding: 1.5rem;
    }

    .presentation-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .presentation-actions {
        flex-direction: column;
    }

    /* Footer mobil */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        padding: 0 20px;
    }

    .linkedin-button-container {
        display: flex;
        justify-content: center;
    }

    /* Értékajánlat szekció mobil */
    .expertise-modern {
        padding: 40px 0;
    }

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

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }

    .service-card-new {
        padding: 1.5rem;
    }

    .value-proposition {
        margin: 40px 15px;
        padding: 2rem 1.5rem;
    }

    .value-intro h3 {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-item {
        padding: 1.5rem;
    }
}

/* Kis képernyős mobilok */
@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 60px;
    }

    .logo-img {
        height: 30px;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .logo-main {
        font-size: 0.9rem;
    }

    .logo-pro {
        font-size: 1.2rem;
    }

    .hero-container {
        margin-top: 60px;
    }

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

    .highlight-description {
        font-size: 1.1rem;
    }

    .service-grid {
        padding: 10px;
    }

    .service-item {
        padding: 1rem;
    }

    .presentation-preview {
        height: 120px;
    }

    .preview-image i {
        font-size: 3rem;
    }

    .presentation-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .btn-sm {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Extra kis képernyők */
@media screen and (max-width: 320px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .highlight-description {
        font-size: 1rem;
    }

    .service-grid {
        padding: 5px;
    }

    .service-item {
        padding: 0.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Prezentációk oldal stílusok
   ========================================================================== */

/* Prezentációk bevezetés */
.presentations-intro {
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 0;
}

.presentations-intro .intro-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.presentations-intro .intro-content p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Kategóriák */
.presentation-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 20px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 60px;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.category-item span {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Prezentációk grid */
.presentations-grid {
    background: white;
    padding: 80px 0;
}

.presentations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

/* Prezentáció kártya */
.presentation-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.presentation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Preview terület */
.presentation-preview {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.preview-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.presentation-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Prezentáció tartalom */
.presentation-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.presentation-content h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.presentation-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Meta információk */
.presentation-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

/* Műveletek */
.presentation-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* CTA szekció */
.presentations-cta {
    background-color: #f8f9fa;
    text-align: center;
}

/* Simple PDF.js Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.pdf-modal-content {
    position: relative;
    width: 95%;
    height: 95%;
    margin: 2.5% auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
    background: var(--primary-dark);
    color: white;
    flex-shrink: 0;
}

.pdf-header h3 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.pdf-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pdf-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.pdf-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pdf-btn:hover {
    background: #d4742c;
    transform: translateY(-1px);
}

.pdf-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pdf-page-info {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
}

.pdf-zoom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pdf-btn-sm {
    background: white;
    border: 1px solid #ddd;
    color: var(--primary-dark);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-btn-sm:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

#zoomLevel {
    font-weight: 600;
    color: var(--primary-dark);
    min-width: 50px;
    text-align: center;
    font-size: 0.9rem;
}

.pdf-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    position: relative;
    overflow: auto;
    padding: 2rem;
}

#pdf-canvas {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    background: white;
}

.pdf-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.pdf-loading i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.pdf-loading p {
    color: var(--primary-dark);
    font-weight: 500;
    margin: 0;
    font-size: 1.1rem;
}

.pdf-download-fallback {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pdf-download-fallback:hover {
    background: #d4742c;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ==========================================================================
   Responsive design - Prezentációk
   ========================================================================== */

/* Tablet */
@media screen and (max-width: 1024px) {
    .presentations-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 0 20px;
    }

    .presentation-categories {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
}

/* Mobil */
@media screen and (max-width: 768px) {
    .presentations-intro {
        padding: 40px 0;
    }

    .presentations-intro .intro-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .presentations-intro .intro-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }

    .presentation-categories {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0 20px;
    }

    .category-item {
        padding: 0.75rem 1rem;
        min-height: 50px;
        border-radius: 30px;
    }

    .category-item span {
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
    }

    .presentations-grid {
        padding: 40px 0;
    }

    .presentations-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .presentation-card {
        min-height: auto;
        margin: 0 auto;
        max-width: 400px;
    }

    .presentation-preview {
        height: 160px;
    }

    .preview-image i {
        font-size: 3.5rem;
    }

    .presentation-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .presentation-content {
        padding: 1.5rem;
    }

    .presentation-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .presentation-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .presentation-meta {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .meta-item {
        font-size: 0.85rem;
    }

    .presentation-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .btn-sm {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Kis mobilok */
@media screen and (max-width: 480px) {
    .presentations-intro .intro-content h2 {
        font-size: 1.8rem;
    }

    .presentation-categories {
        padding: 0 15px;
    }

    .presentations-container {
        padding: 0 10px;
    }

    .presentation-card {
        max-width: 100%;
    }

    .presentation-preview {
        height: 140px;
    }

    .preview-image i {
        font-size: 3rem;
    }

    .presentation-content {
        padding: 1.25rem;
    }

    .presentation-content h3 {
        font-size: 1.1rem;
    }

    .presentation-content p {
        font-size: 0.9rem;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .pdf-header {
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .pdf-header h3 {
        font-size: 1.1rem;
    }

    .pdf-controls {
        padding: 0.5rem 0.8rem;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .pdf-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        flex: 0 0 auto;
        min-width: auto;
    }

    .pdf-zoom {
        justify-content: center;
        gap: 0.5rem;
        flex: 0 0 auto;
    }

    .pdf-page-info {
        text-align: center;
        font-size: 0.85rem;
        flex: 1;
        min-width: 0;
    }

    .pdf-container {
        padding: 0.5rem;
    }

    #pdf-canvas {
        max-width: calc(100vw - 1rem);
        max-height: calc(100vh - 160px);
    }
}

/* Extra kis mobilok */
@media screen and (max-width: 320px) {
    .presentations-intro .intro-content h2 {
        font-size: 1.6rem;
    }

    .presentation-content {
        padding: 1rem;
    }

    .presentation-preview {
        height: 120px;
    }

    .preview-image i {
        font-size: 2.5rem;
    }

    .pdf-modal-content {
        width: 98%;
        height: 98%;
        margin: 1% auto;
    }

    .pdf-header {
        padding: 0.3rem 0.5rem;
    }

    .pdf-header h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .pdf-close {
        font-size: 1.2rem;
        padding: 0.25rem;
    }

    .pdf-controls {
        padding: 0.4rem 0.5rem;
        gap: 0.3rem;
        min-height: auto;
    }

    .pdf-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        border-radius: 4px;
    }

    .pdf-btn span {
        display: none; /* Hide text on very small screens */
    }

    .pdf-page-info {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .pdf-btn-sm {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        padding: 0.2rem;
    }

    #zoomLevel {
        font-size: 0.7rem;
        min-width: 35px;
    }

    .pdf-zoom {
        gap: 0.3rem;
    }

    .pdf-container {
        padding: 0.25rem;
    }

    #pdf-canvas {
        max-width: calc(100vw - 0.5rem);
        max-height: calc(100vh - 140px);
    }

    .pdf-controls {
        padding: 0.25rem 0.4rem;
        gap: 0.2rem;
    }

    .pdf-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.6rem;
    }

    .pdf-btn-sm {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    #zoomLevel {
        font-size: 0.6rem;
        min-width: 30px;
    }

    .pdf-page-info {
        font-size: 0.65rem;
    }
}