/* =============================================
   KIP FAMILY KFT - STÄÂLUSLAP
   SzÄÂ­nek: SÄĹtÄĹ tkÄĹ k #0a1628 | Arany #d4a534 | BordÄĹ #8B2332
   ============================================= */


/* =============================================
   ACCESSIBILITY
   ============================================= */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s;
    opacity: 0;
}

.skip-link:focus {
    top: 0;
    opacity: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-slide {
        transition: none !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* =============================================
   CSS VÄÂLTOZÄÂK
   ============================================= */

:root {
    --primary-dark:          #0a1628;
    --primary-gold:          #d4a534;
    --primary-gold-light:    #e8c15a;
    --primary-bordo:         #8B2332;
    --primary-bordo-dark:    #6d1c28;
    --text-light:            #f5f5f5;
    --text-dark:             #1a1a1a;
    --bg-light:              #f5e6c8;
    --bg-cream:              #faf6ed;
    --bg-premium:            #f6f1ea;
    --shadow:                0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-light:          0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-premium:        0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-premium-hover:  0 20px 60px rgba(0, 0, 0, 0.15);
    --transition:            all 0.3s ease;
    --transition-slow:       all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-premium:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius:         8px;
    --border-radius-premium: 24px;
}


/* =============================================
   ALAP RESET
   ============================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =============================================
   PRELOADER / TÄÂLTÄšÂKÄÂPERNYÄšÂ
   ============================================= */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 200px;
    max-width: 80%;
    height: auto;
    margin-bottom: 40px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 165, 52, 0.2);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    color: var(--primary-gold);
    margin-top: 25px;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.05); opacity: 0.85; }
}


/* =============================================
   HEADER Ă˘ÂÂ animÄÄlt scroll verziÄĹ
   ============================================= */

.header {
    background: var(--primary-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    max-width: 1200px;
    margin: 0 auto;
    transition: var(--transition-slow);
}

.header.scrolled .header-container {
    padding: 5px 20px;
}

/* LogÄĹ */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 110px;
    width: auto;
    margin: -15px 0;
    transition: var(--transition-slow);
}

.header.scrolled .logo img {
    height: 70px;
    margin: -10px 0;
}

/* NavigÄÄciÄĹ */
.nav-menu {
    display: flex;
    gap: 30px;
    transition: var(--transition-slow);
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition-slow);
}

.header.scrolled .nav-menu a {
    font-size: 0.9rem;
    padding: 8px 12px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}

/* Hamburger menÄĹş */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    outline: none;
    padding: 6px;
    margin: 0;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hamburger:focus {
    outline: none;
    box-shadow: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition);
    pointer-events: none;
}


/* =============================================
   HERO SECTION Ă˘ÂÂ PrÄĹ mium navy + arany mockup
   Desktop: bal szÄĹvegpanel + jobb kÄĹ ppanel
   ============================================= */

/* --- ALAP SZEKCIÄÂ --- */
.hero-premium {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #071020;          /* mÄĹ lyebb navy mint a --primary-dark */
    padding: 0;
}


/* ============================================================
   BAL OLDAL Ă˘ÂÂ sÄĹtÄĹ t szÄĹvegpanel
   ============================================================ */

.hero-text-panel {
    position: relative;
    z-index: 3;
    width: 58%;              /* kicsit szÄĹ lesebb hogy a V alak jobban lÄÄtszÄĹdjon */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(100px, 10vh, 140px) clamp(40px, 5vw, 80px) clamp(60px, 8vh, 100px) clamp(40px, 5vw, 80px);
    background: linear-gradient(
        105deg,
        #071020 0%,
        #0a1628 60%,
        rgba(10, 22, 40, 0.96) 80%,
        rgba(10, 22, 40, 0.85) 90%,
        transparent 100%
    );
    /* Ferde jobb szÄĹ l Ă˘ÂÂ V alak jobbra: balrÄÄbb tolva = tÄĹbb tÄĹ r a kÄĹ pnek */
    clip-path: polygon(0% 0%, 80% 0%, 95% 50%, 80% 100%, 0% 100%);
}

/* Navy takarÄĹ sÄÄv: a divider vonal bal rÄĹ szÄĹ t takarja el,
   ÄÂ­gy a vonal csak a V alak MÄÂGÄÂTT (szÄĹvegpanel jobb szÄĹ lÄĹ n tÄĹl) lÄÄtszik */
.hero-text-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: -150px;
    width: 190px;
    height: 100%;
    background: linear-gradient(
        to right,
        #071020 0%,
        #0a1628 30%,
        rgba(10, 22, 40, 0.0) 100%
    );
    clip-path: polygon(0% 0%, 60% 0%, 100% 50%, 60% 100%, 0% 100%);
    z-index: 4;
    pointer-events: none;
}

/* FelsÄšÂ label */
.hero-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.7s ease 0.1s forwards;
}

/* FÄšÂcÄÂ­m */
.hero-title {
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    text-shadow: none;
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 0.8s ease 0.25s forwards;
}

/* "Budapesten" szÄĹ arany */
.hero-title-gold {
    color: var(--primary-gold);
    display: block;
}

/* LeÄÂ­rÄĹ szÄĹveg */
.hero-description {
    font-size: clamp(0.88rem, 1.1vw, 1.05rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 36px;
    text-shadow: none;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease 0.4s forwards;
}

/* --- CTA GOMBOK --- */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.8s ease 0.55s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    text-decoration: none;
}

.hero-btn-arrow {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.hero-btn:hover .hero-btn-arrow {
    transform: translateX(4px);
}

/* ElsÄšÂdleges gomb Ă˘ÂÂ arany kitÄĹltÄĹtt */
.hero-btn-primary {
    background: var(--primary-gold);
    color: #071020;
    border: 2px solid var(--primary-gold);
}

.hero-btn-primary:hover {
    background: var(--primary-gold-light);
    border-color: var(--primary-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 52, 0.35);
    color: #071020;
}

/* MÄÄsodlagos gomb Ă˘ÂÂ ÄÄtlÄÄtszÄĹ, arany kerettel */
.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    color: #ffffff;
}

/* --- STATISZTIKA PANEL --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 165, 52, 0.18);
    border-radius: 10px;
    padding: 20px 24px;
    max-width: 520px;
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.8s ease 0.7s forwards;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.hero-stat-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.3px;
}

.hero-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.hero-stat-label--top {
    color: rgba(255, 255, 255, 0.7);
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(212, 165, 52, 0.25);
    flex-shrink: 0;
    margin: 0 20px;
}


/* ============================================================
   JOBB OLDAL Ă˘ÂÂ kÄĹ ppanel + slideshow
   ============================================================ */

.hero-image-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Slideshow kontÄĹ ner Ă˘ÂÂ fade-in betÄĹltÄĹ skor */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: heroImageReveal 1.4s ease 0.2s both;
}

@keyframes heroImageReveal {
    from {
        opacity: 0;
        transform: scale(1.04);
        filter: brightness(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

/* Egyedi slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.4s ease-in-out;
    filter: brightness(0.85) saturate(1.05);
}

.hero-slide.active {
    opacity: 1;
}

/* Overlay a kÄĹ pen: csak jobb oldalon ÄĹ s alul finoman sÄĹtÄĹ tÄÂ­t */
.hero-image-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(7, 16, 32, 0.3) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* AlsÄĹ sÄĹtÄĹ t ÄÄtmenet */
.hero-image-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(7, 16, 32, 0.5) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* --- FERDE ARANY ELVÄÂLASZTÄÂ --- */
.hero-divider {
    position: absolute;
    top: 0;
    left: calc(55% - 240px);
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-divider svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 6px rgba(212, 165, 52, 0.9))
            drop-shadow(0 0 12px rgba(212, 165, 52, 0.5));
}

/* --- SLIDE INDIKÄÂTOROK --- */
.hero-indicators {
    position: absolute;
    bottom: 28px;
    right: 28px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-indicator {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

.hero-indicator.active {
    background: var(--primary-gold);
    width: 42px;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.65);
}


/* ============================================================
   HERO ANIMÄÂCIÄÂK
   ============================================================ */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(var(--from-y, 20px));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-label,
    .hero-title,
    .hero-description,
    .hero-cta-buttons,
    .hero-stats {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-slide {
        transition: none !important;
    }
}


/* ============================================================
   HERO RESZPONZIVITÄÂS
   ============================================================ */

@media (max-width: 1199px) {
    .hero-text-panel {
        width: 55%;
        padding: 120px 32px 60px 40px;
        clip-path: polygon(0% 0%, 81% 0%, 96% 50%, 81% 100%, 0% 100%);
    }

    .hero-image-panel {
        width: 55%;
    }
}

@media (max-width: 1024px) {
    .hero-premium {
        flex-direction: column;
        min-height: 100svh;
        height: auto;
        position: relative;
    }

    .hero-image-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        order: 2;
        clip-path: none;
        z-index: 0;
    }

    .hero-image-panel::before {
        width: 100%;
        height: 100%;
        background: rgba(6, 14, 30, 0.72);
    }

    .hero-text-panel {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 100px 32px 60px;
        background: transparent;
        order: 1;
        clip-path: none;
        min-height: 100svh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-text-panel::after {
        display: none;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-divider { display: none; }

    .hero-stats {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-text-panel {
        padding: 80px 20px 48px;
        clip-path: none;
        min-height: 0;
        height: auto;
        justify-content: flex-start;
        padding-top: 90px;
    }

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

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 36px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .hero-stats {
        padding: 16px 18px;
        gap: 0;
        flex-wrap: wrap;
    }

    .hero-stat-item {
        flex: 1 1 40%;
        min-width: 0;
        gap: 10px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }

    .hero-stat-divider {
        margin: 0 12px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-stat-number {
        font-size: 1.2rem;
    }

    .hero-stat-divider {
        margin: 0 8px;
        height: 36px;
    }
}

@media (max-width: 375px) {
    .hero-text-panel {
        padding: 72px 16px 24px;
    }

    .hero-stat-icon {
        display: none;
    }
}


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

.btn {
    display: inline-block;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-premium);
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--primary-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 52, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-bordo {
    background: var(--primary-bordo);
    color: var(--text-light);
}

.btn-bordo:hover {
    background: var(--primary-bordo-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 35, 50, 0.4);
}


/* =============================================
   ÄÂLTALÄÂNOS SZEKCIÄÂK
   ============================================= */

.section {
    padding: 100px 0;
}

.section-dark  { background: var(--primary-dark); color: var(--text-light); }
.section-light { background: var(--bg-cream); }
.section-gold  { background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%); }

.section-title {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 70px);
}

.section-title h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--primary-gold);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.section-dark .section-title h2 { color: var(--primary-gold); }
.section-light .section-title h2,
.section-gold  .section-title h2 { color: var(--primary-dark); }

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

.section-dark .section-title p { color: #aaa; }


/* =============================================
   SZOLGÄÂLTATÄÂSOK Ă˘ÂÂ prÄĹ mium mockup dizÄÄjn
   ============================================= */

.section-premium-services {
    background: #f5f0e8;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.section-premium-services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 600px auto;
    pointer-events: none;
    z-index: 0;
}

.section-premium-services > .container {
    position: relative;
    z-index: 1;
}

.premium-section-header {
    text-align: left;
    margin-bottom: clamp(40px, 5vw, 60px);
    max-width: 680px;
}

.premium-section-header .section-subtitle {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 14px;
}

.premium-section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.1;
}

.premium-section-header .section-desc {
    font-size: 0.97rem;
    color: #666;
    max-width: 560px;
    margin: 0 0 20px 0;
    line-height: 1.65;
}

.premium-separator {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-bordo));
    border-radius: 2px;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    height: 100%;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 2px 16px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 260px;
    height: 100%;
    padding: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.10),
        0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 165, 52, 0.15);
}

.service-card::before,
.service-card::after {
    display: none;
}

.service-card-content {
    padding: 24px 20px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px 0;
    font-size: 1.2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-gold);
    color: #fff;
}

.service-card h3 {
    color: #0a1628;
    margin-bottom: 8px;
    font-size: clamp(0.88rem, 1.1vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.1px;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.service-card-title-line {
    width: 28px;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 2px;
    margin-bottom: 10px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

.service-card:hover .service-card-title-line {
    width: 40px;
}

.service-card p {
    color: #666;
    line-height: 1.65;
    font-size: 0.82rem;
    flex: 1;
    margin-bottom: 14px;
    overflow: hidden;
    max-height: 9.9em;
    word-break: break-word;
}

.service-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    margin-top: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-arrow {
    transform: translateX(4px);
}

.service-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 0 8px 8px 0;
    background: #e8e4dc;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.04);
}

.service-card-image:empty {
    background: linear-gradient(135deg, #e8e4dc 0%, #ddd8ce 100%);
}

.section-light .services-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================================
   KIEMELT (teljes szélességű) SZOLGÁLTATÁS KÁRTYA
   A 7. kártya a 3 oszlopos gridben teljes sort foglal el,
   így nem marad "árva" kártya az utolsó sorban.
   ============================================================ */
.service-card-link--wide {
    grid-column: 1 / -1;
}

.service-card--wide {
    grid-template-columns: 46% 54%;
    min-height: 320px;
    border-color: rgba(212, 165, 52, 0.28);
    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.07),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

.service-card--wide:hover {
    border-color: rgba(212, 165, 52, 0.45);
}

.service-card--wide .service-card-content {
    padding: 34px 32px 30px 34px;
    justify-content: center;
}

.service-card--wide h3 {
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
}

.service-card--wide .service-card-title-line {
    width: 44px;
    height: 3px;
    margin-bottom: 14px;
}

.service-card--wide:hover .service-card-title-line {
    width: 64px;
}

.service-card--wide p {
    font-size: 0.92rem;
    max-height: none;
    flex: 0 0 auto;
    margin-bottom: 18px;
    max-width: 640px;
}

.service-card--wide .service-icon {
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
}

.service-card-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 6px 14px;
    margin-bottom: 16px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary-gold), #e8c15a);
    color: #07152a;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.service-card-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid rgba(212, 165, 52, 0.35);
    border-radius: 50px;
    background: rgba(212, 165, 52, 0.07);
    color: #7a6220;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.service-card--wide .service-card-image {
    border-radius: 0 8px 8px 0;
}


/* =============================================
   PORTFÄÂLIÄÂ
   ============================================= */

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-dark);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover img               { transform: scale(1.1); }

.portfolio-overlay h3 { color: var(--primary-gold); margin-bottom: 10px; }
.portfolio-overlay p  { color: var(--text-light); font-size: 0.9rem; }


/* =============================================
   STATISZTIKÄÂK Ă˘ÂÂ lebegÄšÂ kÄÄrtyÄÄk
   ============================================= */

.stats-section-floating {
    background: linear-gradient(135deg, #071326 0%, #0b1d39 40%, #08111f 100%);
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.stats-section-floating::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 165, 52, 0.06) 0%,
        rgba(139, 35, 50, 0.03) 40%,
        transparent 70%
    );
    pointer-events: none;
}

.stats-floating-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-floating-card {
    position: relative;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(
        135deg,
        rgba(212, 165, 52, 0.6) 0%,
        rgba(139, 35, 50, 0.5) 50%,
        rgba(212, 165, 52, 0.3) 100%
    );
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-floating-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #d6a63c 0%, #8f1734 50%, #d6a63c 100%);
    z-index: -1;
    opacity: 0.7;
    transition: opacity 0.35s ease;
}

.stat-floating-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 165, 52, 0.15),
        0 0 80px rgba(139, 35, 50, 0.1);
}

.stat-floating-card:hover::before { opacity: 1; }

.stat-card-inner {
    background: rgba(10, 18, 32, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: clamp(30px, 4vw, 45px) clamp(20px, 2vw, 30px);
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-floating-card:hover .stat-card-inner {
    background: rgba(10, 18, 32, 0.9);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #d6a63c;
    font-size: 1.6rem;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: radial-gradient(circle, rgba(212, 165, 52, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stat-floating-card:hover .stat-icon::after { opacity: 1; }
.stat-floating-card:hover .stat-icon {
    color: #f0c861;
    text-shadow: 0 0 20px rgba(212, 165, 52, 0.5);
}

.stat-number-floating {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 700;
    background: linear-gradient(180deg, #f0c861 0%, #d39d2f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
    position: relative;
    text-shadow: none;
}

.stat-number-floating::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(212, 165, 52, 0.15) 0%, transparent 70%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.stat-floating-card:hover .stat-number-floating::after { opacity: 1; }

.stat-label-floating {
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    transition: color 0.35s ease;
}

.stat-floating-card:hover .stat-label-floating {
    color: rgba(255, 255, 255, 0.9);
}


/* =============================================
   RÄÂLUNK
   ============================================= */

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

.about-text h3 { color: var(--primary-dark); font-size: 1.8rem; margin-bottom: 20px; }
.about-text p  { margin-bottom: 20px; color: #555; line-height: 1.8; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-image { position: relative; }

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

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-gold);
    border-radius: var(--border-radius);
    z-index: -1;
}


/* =============================================
   REFERENCIÄÂK Ă˘ÂÂ dark premium cinematic
   ============================================= */

.section-references-premium {
    background-color: #060d1a;
    background-image: url('../images/construction-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.section-references-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 26, 0.75) 0%,
        rgba(6, 13, 26, 0.70) 50%,
        rgba(6, 13, 26, 0.78) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.references-premium-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.references-subtitle {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 18px;
}

.references-premium-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.references-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
}

.references-premium-header::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, #c9a227, #a68523);
    margin: 0 auto;
    border-radius: 2px;
}

.section-references-premium .container {
    max-width: 1440px;
    padding: 0 50px;
}

.references-premium-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(14px, 1.4vw, 22px);
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.reference-premium-card {
    position: relative;
    border-radius: 14px;
    background: #0b1525;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    border: 1.5px solid rgba(201, 162, 39, 0.55);
    box-shadow:
        -2px -2px  8px 0px rgba(201, 162, 39, 0.06),
         3px -3px 16px 1px rgba(201, 162, 39, 0.28),
        -3px  3px 16px 1px rgba(201, 162, 39, 0.24),
         2px  2px  8px 0px rgba(201, 162, 39, 0.06),
         0    0   22px 2px rgba(201, 162, 39, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.reference-premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.80);
    box-shadow:
        -3px -3px 12px 0px rgba(201, 162, 39, 0.10),
         5px -5px 22px 2px rgba(201, 162, 39, 0.38),
        -5px  5px 22px 2px rgba(201, 162, 39, 0.32),
         3px  3px 12px 0px rgba(201, 162, 39, 0.10),
         0    0   35px 4px rgba(201, 162, 39, 0.16);
}

.reference-logo-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 16px 14px;
    background: transparent;
}

.reference-logo-wrapper img {
    width: auto;
    height: auto;
    max-width: 86%;
    max-height: 90px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s ease;
}

.reference-premium-card:hover .reference-logo-wrapper img {
    transform: scale(1.04);
}

.reference-info {
    width: 100%;
    padding: 0 14px 20px;
    margin-top: auto;
    text-align: center;
}

.reference-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c9a227;
    margin-bottom: 6px;
    line-height: 1.35;
}

.reference-industry {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2px;
}

.references-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.btn-references-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(11, 21, 37, 0.90);
    border: 1.5px solid rgba(201, 162, 39, 0.55);
    color: #f0f0f0;
    padding: 17px 52px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    box-shadow:
        0 0 12px rgba(201, 162, 39, 0.12),
        0 0 25px rgba(201, 162, 39, 0.06);
    transition: all 0.3s ease;
}

.btn-references-premium i {
    font-size: 0.72rem;
    color: #c9a227;
    transition: transform 0.3s ease;
}

.btn-references-premium:hover {
    background: rgba(15, 26, 45, 0.95);
    border-color: rgba(201, 162, 39, 0.75);
    transform: translateY(-2px);
    box-shadow:
        0 0 18px rgba(201, 162, 39, 0.22),
        0 0 35px rgba(201, 162, 39, 0.10);
}

.btn-references-premium:hover i {
    transform: translateX(4px);
}


/* =============================================
   KAPCSOLAT
   ============================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 { color: var(--primary-dark); font-size: 1.8rem; margin-bottom: 30px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-bordo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 { color: var(--primary-dark); margin-bottom: 5px; }
.contact-item p  { color: #666; }
.contact-item a  { color: var(--primary-bordo); }
.contact-item a:hover { color: var(--primary-gold); }

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-weight: 500;
}

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

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

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


/* =============================================
   CTA SZEKCIÄÂ
   ============================================= */

.cta-section {
    position: relative;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    background-image: url('../images/cta.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(7, 16, 32, 0.97) 0%,
        rgba(7, 16, 32, 0.90) 30%,
        rgba(7, 16, 32, 0.65) 55%,
        rgba(7, 16, 32, 0.30) 75%,
        rgba(7, 16, 32, 0.10) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    flex: 0 0 52%;
    max-width: 52%;
    padding: clamp(40px, 5vw, 64px) clamp(32px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.cta-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin: 0;
}

.cta-title {
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin: 0;
}

.cta-title-gold {
    color: var(--primary-gold);
}

.cta-description {
    font-size: clamp(0.85rem, 1vw, 0.97rem);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    max-width: 460px;
    margin: 0;
}

.cta-buttons-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-gold);
    color: #071020;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    white-space: nowrap;
}

.cta-btn-primary:hover {
    background: var(--primary-gold-light);
    border-color: var(--primary-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 52, 0.35);
    color: #071020;
}

.cta-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(212, 165, 52, 0.70);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s ease;
    white-space: nowrap;
}

.cta-btn-phone i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.cta-btn-phone:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 165, 52, 0.10);
    transform: translateY(-2px);
    color: #ffffff;
}

.cta-image-panel {
    display: none;
}

@media (max-width: 900px) {
    .cta-section {
        min-height: 260px;
        background-position: center right;
    }

    .cta-section::before {
        background: linear-gradient(
            to right,
            rgba(7, 16, 32, 0.95) 0%,
            rgba(7, 16, 32, 0.88) 50%,
            rgba(7, 16, 32, 0.60) 100%
        );
    }

    .cta-content {
        flex: 0 0 65%;
        max-width: 65%;
        padding: 44px 32px;
    }
}

@media (max-width: 600px) {
    .cta-section {
        min-height: auto;
        background-position: center center;
        align-items: center;
    }

    .cta-section::before {
        background: rgba(7, 16, 32, 0.82);
    }

    .cta-content {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 48px 24px 44px;
        gap: 14px;
    }

    .cta-buttons-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cta-btn-primary,
    .cta-btn-phone {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .cta-content {
        padding: 40px 18px 36px;
    }
}


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

.footer {
    background: #071020;
    color: var(--text-light);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 320px auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 280px auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.footer-inner {
    position: relative;
    z-index: 1;
    padding: clamp(56px, 7vw, 80px) 0 clamp(40px, 5vw, 60px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr auto 1fr 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.footer-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(212, 165, 52, 0.35) 15%,
        rgba(212, 165, 52, 0.45) 50%,
        rgba(212, 165, 52, 0.35) 85%,
        transparent 100%
    );
    margin: 0 clamp(24px, 3vw, 44px);
}

.footer-about {
    padding-right: 12px;
}

.footer-logo-wrap {
    display: inline-block;
    margin-bottom: 20px;
    transition: var(--transition);
}

.footer-logo-wrap:hover { transform: scale(1.04); }

.footer-logo-wrap img {
    height: 90px;
    width: auto;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-gold);
    border: 1.5px solid rgba(212, 165, 52, 0.65);
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
    margin-bottom: 28px;
}

.footer-about-btn:hover {
    background: rgba(212, 165, 52, 0.10);
    border-color: var(--primary-gold);
    transform: translateX(3px);
    color: var(--primary-gold);
}

.footer-about-btn i {
    font-size: 0.82rem;
    transition: transform 0.25s ease;
}

.footer-about-btn:hover i {
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 52, 0.10);
    border: 1px solid rgba(212, 165, 52, 0.30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.88rem;
    transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #071020;
    transform: translateY(-3px);
}

.footer-col {
    padding: 0 8px;
}

.footer-col-title {
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 22px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links-list a::before {
    content: '\203A';
    color: var(--primary-gold);
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.footer-links-list a:hover {
    color: #ffffff;
}

.footer-links-list a:hover::before {
    transform: translateX(2px);
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-services-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-services-list li a i {
    color: var(--primary-gold);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-services-list li a:hover {
    color: #ffffff;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.55;
}

.footer-contact-list li i {
    color: var(--primary-gold);
    font-size: 0.95rem;
    margin-top: 2px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-list li a:hover {
    color: var(--primary-gold);
}

.footer-bottom-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(212, 165, 52, 0.18);
    padding: 20px 24px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-motto {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.70rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-bottom-motto i {
    color: var(--primary-gold);
    font-size: 0.92rem;
}

.footer-bottom-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    text-align: center;
}

.footer-bottom-legal {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-bottom-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-legal a:hover {
    color: var(--primary-gold);
}

.footer-bottom-legal span {
    color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1.3fr auto 1fr 1fr;
        gap: 0;
    }

    .footer-col:last-child {
        grid-column: 2 / -1;
        padding-top: 28px;
        border-top: 1px solid rgba(212, 165, 52, 0.12);
        margin-top: 20px;
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-divider {
        display: none;
    }

    .footer-about {
        padding-right: 0;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(212, 165, 52, 0.12);
        margin-bottom: 28px;
    }

    .footer-col {
        padding: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(212, 165, 52, 0.08);
    }

    .footer-col:last-child {
        grid-column: auto;
        padding-top: 0;
        border-top: none;
        margin-top: 0;
    }

    .footer-about-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-legal {
        justify-content: center;
    }
}


/* =============================================
   SCROLL TO TOP GOMB
   ============================================= */

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

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

.scroll-top:hover {
    background: var(--primary-bordo);
    color: white;
    transform: translateY(-5px);
}


/* =============================================
   ALOLDALAK Ă˘ÂÂ page hero
   ============================================= */

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #152238 100%);
    padding: 200px 0 80px;
    text-align: center;
    position: relative;
}

.page-hero h1 { font-size: 3rem; color: var(--primary-gold); margin-bottom: 15px; }
.page-hero p  { color: var(--text-light); font-size: 1.2rem; }

.breadcrumb { margin-top: 20px; }
.breadcrumb a       { color: #aaa; }
.breadcrumb a:hover { color: var(--primary-gold); }
.breadcrumb span    { color: var(--primary-gold); margin: 0 10px; }


/* =============================================
   SZOLGÄÂLTATÄÂS RÄÂSZLETES
   ============================================= */

.service-detail {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.service-detail h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail h3 .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.service-detail ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.service-detail li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-detail li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}


/* =============================================
   ANIMÄÂCIÄÂK
   ============================================= */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================
   RESZPONZÄÂV STÄÂLUSOK
   ============================================= */

@media (max-width: 1200px) {
    .section-references-premium .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .references-premium-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 900px;
        margin: 0 auto;
    }

    .reference-premium-card  { aspect-ratio: 1 / 1.1; }
    .reference-logo-wrapper  { height: 180px; padding: 28px 18px 20px; }
    .reference-logo-wrapper img { max-height: 95px; }
    .btn-references-premium  { padding: 16px 45px; }
}

@media (max-width: 1024px) {
    .stats-floating-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .service-card--wide { grid-template-columns: 50% 50%; min-height: 280px; }
    .service-card--wide .service-card-content { padding: 26px 24px; }
    .premium-section-header { max-width: 100%; }
    .service-card { grid-template-columns: 50% 50%; min-height: 240px; }

    .why-us-inner    { grid-template-columns: 1fr 1fr; min-height: 520px; }
    .why-us-right    { min-height: 520px; }
    .why-us-features { grid-template-columns: repeat(2, 1fr); }
    .why-us-title    { font-size: clamp(1.7rem, 3vw, 2.2rem); }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 96px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-150%);
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 999;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        pointer-events: auto;
    }

    .header.scrolled .nav-menu { top: 60px; }
    .nav-menu a { padding: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    .hero h1 { font-size: 2.5rem; }

    .about-content { grid-template-columns: 1fr; }
    .about-image   { order: -1; }

    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section       { padding: 60px 0; }
    .section-title h2 { font-size: 2rem; }

    .premium-section-header h2 { font-size: 1.8rem; }
    .hero { padding: 140px 20px 60px; }
    .hero h1 { font-size: 2rem; }
    .hero p  { font-size: 1rem; }
    .header-container              { padding: 6px 15px; }
    .header.scrolled .header-container { padding: 4px 15px; }
    .logo img                      { height: 80px; margin: -10px 0; }
    .header.scrolled .logo img     { height: 55px; margin: -8px 0; }
    .nav-menu                      { top: 72px; }
    .header.scrolled .nav-menu     { top: 48px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-card--wide { grid-template-columns: 1fr; grid-template-rows: auto 240px; min-height: 0; }
    .service-card--wide .service-card-image { border-radius: 0 0 8px 8px; min-height: 240px; }
    .service-card--wide .service-card-content { padding: 24px 20px 18px; }
    .service-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 200px;
        min-height: auto;
    }
    .service-card-image   { border-radius: 0 0 8px 8px; min-height: 200px; }
    .service-card-content { padding: 20px 18px 16px; }
    .service-card p       { max-height: 6.6em; }

    .about-features                 { grid-template-columns: 1fr; }
    .page-hero                      { padding: 140px 0 60px; }
    .page-hero h1                   { font-size: 2rem; }
    .about-image::before            { display: none; }

    .references-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .section-references-premium  { padding: 70px 0 80px; }
    .references-premium-header   { margin-bottom: 45px; }
    .references-premium-header h2 { font-size: 2rem; }
    .references-desc             { font-size: 1rem; }
    .section-references-premium .container { max-width: 100%; padding: 0 20px; }
    .references-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 600px;
        margin: 0 auto;
        padding: 0;
    }
    .reference-premium-card  { aspect-ratio: 1 / 1.1; }
    .reference-logo-wrapper  { height: 165px; padding: 24px 16px 18px; }
    .reference-logo-wrapper img { max-height: 100px; }
    .reference-info          { padding: 10px 14px 22px; }
    .reference-info h4       { font-size: 0.85rem; }
    .reference-industry      { font-size: 0.72rem; }
    .btn-references-premium  { padding: 16px 40px; font-size: 0.72rem; letter-spacing: 2px; }
    .references-cta          { margin-top: 50px; }
}

@media (max-width: 600px) {
    .stats-floating-grid { grid-template-columns: 1fr; gap: 20px; max-width: 320px; }
    .stat-card-inner     { min-height: 180px; padding: 30px 25px; }
    .stat-icon           { font-size: 1.4rem; margin-bottom: 15px; }
    .stat-label-floating { letter-spacing: 1.5px; }

    .why-us-title    { font-size: 1.55rem; padding: 32px 18px 0; }
    .why-us-title-line { margin: 0 18px 18px; }
    .why-us-text     { padding: 0 18px; }
    .why-us-right    { padding: 0 12px; }
    .why-us-image-wrap { aspect-ratio: 4 / 3; }
    .why-us-features { padding: 0 18px 28px; }
}

@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card--wide { grid-template-rows: auto 220px; }
    .service-card--wide .service-card-image { min-height: 220px; }
    .service-card-tags span { font-size: 0.68rem; padding: 5px 11px; }
    .service-card  { grid-template-rows: auto 220px; }
    .service-card-image { min-height: 220px; }
    .service-card p { max-height: 8.25em; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn          { width: 100%; text-align: center; }

    .stat-number  { font-size: 2.5rem; }
    .contact-form { padding: 25px; }
    .preloader-logo { width: 150px; }

    .references-grid { grid-template-columns: 1fr; gap: 15px; }
    .references-premium-grid { gap: 12px; max-width: 400px; margin: 0 auto; padding: 0; }

    .reference-premium-card  { aspect-ratio: 1 / 1.15; }
    .reference-logo-wrapper  { height: 145px; padding: 20px 14px 14px; }
    .reference-logo-wrapper img { max-height: 80px; }
    .reference-info          { padding: 8px 12px 18px; }
    .reference-info h4       { font-size: 0.78rem; }
    .reference-industry      { font-size: 0.68rem; }
    .btn-references-premium  { width: calc(100% - 40px); max-width: 320px; padding: 14px 28px; font-size: 0.68rem; letter-spacing: 2px; }
}

@media (max-width: 400px) {
    .why-us-right  { padding: 0 10px; }
    .why-us-image-wrap { aspect-ratio: 16 / 9; }
}


/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover { color: var(--primary-gold); }


/* =============================================
   PROJEKT KÄÂPGALÄÂRIA LIGHTBOX
   (szekciÄĹnkÄĹ nti csoportosÄÂ­tÄÄsÄĹ, navigÄÄlhatÄĹ lightbox
   a .projekt-kepek / .projekt-galeria-grid / .projects-showcase-grid
   szekciÄĹk kÄĹ peihez Ă˘ÂÂ JS: main.js dinamikusan hozza lÄĹ tre a DOM-ot)
   ============================================= */

.pglb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 16, 32, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pglb-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pglb-stage {
    position: relative;
    max-width: 88vw;
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pglb-overlay.active .pglb-stage {
    animation: pglbPop 0.28s ease;
}

@keyframes pglbPop {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

.pglb-img {
    max-width: 88vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.pglb-counter {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.65);
}

.pglb-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    z-index: 2;
}

.pglb-close:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #071020;
    transform: rotate(90deg);
}

.pglb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    z-index: 2;
}

.pglb-nav:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #071020;
}

.pglb-prev { left: 24px; }
.pglb-next { right: 24px; }
.pglb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.pglb-next:hover { transform: translateY(-50%) translateX(3px); }

@media (max-width: 768px) {
    .pglb-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 1rem; }
    .pglb-nav { width: 44px; height: 44px; font-size: 1rem; }
    .pglb-prev { left: 12px; }
    .pglb-next { right: 12px; }
    .pglb-img { max-width: 92vw; max-height: 76vh; }
}

@media (max-width: 480px) {
    .pglb-nav { width: 40px; height: 40px; }
    .pglb-prev { left: 6px; }
    .pglb-next { right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    .pglb-overlay, .pglb-overlay .pglb-stage { transition: none !important; animation: none !important; }
}


/* =============================================
   FORM ÄÂZENETEK
   ============================================= */

.form-message {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}


/* =============================================
   MIÄÂRT MINKET Ă˘ÂÂ prÄĹ mium szekciÄĹ
   ============================================= */

.section-why-us {
    position: relative;
    background: #f5f0e8;
    background-image:
        radial-gradient(ellipse at 0% 100%, rgba(212, 165, 52, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 0%, rgba(212, 165, 52, 0.04) 0%, transparent 50%);
    overflow: hidden;
    padding: 0;
}

.why-us-inner {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 620px;
    position: relative;
    align-items: stretch;
    overflow: hidden;
}

.why-us-left {
    padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.why-us-title {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.18;
    margin-bottom: 22px;
    letter-spacing: -0.3px;
}

.why-us-title-line {
    width: 48px;
    height: 3px;
    background: #d4a534;
    border-radius: 2px;
    margin-bottom: 32px;
}

.why-us-text { margin-bottom: 40px; }

.why-us-text p {
    font-size: clamp(0.88rem, 1.1vw, 0.97rem);
    color: #4a4a4a;
    line-height: 1.78;
    margin-bottom: 16px;
}

.why-us-text p:last-child { margin-bottom: 0; }
.why-us-text strong { color: #1a1a1a; font-weight: 700; }

.why-us-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-us-card-text { display: none; }

.why-us-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 16px 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.07),
        0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
}

.why-us-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a534;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-us-card__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    text-align: center;
}

.why-us-card__line {
    width: 28px;
    height: 2px;
    background: #d4a534;
    border-radius: 2px;
    margin-top: auto;
}

.why-us-right {
    position: relative;
    min-height: 620px;
    overflow: visible;
}

.why-us-image-wrap {
    position: absolute;
    top: 0;
    left: -60px;
    right: 0;
    bottom: 0;
    overflow: hidden;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 1% 50%);
}

.why-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%) contrast(1.08) brightness(0.88);
    transition: filter 0.4s ease;
}

.why-us-right:hover .why-us-image {
    filter: grayscale(85%) contrast(1.05) brightness(0.92);
}

.why-us-gold-shape {
    position: absolute;
    left: -60px;
    top: 0;
    width: calc(100% + 60px);
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.why-us-gold-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

.why-us-dots {
    position: absolute;
    right: 46%;
    z-index: 1;
    pointer-events: none;
}

.why-us-dots--top    { top: 30px; }
.why-us-dots--bottom { bottom: 100px; }

.why-us-bottom-line {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 165, 52, 0.35) 20%,
        rgba(212, 165, 52, 0.60) 50%,
        rgba(212, 165, 52, 0.35) 80%,
        transparent 100%
    );
}

.whu-anim-left[data-anim="ready"] {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whu-anim-left[data-anim="ready"].whu-visible {
    opacity: 1;
    transform: translateX(0);
}

.whu-anim-right[data-anim="ready"] {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s,
        transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.whu-anim-right[data-anim="ready"].whu-visible {
    opacity: 1;
    transform: translateX(0);
}

.whu-card-anim[data-anim="ready"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.whu-card-anim[data-anim="ready"].whu-visible {
    opacity: 1;
    transform: translateY(0);
}

.whu-card-anim[data-anim="ready"]:nth-child(1) { transition-delay: 0.30s; }
.whu-card-anim[data-anim="ready"]:nth-child(2) { transition-delay: 0.42s; }
.whu-card-anim[data-anim="ready"]:nth-child(3) { transition-delay: 0.54s; }
.whu-card-anim[data-anim="ready"]:nth-child(4) { transition-delay: 0.66s; }

@media (prefers-reduced-motion: reduce) {
    .whu-anim-left[data-anim="ready"],
    .whu-anim-right[data-anim="ready"],
    .whu-card-anim[data-anim="ready"] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 900px) {
    .why-us-inner {
        display: flex;
        flex-direction: column;
        min-height: auto;
        overflow: visible;
    }

    .why-us-left { display: contents; }

    .why-us-title      { order: 1; padding: 40px 24px 0; font-size: 1.75rem; margin-bottom: 16px; }
    .why-us-title-line { order: 2; margin: 0 24px 20px; }
    .why-us-text       { order: 3; padding: 0 24px; margin-bottom: 20px; }
    .why-us-right      { order: 4; overflow: hidden; padding: 0 16px; min-height: auto; }
    .why-us-features   { order: 5; padding: 0 24px 32px; }

    .why-us-image-wrap {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        clip-path: none;
        border-radius: 8px;
        overflow: hidden;
    }

    .why-us-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(60%) contrast(1.05) brightness(0.95);
        border-radius: 8px;
    }

    .why-us-gold-shape         { display: none; }
    .why-us-dots--top,
    .why-us-dots--bottom       { display: none; }

    .why-us-features {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
        overflow: hidden;
    }

    .why-us-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 16px 18px;
        border-radius: 0;
        gap: 16px;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        box-shadow: none;
        background: #fff;
        cursor: pointer;
        position: relative;
    }

    .why-us-card:last-of-type { border-bottom: none; }

    .why-us-card__icon  { font-size: 1.3rem; width: 44px; height: 44px; flex-shrink: 0; }
    .why-us-card__label { font-size: 0.88rem; font-weight: 700; flex: 1; text-align: left; }
    .why-us-card__line  { display: none; }

    .why-us-card::after {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid #d4a534;
        border-top: 2px solid #d4a534;
        transform: rotate(45deg);
        flex-shrink: 0;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .why-us-card.open::after {
        transform: rotate(135deg);
    }

    .why-us-card-text {
        display: none;
        font-size: 0.82rem;
        color: #555;
        line-height: 1.65;
        padding: 12px 18px 16px calc(44px + 34px);
        background: #f9f9f9;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .why-us-card-text.open { display: block; }
}


/* =============================================
   ALOLDAL HERO Ă˘ÂÂ prÄĹ mium egysÄĹ ges hero
   ============================================= */

.page-hero-premium {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #071020;
    background-image: linear-gradient(
        135deg,
        #071020 0%,
        #0a1628 50%,
        #0d1c36 100%
    );
    padding: 0;
}

.page-hero-text {
    position: relative;
    z-index: 3;
    width: 58%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(100px, 10vh, 140px) clamp(40px, 5vw, 80px) clamp(60px, 8vh, 100px) clamp(40px, 5vw, 80px);
    background: linear-gradient(
        105deg,
        #071020 0%,
        #0a1628 60%,
        rgba(10, 22, 40, 0.96) 80%,
        rgba(10, 22, 40, 0.85) 90%,
        transparent 100%
    );
    clip-path: polygon(0% 0%, 80% 0%, 95% 50%, 80% 100%, 0% 100%);
}

.page-hero-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: -150px;
    width: 190px;
    height: 100%;
    background: linear-gradient(
        to right,
        #071020 0%,
        #0a1628 30%,
        rgba(10, 22, 40, 0.0) 100%
    );
    clip-path: polygon(0% 0%, 60% 0%, 100% 50%, 60% 100%, 0% 100%);
    z-index: 4;
    pointer-events: none;
}

.page-hero-label {
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.7s ease 0.1s forwards;
}

.page-hero-title {
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.8s ease 0.25s forwards;
}

.page-hero-title-gold {
    color: var(--primary-gold);
    display: block;
}

.page-hero-title--compact {
    font-size: clamp(1.9rem, 3.1vw, 3.2rem);
}

.page-hero-desc {
    font-size: clamp(0.88rem, 1.1vw, 1.05rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.8s ease 0.4s forwards;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    opacity: 0;
    transform: translateY(14px);
    animation: heroFadeUp 0.7s ease 0.52s forwards;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--primary-gold);
}

.page-hero-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
}

.page-hero-breadcrumb .current {
    color: var(--primary-gold);
    font-weight: 600;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 42%;
    right: 0;
    width: 58%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: brightness(0.80) saturate(1.05);
}

.page-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(7, 16, 32, 0.3) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.page-hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(7, 16, 32, 0.5) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.page-hero-divider {
    position: absolute;
    top: 0;
    left: calc(55% - 240px);
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.page-hero-divider svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 6px rgba(212, 165, 52, 0.9))
            drop-shadow(0 0 12px rgba(212, 165, 52, 0.5));
}

@media (max-width: 1199px) {
    .page-hero-text {
        width: 55%;
        padding: 120px 32px 60px 40px;
        clip-path: polygon(0% 0%, 81% 0%, 96% 50%, 81% 100%, 0% 100%);
    }
}

@media (max-width: 1024px) {
    .page-hero-premium {
        flex-direction: column;
        min-height: 100svh;
        height: auto;
        position: relative;
    }

    .page-hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        order: 2;
        clip-path: none;
        z-index: 0;
    }

    .page-hero-image::before {
        width: 100%;
        height: 100%;
        background: rgba(6, 14, 30, 0.72);
        z-index: 2;
    }

    .page-hero-text {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 100px 32px 60px;
        background: transparent;
        order: 1;
        clip-path: none;
        min-height: 100svh;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page-hero-text::after {
        display: none;
    }

    .page-hero-desc { max-width: 100%; }
    .page-hero-divider { display: none; }
}

@media (max-width: 768px) {
    .page-hero-premium {
        min-height: 70svh;
    }

    .page-hero-text {
        min-height: 70svh;
        justify-content: center;
        padding: 90px 20px 40px;
    }

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

    .page-hero-desc {
        font-size: 0.9rem;
        margin-bottom: 28px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 1.75rem;
    }

    .page-hero-text {
        padding: 80px 18px 36px;
        min-height: 65svh;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .page-hero-text {
        padding: 72px 16px 32px;
        min-height: 60svh;
        justify-content: center;
    }
}


/* =============================================
   SZOLGÄÂLTATÄÂSOK TIMELINE SZEKCIÄÂ
   ============================================= */

.section-services-timeline {
    background: #faf6ed;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

.services-timeline-header {
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 90px);
}

.services-timeline-header .stl-label {
    display: inline-block;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 14px;
}

.services-timeline-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -0.4px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.services-timeline-header p {
    font-size: 1rem;
    color: #666;
    max-width: 540px;
    margin: 0 auto 20px;
    line-height: 1.65;
}

.stl-separator {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-bordo));
    border-radius: 2px;
    margin: 0 auto;
}

.services-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(212, 165, 52, 0.35) 3%,
        rgba(212, 165, 52, 0.45) 10%,
        rgba(212, 165, 52, 0.45) 90%,
        rgba(212, 165, 52, 0.35) 97%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.stl-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 0;
    position: relative;
}

.stl-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    gap: 0;
}

.stl-diamond {
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    transform: rotate(45deg);
    margin: 0 auto;
    opacity: 0.7;
    flex-shrink: 0;
}

.stl-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-gold);
    background: #faf6ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 1px;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.stl-img-cell {
    padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 32px);
}

.stl-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e8e4dc;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stl-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.stl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.stl-img-wrap:hover img {
    transform: scale(1.04);
}

.stl-text-cell {
    padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stl-icon {
    width: 52px;
    height: 52px;
    background: #0a1628;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: background 0.28s ease;
}

.stl-text-cell:hover .stl-icon {
    background: var(--primary-gold);
    color: #0a1628;
}

.stl-title {
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.22;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.stl-desc {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.70;
    margin-bottom: 16px;
    max-width: 420px;
}

.stl-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 18px;
}

.stl-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #444;
    font-weight: 500;
}

.stl-feature::before {
    content: '\2713';
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.stl-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.stl-link:hover {
    gap: 11px;
    color: var(--primary-gold-light);
}

.stl-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    position: relative;
    z-index: 1;
    grid-column: 2;
}

.stl-connector-diamond {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1.5px solid rgba(212, 165, 52, 0.55);
    transform: rotate(45deg);
    margin: 4px auto;
    flex-shrink: 0;
}

.stl-row.reverse .stl-img-cell {
    order: 3;
}
.stl-row.reverse .stl-center {
    order: 2;
}
.stl-row.reverse .stl-text-cell {
    order: 1;
    text-align: left;
}


/* =============================================
   HOGYAN DOLGOZUNK
   ============================================= */

.section-how-we-work {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: clamp(70px, 8vw, 110px) 0;
}

.how-work-header {
    text-align: center;
    margin-bottom: clamp(50px, 6vw, 70px);
}

.how-work-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.how-work-header p {
    font-size: 0.97rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
}

.how-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.how-work-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 32px 24px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.10);
}

.how-work-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
}

.how-work-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1.5px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: background 0.28s ease, color 0.28s ease;
}

.how-work-card:hover .how-work-icon {
    background: var(--primary-gold);
    color: #0a1628;
}

.how-work-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.3;
}

.how-work-desc {
    font-size: 0.83rem;
    color: #666;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .how-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .how-work-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
}


/* =============================================
   SERVICES TIMELINE RESZPONZÄÂV
   ============================================= */

@media (max-width: 900px) {
    .services-timeline::before {
        left: 24px;
        transform: none;
    }

    .stl-row {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        gap: 0;
    }

    .stl-row.reverse .stl-img-cell,
    .stl-row.reverse .stl-center,
    .stl-row.reverse .stl-text-cell {
        order: unset;
    }

    .stl-center {
        grid-column: 1;
        grid-row: 1;
        align-items: flex-start;
        padding-top: 28px;
    }

    .stl-num {
        width: 44px;
        height: 44px;
        font-size: 0.72rem;
    }

    .stl-text-cell {
        grid-column: 2;
        grid-row: 1;
        padding: 24px 16px 12px 20px;
    }

    .stl-img-cell {
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 0 16px 40px 64px;
    }

    .stl-connector {
        display: none;
    }

    .stl-desc { max-width: 100%; }
    .stl-features { gap: 6px 12px; }
}

@media (max-width: 600px) {
    .services-timeline {
        padding: 0 12px;
    }

    .services-timeline::before {
        left: 18px;
    }

    .stl-row {
        grid-template-columns: 40px 1fr;
    }

    .stl-num {
        width: 38px;
        height: 38px;
        font-size: 0.68rem;
    }

    .stl-text-cell {
        padding: 20px 12px 10px 16px;
    }

    .stl-img-cell {
        padding: 0 12px 32px 58px;
    }

    .stl-title {
        font-size: 1.1rem;
    }

    .stl-features {
        flex-direction: column;
        gap: 6px;
    }
}


/* =============================================
   PORTFÄÂLIÄÂ PRÄÂMIUM SZEKCIÄÂ
   ============================================= */

.section-portfolio-premium {
    background: #f5f0e8;
    padding: clamp(80px, 10vw, 120px) clamp(20px, 4vw, 60px);
    position: relative;
}

.pf-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.pf-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.pf-header-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.pf-header-line {
    display: block;
    height: 1px;
    width: 60px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 165, 52, 0.7)
    );
}

.pf-header-line--right {
    background: linear-gradient(
        to left,
        transparent,
        rgba(212, 165, 52, 0.7)
    );
}

.pf-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -0.4px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.pf-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: #666;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

.pf-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: clamp(36px, 5vw, 56px);
    flex-wrap: wrap;
}

.pf-filter-btn {
    padding: 10px 26px;
    border: 1.5px solid var(--primary-gold);
    background: transparent;
    color: #0a1628;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.pf-filter-btn:hover {
    background: var(--primary-gold);
    color: #0a1628;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 165, 52, 0.25);
}

.pf-filter-btn--active {
    background: var(--primary-gold);
    color: #0a1628;
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.pf-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 2px 16px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pf-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.pf-card-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e4dc;
    flex-shrink: 0;
}

.pf-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.pf-card:hover .pf-card-image-wrap img {
    transform: scale(1.06);
}

.pf-card-body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 22px 24px;
    flex: 1;
}

.pf-card-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #0a1628;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: background 0.28s ease, color 0.28s ease;
}

.pf-card:hover .pf-card-icon-wrap {
    background: var(--primary-gold);
    color: #0a1628;
}

.pf-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.pf-card-title {
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    font-weight: 700;
    color: #0a1628;
    line-height: 1.3;
    letter-spacing: -0.1px;
    margin: 0;
}

.pf-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

.pf-card-desc {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.65;
    margin: 2px 0 8px;
}

.pf-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
    margin-top: auto;
}

.pf-card-link i {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.pf-card-link:hover {
    gap: 10px;
    color: var(--primary-gold-light);
}

.pf-card-link:hover i {
    transform: translateX(3px);
}

.pf-card.pf-hidden {
    display: none;
}

@media (max-width: 1024px) {
    .pf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .section-portfolio-premium {
        padding: clamp(60px, 8vw, 80px) 16px;
    }

    .pf-filters {
        gap: 10px;
    }

    .pf-filter-btn {
        padding: 9px 18px;
        font-size: 0.82rem;
    }

    .pf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .pf-card-body {
        padding: 16px 16px 18px;
        gap: 12px;
    }

    .pf-card-icon-wrap {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }

    .pf-card-title {
        font-size: 0.88rem;
    }

    .pf-card-desc {
        font-size: 0.78rem;
    }
}

@media (max-width: 560px) {
    .pf-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
    }

    .pf-card-image-wrap {
        aspect-ratio: 16 / 9;
    }

    .pf-header-line {
        width: 40px;
    }

    .pf-filters {
        gap: 8px;
    }

    .pf-filter-btn {
        padding: 8px 16px;
        font-size: 0.80rem;
    }
}

@media (max-width: 400px) {
    .pf-filter-btn {
        padding: 7px 14px;
        font-size: 0.76rem;
    }
}


/* =============================================
   PARTNEREINK + STATISZTIKÄÂK SZEKCIÄÂ
   ============================================= */

.section-partners-stats {
    position: relative;
    background-color: #060d1a;
    background-image: url('images/construction-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: clamp(60px, 8vw, 90px) 0 clamp(60px, 8vw, 90px);
    overflow: hidden;
}

.section-partners-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 9, 20, 0.82) 0%,
        rgba(5, 11, 24, 0.78) 50%,
        rgba(4, 9, 20, 0.85) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.section-partners-stats .ps-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.ps-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: clamp(32px, 4vw, 48px);
}

.ps-heading-line {
    flex: 1;
    height: 1px;
    max-width: 120px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 165, 52, 0.75)
    );
}

.ps-heading-line--right {
    background: linear-gradient(
        to left,
        transparent,
        rgba(212, 165, 52, 0.75)
    );
}

.ps-heading-title {
    font-size: clamp(0.85rem, 1.2vw, 1.0rem);
    font-weight: 700;
    color: #c9a227;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

.ps-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
    margin-bottom: clamp(24px, 3vw, 36px);
}

.ps-partner-card {
    background: #0b1525;
    border: 1.5px solid rgba(201, 162, 39, 0.50);
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    overflow: hidden;
    box-shadow:
        -2px -2px  8px 0px rgba(201, 162, 39, 0.04),
         3px -3px 14px 1px rgba(201, 162, 39, 0.20),
        -3px  3px 14px 1px rgba(201, 162, 39, 0.18),
         2px  2px  8px 0px rgba(201, 162, 39, 0.04),
         0    0   18px 2px rgba(201, 162, 39, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ps-partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.75);
    box-shadow:
        -3px -3px 12px 0px rgba(201, 162, 39, 0.08),
         5px -5px 20px 2px rgba(201, 162, 39, 0.32),
        -5px  5px 20px 2px rgba(201, 162, 39, 0.28),
         3px  3px 12px 0px rgba(201, 162, 39, 0.08),
         0    0   30px 4px rgba(201, 162, 39, 0.14);
}

.ps-partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.ps-partner-card:hover img {
    transform: scale(1.04);
}

.ps-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
}

.ps-stat-card {
    background: #0b1525;
    border: 1.5px solid rgba(201, 162, 39, 0.50);
    border-radius: 10px;
    padding: clamp(18px, 2.5vw, 28px) clamp(16px, 2vw, 28px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    box-shadow:
        -2px -2px  8px 0px rgba(201, 162, 39, 0.04),
         3px -3px 14px 1px rgba(201, 162, 39, 0.20),
        -3px  3px 14px 1px rgba(201, 162, 39, 0.18),
         2px  2px  8px 0px rgba(201, 162, 39, 0.04),
         0    0   18px 2px rgba(201, 162, 39, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-stat-card:hover {
    transform: scale(1.025);
    box-shadow:
        -3px -3px 12px 0px rgba(201, 162, 39, 0.08),
         5px -5px 20px 2px rgba(201, 162, 39, 0.30),
        -5px  5px 20px 2px rgba(201, 162, 39, 0.26),
         3px  3px 12px 0px rgba(201, 162, 39, 0.08),
         0    0   28px 4px rgba(201, 162, 39, 0.12);
}

.ps-stat-top {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 20px);
    width: 100%;
}

.ps-stat-icon {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #c9a227;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.4));
}

.ps-stat-number {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: #c9a227;
    line-height: 1;
    letter-spacing: -0.5px;
}

.ps-stat-label {
    font-size: clamp(0.62rem, 0.9vw, 0.78rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    padding-left: 2px;
}

@media (max-width: 1100px) {
    .ps-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .ps-heading-line {
        max-width: 60px;
    }

    .ps-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .ps-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ps-stat-card {
        padding: 16px 14px;
    }
}

@media (max-width: 560px) {
    .ps-heading-title {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .ps-heading-line {
        max-width: 40px;
    }

    .ps-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ps-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ps-stat-number {
        font-size: 1.8rem;
    }

    .ps-stat-label {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 400px) {
    .ps-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ps-stat-icon {
        font-size: 1.4rem;
    }

    .ps-stat-number {
        font-size: 1.6rem;
    }
}


/* =============================================
   RÄÂLUNK OLDAL Ă˘ÂÂ BEMUTATKOZÄÂ SZEKCIÄÂ
   ============================================= */

.section-about-intro {
    background: #f4f0e8;
    position: relative;
    overflow: visible;
}

.about-intro-inner {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: stretch;
    min-height: 340px;
    position: relative;
}

.about-intro-left {
    background: #f4f0e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 4.5vw, 56px) clamp(20px, 3.5vw, 48px) clamp(36px, 4.5vw, 56px) clamp(20px, 4vw, 64px);
    gap: 0;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.about-intro-title {
    font-size: clamp(1.3rem, 2.2vw, 2.0rem);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.20;
    letter-spacing: -0.3px;
    margin-bottom: clamp(14px, 2vw, 22px);
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: clamp(18px, 2.5vw, 30px);
}

.about-intro-text p {
    font-size: clamp(0.78rem, 0.9vw, 0.88rem);
    color: #4a4a4a;
    line-height: 1.72;
    margin: 0;
}

.about-intro-text strong {
    color: #0a1628;
    font-weight: 700;
}

.about-intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
}

.about-intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-intro-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #d6a62a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    color: #0a1628;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(214, 166, 42, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-intro-feature:hover .about-intro-feature-icon {
    transform: scale(1.08);
    box-shadow: 0 5px 18px rgba(214, 166, 42, 0.40);
}

.about-intro-feature-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.35;
}

.about-intro-right {
    position: relative;
    overflow: visible;
}

.about-intro-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 100%;
    background: linear-gradient(
        to right,
        #f4f0e8 0%,
        rgba(244, 240, 232, 0.75) 30%,
        rgba(244, 240, 232, 0.35) 55%,
        rgba(244, 240, 232, 0.10) 75%,
        transparent 100%
    );
    z-index: 5;
    pointer-events: none;
}

.about-intro-image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-intro-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-intro-image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0c1a2e 0%, #152238 50%, #1e3352 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.about-intro-image-placeholder i {
    font-size: 3.5rem;
    color: rgba(212, 165, 52, 0.28);
}

.about-intro-image-placeholder span {
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.32);
    text-align: center;
    padding: 0 28px;
    line-height: 1.6;
}

.about-intro-quote {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(240px, 24vw, 320px);
    z-index: 100;
    background: linear-gradient(145deg, #04152f 0%, #071a38 60%, #082040 100%);
    border: 1.5px solid rgba(214, 166, 42, 0.55);
    border-radius: 16px;
    padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 26px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(214, 166, 42, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-intro-quote-mark {
    font-size: 3.2rem;
    line-height: 0.7;
    color: #d6a62a;
    font-family: Georgia, serif;
    margin-bottom: 12px;
    display: block;
    opacity: 0.9;
}

.about-intro-quote-text {
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    color: #ffffff;
    line-height: 1.72;
    margin: 0 0 16px;
    font-style: normal;
}

.about-intro-quote-divider {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #d6a62a, rgba(214, 166, 42, 0.20));
    border-radius: 2px;
    margin-bottom: 12px;
}

.about-intro-quote-source {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-intro-quote-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #d6a62a;
}

.about-intro-quote-role {
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.3px;
}

.aoi-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.60s ease, transform 0.60s ease;
}

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

.aoi-stagger .about-intro-feature {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.aoi-stagger.aoi-visible .about-intro-feature:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.aoi-stagger.aoi-visible .about-intro-feature:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.aoi-stagger.aoi-visible .about-intro-feature:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.aoi-stagger.aoi-visible .about-intro-feature:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }

.aoi-quote-float {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
    transition: opacity 0.65s ease 0.20s, transform 0.65s ease 0.20s;
}

.aoi-quote-float.aoi-visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.aoi-img-fade {
    opacity: 0;
    transition: opacity 0.75s ease 0.08s;
}

.aoi-img-fade.aoi-visible {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .aoi-fade-up,
    .aoi-stagger .about-intro-feature,
    .aoi-img-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .aoi-quote-float {
        opacity: 1 !important;
        transform: translateY(-50%) !important;
        transition: none !important;
    }
}

@media (min-width: 1400px) {
    .about-intro-inner {
        grid-template-columns: 42% 58%;
    }
}

@media (max-width: 1024px) {
    .section-about-intro {
        overflow: visible;
    }

    .about-intro-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-intro-left {
        padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 40px);
    }

    .about-intro-right {
        min-height: 380px;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .about-intro-right::before {
        display: none;
    }

    .about-intro-quote {
        position: static;
        transform: none;
        width: 100%;
        left: auto;
        top: auto;
        order: 1;
        border-radius: 14px;
        margin-bottom: 0;
    }

    .aoi-quote-float {
        transform: translateX(-16px);
    }

    .aoi-quote-float.aoi-visible {
        transform: translateX(0);
    }

    .about-intro-image-wrap {
        order: 2;
        position: relative;
        inset: auto;
        min-height: 300px;
        border-radius: 0;
        overflow: hidden;
    }

    .about-intro-image-wrap img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-intro-image-placeholder {
        order: 2;
        position: relative;
        inset: auto;
        min-height: 300px;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .about-intro-left {
        padding: clamp(36px, 7vw, 52px) clamp(16px, 5vw, 24px);
    }

    .about-intro-title {
        font-size: clamp(1.3rem, 5vw, 1.75rem);
    }

    .about-intro-text p {
        font-size: 0.82rem;
    }

    .about-intro-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
    }

    .about-intro-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.92rem;
    }

    .about-intro-feature-label {
        font-size: 0.72rem;
    }

    .about-intro-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-intro-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

@media (max-width: 380px) {
    .about-intro-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}


/* =============================================
   ÄÂRTÄÂKEINK SZEKCIÄÂ Ă˘ÂÂ prÄĹ mium dark navy sÄÄv
   ============================================= */

.section-values-premium {
    position: relative;
    width: 100%;
    background: linear-gradient(
        160deg,
        #060e1e 0%,
        #0a1628 40%,
        #071020 70%,
        #08152a 100%
    );
    overflow: hidden;
    padding: clamp(56px, 7vw, 80px) 0;
}

.section-values-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    pointer-events: none;
    z-index: 0;
}

.section-values-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 165, 52, 0.04) 0%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}

.section-values-premium .vp-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.vp-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.vp-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 14px;
}

.vp-title-line {
    height: 1.5px;
    width: clamp(40px, 6vw, 90px);
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 165, 52, 0.85)
    );
    flex-shrink: 0;
}

.vp-title-line--right {
    background: linear-gradient(
        to left,
        transparent,
        rgba(212, 165, 52, 0.85)
    );
}

.vp-title {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
    line-height: 1.15;
    margin: 0;
    white-space: nowrap;
}

.vp-subtitle {
    font-size: clamp(0.85rem, 1.1vw, 1.0rem);
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.6;
}

.vp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.vp-grid::before,
.vp-grid::after {
    display: none;
}

.vp-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(28px, 3.5vw, 44px) clamp(20px, 3vw, 40px);
    position: relative;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.vp-item.vp-visible {
    opacity: 1;
    transform: translateY(0);
}

.vp-item:nth-child(1) { transition-delay: 0.05s; }
.vp-item:nth-child(2) { transition-delay: 0.18s; }
.vp-item:nth-child(3) { transition-delay: 0.31s; }
.vp-item:nth-child(4) { transition-delay: 0.44s; }

.vp-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(212, 165, 52, 0.50) 20%,
        rgba(212, 165, 52, 0.55) 50%,
        rgba(212, 165, 52, 0.50) 80%,
        transparent 100%
    );
    pointer-events: none;
}

.vp-icon-wrap {
    width: clamp(80px, 8vw, 100px);
    height: clamp(80px, 8vw, 100px);
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--primary-gold);
    margin-bottom: clamp(20px, 2.5vw, 28px);
    flex-shrink: 0;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.vp-item:hover .vp-icon-wrap {
    transform: scale(1.07);
    border-color: var(--primary-gold-light);
    box-shadow:
        0 0 20px rgba(212, 165, 52, 0.25),
        0 0 40px rgba(212, 165, 52, 0.10);
}

.vp-item-title {
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: clamp(10px, 1.5vw, 16px);
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.vp-item-text {
    font-size: clamp(0.88rem, 1.05vw, 1.0rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.72;
    margin: 0;
    max-width: 260px;
}

@media (max-width: 1024px) {
    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-item:nth-child(1)::after,
    .vp-item:nth-child(3)::after {
        display: block;
    }

    .vp-item:nth-child(2)::after,
    .vp-item:nth-child(4)::after {
        display: none;
    }

    .vp-item:nth-child(1),
    .vp-item:nth-child(2) {
        border-bottom: 1px solid rgba(212, 165, 52, 0.18);
    }

    .vp-item-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .vp-grid {
        grid-template-columns: 1fr;
    }

    .vp-item {
        align-items: center;
        text-align: center;
        padding: clamp(24px, 5vw, 36px) clamp(20px, 6vw, 40px);
        border-bottom: 1px solid rgba(212, 165, 52, 0.14);
    }

    .vp-item:last-child {
        border-bottom: none;
    }

    .vp-item:nth-child(1),
    .vp-item:nth-child(2) {
        border-bottom: 1px solid rgba(212, 165, 52, 0.14);
    }

    .vp-item::after {
        display: none !important;
    }

    .vp-icon-wrap {
        width: clamp(70px, 18vw, 88px);
        height: clamp(70px, 18vw, 88px);
        font-size: clamp(1.6rem, 5vw, 2.1rem);
    }

    .vp-item-title {
        font-size: clamp(1.1rem, 5vw, 1.35rem);
    }

    .vp-item-text {
        font-size: clamp(0.88rem, 4vw, 0.97rem);
        max-width: 420px;
    }

    .vp-title-line {
        width: clamp(28px, 8vw, 55px);
    }
}

@media (max-width: 480px) {
    .vp-title {
        font-size: 1.5rem;
        white-space: normal;
    }

    .vp-title-row {
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vp-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* =============================================
   SZOLGÄÂLTATÄÂSI TERÄÂLET Ă˘ÂÂ prÄĹ mium split layout
   ============================================= */

.section-area-premium {
    background: #f4f0e8;
    position: relative;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: stretch;
    min-height: clamp(420px, 50vh, 560px);
    width: 100%;
    overflow: hidden;
}

.sap-image-block {
    position: relative;
    overflow: hidden;
}

.sap-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.sap-image-fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(244, 240, 232, 0) 0%,
        rgba(244, 240, 232, 0.55) 55%,
        rgba(244, 240, 232, 0.92) 88%,
        rgba(244, 240, 232, 1) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.sap-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 4vw, 60px) clamp(28px, 3.5vw, 56px) clamp(36px, 4vw, 60px) clamp(20px, 2.5vw, 40px);
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.sap-label {
    font-size: clamp(0.78rem, 0.95vw, 0.92rem);
    font-weight: 500;
    color: #6B7280;
    margin-bottom: clamp(10px, 1.5vw, 16px);
    line-height: 1.5;
}

.sap-title {
    font-size: clamp(1.5rem, 2.4vw, 2.4rem);
    font-weight: 800;
    color: #061A3A;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: clamp(16px, 2vw, 24px);
}

.sap-title-line {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, #D4A62A, rgba(212, 166, 42, 0.35));
    border-radius: 2px;
    margin-bottom: clamp(24px, 3vw, 36px);
    flex-shrink: 0;
}

.sap-text {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vw, 14px);
    margin-bottom: clamp(20px, 2.5vw, 32px);
}

.sap-text p {
    font-size: clamp(0.84rem, 1.0vw, 0.95rem);
    color: #4B5563;
    line-height: 1.75;
    margin: 0;
}

.sap-text strong {
    color: #061A3A;
    font-weight: 700;
}

.sap-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 1.4vw, 16px) clamp(14px, 2vw, 22px);
}

.sap-feature {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 18px);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sap-feature.sap-feat-visible {
    opacity: 1;
    transform: translateY(0);
}

.sap-feature:nth-child(1) { transition-delay: 0.05s; }
.sap-feature:nth-child(2) { transition-delay: 0.15s; }
.sap-feature:nth-child(3) { transition-delay: 0.25s; }
.sap-feature:nth-child(4) { transition-delay: 0.35s; }

.sap-feature-icon {
    width: clamp(48px, 4.5vw, 58px);
    height: clamp(48px, 4.5vw, 58px);
    min-width: clamp(48px, 4.5vw, 58px);
    background: #D4A62A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.15rem, 1.5vw, 1.45rem);
    color: #061A3A;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(212, 166, 42, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.sap-feature:hover .sap-feature-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 166, 42, 0.38);
}

.sap-feature-label {
    font-size: clamp(0.82rem, 0.95vw, 0.94rem);
    font-weight: 600;
    color: #061A3A;
    line-height: 1.4;
}

.section-area-premium .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-area-premium .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-area-premium .sap-label    { transition-delay: 0.0s; }
.section-area-premium .sap-title    { transition-delay: 0.08s; }
.section-area-premium .sap-title-line { transition-delay: 0.14s; }
.section-area-premium .sap-text     { transition-delay: 0.20s; }
.section-area-premium .sap-features { transition-delay: 0.28s; }

@media (max-width: 1024px) {
    .section-area-premium {
        grid-template-columns: 50% 50%;
        min-height: clamp(360px, 48vh, 480px);
    }

    .sap-content {
        padding: clamp(48px, 6vw, 72px) clamp(24px, 3.5vw, 48px);
        max-width: 100%;
    }

    .sap-title {
        font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    }

    .sap-image-fade {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .section-area-premium {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
        background: #f4f0e8;
    }

    .sap-image-block {
        order: 1;
        position: relative;
        height: 48vw;
        min-height: 190px;
        max-height: 300px;
        overflow: hidden;
    }

    .sap-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }

    .sap-image-fade {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        height: 55%;
        background: linear-gradient(
            to top,
            rgba(244, 240, 232, 1)   0%,
            rgba(244, 240, 232, 0.65) 45%,
            rgba(244, 240, 232, 0)   100%
        );
        z-index: 2;
    }

    .sap-content {
        order: 2;
        background: #f4f0e8;
        padding: 20px 20px 44px;
        max-width: 100%;
        justify-content: flex-start;
        position: relative;
        z-index: 3;
        margin-top: 0;
    }

    .sap-label {
        font-size: 0.70rem;
        font-weight: 600;
        color: #8a9ab0;
        margin-bottom: 8px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .sap-title {
        font-size: clamp(1.4rem, 5.8vw, 1.85rem);
        line-height: 1.18;
        margin-bottom: 8px;
        letter-spacing: -0.4px;
        color: #061A3A;
    }

    .sap-title-line {
        width: 36px;
        height: 3px;
        margin-bottom: 16px;
        background: linear-gradient(90deg, #D4A62A 0%, rgba(212,166,42,0.25) 100%);
        border-radius: 2px;
    }

    .sap-text {
        gap: 9px;
        margin-bottom: 22px;
    }

    .sap-text p {
        font-size: 0.85rem;
        line-height: 1.74;
        color: #4B5563;
    }

    .sap-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        background: transparent;
    }

    .sap-feature {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 11px;
        padding: 13px 12px;
        background: #ffffff;
        border-radius: 10px;
        border-left: 3px solid #D4A62A;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .sap-feature.sap-feat-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .sap-feature:nth-child(1) { transition-delay: 0.05s; }
    .sap-feature:nth-child(2) { transition-delay: 0.13s; }
    .sap-feature:nth-child(3) { transition-delay: 0.21s; }
    .sap-feature:nth-child(4) { transition-delay: 0.29s; }

    .sap-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.9rem;
        border-radius: 50%;
        background: #D4A62A;
        color: #061A3A;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 8px rgba(212, 166, 42, 0.28);
    }

    .sap-feature-label {
        font-size: 0.73rem;
        font-weight: 700;
        color: #061A3A;
        line-height: 1.35;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .sap-image-block {
        height: 52vw;
        min-height: 175px;
        max-height: 270px;
    }

    .sap-content {
        padding: 18px 16px 40px;
    }

    .sap-title {
        font-size: clamp(1.28rem, 6.2vw, 1.62rem);
    }

    .sap-features {
        gap: 8px;
    }

    .sap-feature {
        padding: 11px 10px;
        gap: 9px;
    }

    .sap-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.84rem;
    }

    .sap-feature-label {
        font-size: 0.70rem;
    }
}

@media (max-width: 375px) {
    .sap-image-block {
        height: 55vw;
        min-height: 165px;
    }

    .sap-content {
        padding: 16px 14px 36px;
    }

    .sap-title {
        font-size: 1.22rem;
    }

    .sap-feature {
        padding: 10px 9px;
        gap: 8px;
    }

    .sap-feature-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.80rem;
    }

    .sap-feature-label {
        font-size: 0.68rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-area-premium .animate-on-scroll,
    .sap-feature {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* =============================================
   KAPCSOLAT OLDAL Ă˘ÂÂ prÄĹ mium 2 oszlopos szekciÄĹ
   ============================================= */

.section-contact-premium {
    background: var(--bg-cream);
    padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 60px);
    position: relative;
}

.cp-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: stretch;
    min-height: 720px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.18),
        0 8px 32px rgba(0, 0, 0, 0.10);
}

.contact-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
    background-color: #07152a;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 26, 53, 0.85);
    z-index: 0;
    pointer-events: none;
}

.contact-visual > * {
    position: relative;
    z-index: 1;
}

.cv-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 16px;
    display: block;
}

.cv-title {
    font-size: clamp(2.4rem, 3.8vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.10;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.cv-title-line {
    width: 44px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    margin-bottom: 24px;
}

.cv-desc {
    font-size: clamp(0.92rem, 1.15vw, 1.05rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.70;
    margin-bottom: 36px;
    max-width: 400px;
}

.cv-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

.cv-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cv-feature:first-child {
    padding-top: 0;
}

.cv-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cv-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #07152a;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(212, 165, 52, 0.30);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cv-feature:hover .cv-feature-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 165, 52, 0.45);
}

.cv-feature-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.cv-feature-title {
    font-size: 1.0rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.cv-feature-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.55;
}

.cv-stats {
    display: flex;
    align-items: stretch;
    background: rgba(5, 15, 35, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 52, 0.22);
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
}

.cv-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 22px 12px;
    text-align: center;
    position: relative;
}

.cv-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: rgba(212, 165, 52, 0.28);
}

.cv-stat-icon {
    font-size: 1.35rem;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.cv-stat-number {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    letter-spacing: -0.3px;
}

.cv-stat-label {
    font-size: 0.66rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.60);
    text-transform: lowercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin-top: 2px;
}

.contact-form-panel {
    background: #ffffff;
    padding: clamp(40px, 5vw, 64px) clamp(36px, 4.5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cfp-title {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.cfp-title-line {
    width: 48px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    margin-bottom: 32px;
}

.cfp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cfp-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}

.cfp-group:last-of-type {
    margin-bottom: 0;
}

.cfp-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a1628;
    letter-spacing: 0.1px;
}

.cfp-label span {
    color: var(--primary-gold);
    margin-left: 2px;
}

.cfp-input,
.cfp-select,
.cfp-textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.90rem;
    font-family: inherit;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.cfp-input::placeholder,
.cfp-textarea::placeholder {
    color: #aab0bb;
}

.cfp-input:focus,
.cfp-select:focus,
.cfp-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 165, 52, 0.12);
}

.cfp-select-wrap {
    position: relative;
}

.cfp-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.cfp-select {
    cursor: pointer;
    padding-right: 40px;
}

.cfp-select option {
    background: #ffffff;
    color: #1a1a1a;
}

.cfp-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.cfp-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 22px;
}

.cfp-privacy i {
    color: #aab0bb;
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.cfp-privacy-text {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.55;
}

.cfp-submit {
    width: 100%;
    height: 58px;
    background: var(--primary-gold);
    color: #07152a;
    border: none;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.cfp-submit:hover {
    background: var(--primary-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 52, 0.35);
}

.cfp-submit i {
    font-size: 0.9rem;
}

.cfp-msg {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    font-weight: 500;
    display: none;
}

.cfp-msg.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.cfp-msg.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@media (max-width: 1199px) {
    .cp-inner {
        grid-template-columns: 50% 50%;
        min-height: 640px;
    }
}

@media (max-width: 1024px) {
    .cp-inner {
        border-radius: 16px;
    }

    .cv-title {
        font-size: clamp(2.0rem, 4.5vw, 3.0rem);
    }

    .contact-form-panel {
        padding: clamp(36px, 4.5vw, 52px) clamp(28px, 4vw, 48px);
    }
}

@media (max-width: 767px) {
    .section-contact-premium {
        padding: clamp(32px, 6vw, 60px) clamp(12px, 4vw, 24px);
    }

    .cp-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        min-height: auto;
        border-radius: 14px;
        box-shadow:
            0 12px 48px rgba(0, 0, 0, 0.12),
            0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .contact-visual {
        order: 1;
        min-height: 350px;
        max-height: 440px;
        justify-content: flex-start;
        padding: 28px 24px;
    }

    .cv-title {
        font-size: clamp(2.0rem, 9vw, 2.8rem);
    }

    .cv-desc {
        font-size: 0.90rem;
        max-width: 100%;
    }

    .cv-features {
        margin-bottom: 24px;
    }

    .cv-feature {
        padding: 14px 0;
    }

    .cv-feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.0rem;
    }

    .cv-feature-title {
        font-size: 0.92rem;
    }

    .cv-feature-desc {
        font-size: 0.78rem;
    }

    .cv-stats {
        margin-bottom: 0;
        margin-top: 0;
    }

    .cv-stat {
        padding: 16px 8px;
    }

    .cv-stat-icon {
        font-size: 1.1rem;
    }

    .cv-stat-number {
        font-size: 1.55rem;
    }

    .cv-stat-label {
        font-size: 0.60rem;
    }

    .contact-form-panel {
        order: 2;
        padding: 28px 20px 36px;
    }

    .cfp-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .cfp-row .cfp-group {
        margin-bottom: 16px;
    }

    .cfp-title {
        font-size: clamp(1.4rem, 6.5vw, 1.8rem);
    }

    .cfp-title-line {
        margin-bottom: 24px;
    }

    .cfp-input,
    .cfp-select,
    .cfp-textarea {
        font-size: 0.9rem;
        padding: 13px 14px;
    }

    .cfp-textarea {
        min-height: 130px;
    }

    .cfp-submit {
        height: 56px;
        font-size: 0.78rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .section-contact-premium {
        padding: clamp(24px, 5vw, 48px) 8px;
    }

    .cp-inner {
        border-radius: 12px;
    }

    .contact-visual {
        min-height: 320px;
        padding: 24px 18px;
    }

    .contact-form-panel {
        padding: 24px 16px 32px;
    }

    .cfp-privacy-text {
        font-size: 0.72rem;
    }
}

@media (max-width: 375px) {
    .cp-inner {
        border-radius: 10px;
    }

    .contact-visual {
        min-height: 300px;
        padding: 20px 16px;
    }

    .cv-title {
        font-size: 1.85rem;
    }

    .contact-form-panel {
        padding: 20px 14px 28px;
    }

    .cfp-submit {
        height: 52px;
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cv-feature-icon,
    .cfp-submit {
        transition: none !important;
        transform: none !important;
    }
}


/* =============================================
   CSALÄÂDI HÄÂZAK KIVITELEZÄÂSE ALOLDAL
   ============================================= */

.section-why-choose {
    background: var(--bg-cream);
    padding: clamp(70px, 8vw, 110px) 0;
}

.why-choose-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.why-choose-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -0.3px;
    margin: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 2px 16px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 32px 24px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.10),
        0 4px 12px rgba(0, 0, 0, 0.05);
}

.why-choose-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-gold);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: background 0.28s ease, color 0.28s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: var(--primary-gold);
    color: #0a1628;
}

.why-choose-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.35;
    margin: 0;
}

.why-choose-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}


/* ============================================================
   ÄÂGY DOLGOZUNK EGYÄÂTT Ă˘ÂÂ vÄÂ­zszintes idÄšÂvonal, 5 lÄĹ pÄĹ s
   ============================================================ */

.section-process-horizontal {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: clamp(70px, 8vw, 110px) 0;
}

.process-h-header {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 80px);
}

.process-h-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -0.3px;
    margin: 0 0 14px;
}

.process-h-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-h-line::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(212, 165, 52, 0.45) 8%,
        rgba(212, 165, 52, 0.45) 92%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.process-h-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.process-h-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0a1628;
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-bottom: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-h-item:hover .process-h-icon {
    transform: scale(1.08);
    box-shadow:
        0 0 0 6px rgba(212, 165, 52, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.12);
}

.process-h-num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.process-h-title {
    font-size: 1.0rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 8px;
    line-height: 1.3;
}

.process-h-desc {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
}


/* ============================================================
   A KIVITELEZÄÂS FÄšÂBB TERÄÂLETEI Ă˘ÂÂ 8 kÄÄrtya, 4+4
   ============================================================ */

.section-build-areas {
    background: var(--bg-cream);
    padding: clamp(70px, 8vw, 110px) 0;
}

.build-areas-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.build-areas-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -0.3px;
    margin: 0 0 14px;
}

.build-areas-header::after,
.process-h-header::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-bordo));
    border-radius: 2px;
    margin: 0 auto;
}

.build-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.build-area-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 2px 14px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 28px 20px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.build-area-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.09),
        0 3px 10px rgba(0, 0, 0, 0.05);
}

.build-area-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.build-area-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0;
    line-height: 1.3;
}

.build-area-desc {
    font-size: 0.80rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   KIVITELEZETT PROJEKTJEINK Ă˘ÂÂ 4 kÄĹ p + gomb
   ============================================================ */

.section-projects-showcase {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: clamp(70px, 8vw, 110px) 0;
}

.projects-showcase-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.projects-showcase-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0a1628;
    letter-spacing: -0.3px;
    margin: 0;
}

.projects-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.projects-showcase-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e8e4dc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: zoom-in;
}

.projects-showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.projects-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.projects-showcase-item:hover img {
    transform: scale(1.05);
}

.projects-showcase-cta {
    text-align: center;
    margin-top: clamp(32px, 4vw, 48px);
}

.btn-projects-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--primary-gold);
    border: 1.5px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-projects-more i {
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}

.btn-projects-more:hover {
    background: var(--primary-gold);
    color: #0a1628;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 52, 0.30);
}

.btn-projects-more:hover i {
    transform: translateX(4px);
}


/* ============================================================
   ALSÄÂ CTA + FORM PANEL Ă˘ÂÂ contact-visual variÄÄns
   ============================================================ */

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

.contact-visual--cta {
    justify-content: flex-start;
}

.contact-visual--cta .cv-desc {
    margin-bottom: clamp(28px, 4vw, 40px);
}

.cv-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cv-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.cv-contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.cv-contact-item a:hover {
    color: var(--primary-gold);
}

.cv-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    color: #07152a;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(212, 165, 52, 0.30);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cv-contact-item:hover .cv-contact-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 165, 52, 0.45);
}


/* ============================================================
   RESZPONZIVITÄÂS Ă˘ÂÂ CSALÄÂDI HÄÂZAK ALOLDAL
   ============================================================ */

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .process-h-line {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
        max-width: 620px;
    }

    .process-h-line::before {
        display: none;
    }

    .process-h-item:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 280px;
        margin: 0 auto;
    }

    .build-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .projects-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 440px;
        margin: 0 auto;
    }

    .why-choose-header h2,
    .process-h-header h2,
    .build-areas-header h2,
    .projects-showcase-header h2 {
        font-size: 1.7rem;
    }

    .process-h-line {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 32px;
        margin: 0 auto;
    }

    .process-h-item:nth-child(5) {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }

    .process-h-desc {
        max-width: 100%;
    }

    .build-areas-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 440px;
        margin: 0 auto;
    }

    .projects-showcase-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 440px;
        margin: 0 auto;
    }

    .projects-showcase-item {
        aspect-ratio: 16 / 10;
    }

    .btn-projects-more {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .cv-contact-list {
        gap: 14px;
    }

    .cv-contact-item {
        font-size: 0.92rem;
    }

    .cv-contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.0rem;
    }
}

@media (max-width: 480px) {
    .why-choose-card {
        padding: 26px 20px 22px;
    }

    .build-area-card {
        padding: 24px 16px 20px;
    }

    .process-h-icon {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-choose-card,
    .build-area-card,
    .projects-showcase-item,
    .process-h-item .process-h-icon,
    .btn-projects-more,
    .cv-contact-item .cv-contact-icon {
        transition: none !important;
        transform: none !important;
    }
}

/* ============================================================
   BLOG RENDSZER â KIP Family Kft.
   1) FĹoldali blog elĹnĂŠzet (section-blog-preview)
   2) Blog ĂśsszesĂ­tĹ oldal (section-blog-list)
   3) Blog cikk oldal (section-blog-article)
   4) Blog CTA szekciĂł
   ============================================================ */


/* ââ 1) FĹOLDALI BLOG ELĹNĂZET âââââââââââââââââââââââââââââââ */

.section-blog-preview {
    background: #0a1628;
    padding: clamp(70px, 8vw, 110px) 0;
    position: relative;
}

.blog-preview-header {
    text-align: center;
    margin-bottom: clamp(44px, 5vw, 64px);
}

.blog-preview-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 12px;
}

.blog-preview-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}

.blog-preview-header p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

.blog-preview-separator {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-bordo, #8B2332));
    border-radius: 2px;
    margin: 20px auto 0;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-preview-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,165,52,0.12);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.blog-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.30);
    border-color: rgba(212,165,52,0.40);
    background: rgba(255,255,255,0.07);
}

.blog-preview-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a2a40;
}

.blog-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-preview-card:hover .blog-preview-img img {
    transform: scale(1.06);
}

.blog-preview-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-gold);
    color: #07152a;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}

.blog-preview-content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-preview-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.blog-preview-meta span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-preview-meta i {
    color: var(--primary-gold);
    font-size: 0.7rem;
}

.blog-preview-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.blog-preview-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.blog-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.80rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 4px;
    transition: gap 0.25s ease;
}

.blog-preview-card:hover .blog-preview-link {
    gap: 12px;
}

.blog-preview-cta {
    text-align: center;
    margin-top: clamp(40px, 5vw, 56px);
}

.btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    border: 1.5px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-blog-all:hover {
    background: var(--primary-gold);
    color: #07152a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,165,52,0.30);
}

.btn-blog-all i {
    transition: transform 0.25s ease;
}

.btn-blog-all:hover i {
    transform: translateX(4px);
}


/* ââ 2) BLOG ĂSSZESĂTĹ OLDAL ââââââââââââââââââââââââââââââââ */

.section-blog-list {
    background: var(--bg-cream, #f4f0e8);
    padding: clamp(70px, 8vw, 110px) 0;
}

.blog-list-header {
    text-align: center;
    margin-bottom: clamp(44px, 5vw, 64px);
}

.blog-list-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.blog-list-header p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-list-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    height: 100%;
}

.blog-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.12);
}

.blog-list-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e8e4dc;
}

.blog-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-list-card:hover .blog-list-img img {
    transform: scale(1.06);
}

.blog-list-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-gold);
    color: #07152a;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.blog-list-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-list-meta {
    display: flex;
    gap: 14px;
}

.blog-list-meta span {
    font-size: 0.75rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-list-meta i {
    color: var(--primary-gold);
    font-size: 0.7rem;
}

.blog-list-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.4;
    margin: 0;
}

.blog-list-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.blog-list-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.80rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 4px;
    transition: gap 0.25s ease;
}

.blog-list-card:hover .blog-list-link {
    gap: 12px;
}


/* ââ 3) BLOG CIKK OLDAL ââââââââââââââââââââââââââââââââââââ */

.section-blog-article {
    background: var(--bg-cream, #f4f0e8);
    padding: clamp(60px, 7vw, 100px) 0;
}

.blog-article-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(40px, 5vw, 70px);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Header */
.blog-article-header {
    margin-bottom: 32px;
}

.blog-article-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: #07152a;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.blog-article-h1 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.blog-article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-article-meta span {
    font-size: 0.80rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-article-meta i {
    color: var(--primary-gold);
    font-size: 0.75rem;
}

.blog-article-separator {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-bordo, #8B2332));
    border-radius: 2px;
    margin-top: 20px;
}

/* BevezetĹ */
.blog-article-intro {
    margin-bottom: 36px;
}

.blog-article-intro p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.80;
    font-weight: 500;
    border-left: 3px solid var(--primary-gold);
    padding-left: 20px;
    margin: 0;
}

/* SzekciĂłk */
.blog-article-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 28px 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.blog-article-section-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.blog-article-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 14px;
    line-height: 1.3;
}

.blog-article-section p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
}

.blog-article-section p:last-child {
    margin-bottom: 0;
}

.blog-article-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-article-list li {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.blog-article-list li::before {
    content: 'â';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 700;
}

ol.blog-article-list {
    counter-reset: blog-counter;
}

ol.blog-article-list li {
    counter-increment: blog-counter;
}

ol.blog-article-list li::before {
    content: counter(blog-counter) '.';
    font-weight: 700;
    color: var(--primary-gold);
}

/* KapcsolĂłdĂł cikkek */
.blog-related {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.blog-related-title-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 16px;
}

.blog-related-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-related-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    text-decoration: none;
    color: #0a1628;
    font-size: 0.90rem;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.blog-related-card:hover {
    background: #fdf9f0;
    border-color: rgba(212,165,52,0.35);
    color: var(--primary-gold);
}

.blog-related-card i {
    color: var(--primary-gold);
    font-size: 0.80rem;
    flex-shrink: 0;
}

/* OldalsĂĄv */
.blog-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.blog-sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 22px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.blog-sidebar-title {
    font-size: 1.0rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 12px;
    line-height: 1.3;
}

.blog-sidebar-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.65;
    margin: 0 0 16px;
}

.blog-sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--primary-gold);
    color: #07152a;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
    width: 100%;
    justify-content: center;
}

.blog-sidebar-btn:hover {
    background: #e8c15a;
    transform: translateY(-2px);
}

.blog-sidebar-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-sidebar-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
}

.blog-sidebar-contacts i {
    color: var(--primary-gold);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.blog-sidebar-contacts a {
    color: #0a1628;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.blog-sidebar-contacts a:hover {
    color: var(--primary-gold);
}

.blog-sidebar-card--nav .blog-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-sidebar-card--nav .blog-sidebar-nav a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.83rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-sidebar-card--nav .blog-sidebar-nav a:hover {
    background: #f4f0e8;
    color: var(--primary-gold);
}


/* ââ 4) BLOG CTA SZEKCIĂ ââââââââââââââââââââââââââââââââââââ */

.section-blog-cta {
    background: #0a1628;
    padding: clamp(60px, 7vw, 90px) 0;
}

.blog-cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.blog-cta-inner h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.blog-cta-inner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0 0 28px;
}

.btn-blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: var(--primary-gold);
    color: #07152a;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-blog-cta:hover {
    background: #e8c15a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,165,52,0.35);
}

.btn-blog-cta i {
    transition: transform 0.25s ease;
}

.btn-blog-cta:hover i {
    transform: translateX(4px);
}


/* ââ RESZPONZIVITĂS ââââââââââââââââââââââââââââââââââââââââ */

@media (max-width: 1024px) {
    .blog-article-inner {
        grid-template-columns: 1fr;
    }
    .blog-article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .blog-sidebar-card--nav {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .blog-preview-grid,
    .blog-list-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .blog-article-sidebar {
        grid-template-columns: 1fr;
    }
    .btn-blog-all {
        width: 100%;
        justify-content: center;
    }
    .blog-article-intro p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .blog-article-section {
        padding: 22px 18px 20px;
    }
    .blog-article-h1 {
        font-size: 1.5rem;
    }
    .blog-preview-content,
    .blog-list-content {
        padding: 18px 18px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-preview-card,
    .blog-list-card,
    .btn-blog-all,
    .btn-blog-cta,
    .blog-sidebar-btn {
        transition: none !important;
        transform: none !important;
    }
}