/**
 * Lunelle Aesthetics – Prémium Esztétikai Klinika - Main Stylesheet
 * Színpaletta (prémium, elegáns):
 *   - Primer barna: #987a65
 *   - Világos bézs: #E3DDD7
 *   - Háttér: #f5f3f0
 *   - Sötét szürke: #393735
 * Betűtípusok:
 *   - Montserrat (címek)
 *   - Gantari (törzsszöveg)
 */

/* ============================================
   CSS RESET ÉS ALAPÉRTELMEZÉSEK
   ============================================ */

/* Font Awesome ikon helykitöltő (FOUT megelőzése) */
.fas, .fab, .far, .fal, .fad {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif;
    font-display: swap;
}

/* Ikon konténerek - stabil méret villogás megelőzésére */
i[class*="fa-"] {
    display: inline-block;
    min-width: 1em;
    text-align: center;
}

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

:root {
    /* Színek – prémium, elegáns hangulat */
    --primary-color: #987a65;
    --color-primary: #c8ad61;
    --secondary-color: #E3DDD7;
    --accent-color: #c8ad61;
    --dark-gray: #393735;
    --medium-gray: #69645f;
    --light-gray: #A29991;
    --bg-light: #f5f3f0;
    --bg-beige: #F4F4F0;
    --bg-beige2: #f3f0eb;
    --text-dark: #393735;
    --text-light: #69645f;
    --border-color: #E3DDD7;
    --white: #ffffff;
    
    /* Tipográfia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Gantari', sans-serif;
    
    /* Hero Font Sizes - Fluid Typography */
    --hero-title-size: clamp(2rem, 5vw + 1rem, 4rem);
    --hero-subtitle-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
    
    /* Méretek */
    --container-width: 1400px;
    --container-padding: 20px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    
    /* Átmenetek */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    max-width: 100%;
    position: relative;
}

/* ============================================
   TIPOGRÁFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-color);
}

/* ============================================
   LAYOUT
   ============================================ */

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

.section {
    padding: var(--section-padding);
}

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

/* ============================================
   PROMO BAR - Modern Animált Reklám Sáv
   ============================================ */

.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: 1100;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.promo-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 173, 97, 0.1) 25%,
        rgba(200, 173, 97, 0.2) 50%,
        rgba(200, 173, 97, 0.1) 75%,
        transparent 100%
    );
    animation: promoShine 4s ease-in-out infinite;
}

.promo-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

@keyframes promoShine {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.promo-bar-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.promo-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    height: 100%;
    padding: 0 20px;
    transition: opacity 0.2s ease;
}

.promo-bar-content:hover {
    color: #fff;
    opacity: 0.9;
}

.promo-bar-icon {
    color: var(--accent-color);
    font-size: 0.8rem;
    animation: promoIconPulse 2s ease-in-out infinite;
}

@keyframes promoIconPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.promo-bar-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #fff;
}

.promo-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: var(--accent-color);
    color: #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.promo-bar-cta:hover {
    background: #d4bc7a;
    transform: translateX(2px);
}

.promo-bar-cta svg {
    transition: transform 0.3s ease;
}

.promo-bar-cta:hover svg {
    transform: translateX(3px);
}

.promo-bar-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
    border-radius: 4px;
}

.promo-bar-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Body offset when promo bar is active */
body.has-promo-bar .top-bar {
    top: 40px;
}

body.has-promo-bar .header {
    top: 80px; /* 40px promo + 40px top-bar */
}

body.has-promo-bar .hero-elegant {
    margin-top: 156px; /* 40px promo + 40px top-bar + 76px header */
}

/* ============================================
   TOP BAR - Cím és elérhetőségek
   ============================================ */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 1050;
    overflow: hidden;
}

/* Márvány háttér */
.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/686cea96000e734907e0152e.jpeg') center center / cover no-repeat;
    z-index: -1;
}

/* Arany vonal az alján */
.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.top-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Top Bar - Left (Cím) */
.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.top-bar-link:hover {
    color: var(--accent-color);
}

.top-bar-link svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.top-bar-address {
    font-size: 0.9rem;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: var(--border-color);
    margin: 0 4px;
}

/* Top Bar - Right (Elérhetőségek) */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================
   HEADER - Fő Navbar
   ============================================ */

.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    height: 76px;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

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

/* Logo */
.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.header-logo:hover img {
    opacity: 0.85;
}

/* Desktop Navigation */
.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 28px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Kiemelt menüpont - Aktuális ajánlat */
.nav-link-highlight {
    color: var(--primary-color) !important;
}

.nav-link-highlight:hover {
    color: var(--accent-color) !important;
}

.nav-mobile-link-highlight {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.nav-arrow {
    transition: transform 0.2s ease;
    margin-left: 2px;
}

.nav-item.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown - Mega Menu */
.dropdown-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 700px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.nav-item.has-dropdown:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-mega-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px;
}

.dropdown-column {
    padding: 0 15px;
    border-right: 1px solid var(--border-color);
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.dropdown-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dropdown-title a:hover {
    color: var(--accent-color);
}

.dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-list li {
    margin-bottom: 0;
}

.dropdown-list a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-list a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 12px 0;
}

.dropdown-footer {
    padding: 15px 30px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.dropdown-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-footer-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* Dropdown - Simple */
.dropdown-simple {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
}

/* Custom scrollbar for dropdown */
.dropdown-simple::-webkit-scrollbar {
    width: 6px;
}

.dropdown-simple::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.dropdown-simple::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.dropdown-simple::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.nav-item.has-dropdown:hover .dropdown-simple {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-simple .dropdown-list a {
    padding: 10px 20px;
}

.dropdown-simple .dropdown-list a:hover {
    background: var(--bg-light);
    padding-left: 24px;
}

/* Dropdown category title */
.dropdown-category {
    padding: 12px 20px 6px 20px !important;
}

.dropdown-category span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
}

/* Dropdown divider */
.dropdown-simple .dropdown-divider,
.dropdown-list .dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 20px;
    padding: 0 !important;
}

/* Dropdown "all" link */
.dropdown-all {
    margin-top: 4px;
}

.dropdown-all a {
    font-weight: 600 !important;
    color: var(--accent-color) !important;
}

.dropdown-all a:hover {
    color: var(--primary-color) !important;
}

/* ============================================
   NESTED DROPDOWN - Desktop beágyazott lenyíló
   ============================================ */

.dropdown-nested {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
    /* FONTOS: overflow visible a flyout miatt! */
    overflow: visible;
}

.nav-item.has-dropdown:hover .dropdown-nested {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Expandable item - Flyout style */
.dropdown-expandable {
    position: relative;
    list-style: none;
}

.dropdown-expand-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-expand-btn:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

.dropdown-expand-arrow {
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--light-gray);
}

.dropdown-expand-btn:hover .dropdown-expand-arrow {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Sublist - Flyout to the right */
.dropdown-sublist {
    position: absolute;
    top: -8px;
    left: calc(100% - 5px);
    min-width: 280px;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    z-index: 200;
    pointer-events: none;
}

/* Invisible bridge to prevent hover gap */
.dropdown-sublist::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 25px;
    height: 100%;
    background: transparent;
}

/* Show flyout on button hover */
.dropdown-expand-btn:hover + .dropdown-sublist,
.dropdown-sublist:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Keep button styled when sublist is hovered */
.dropdown-expandable:has(.dropdown-sublist:hover) .dropdown-expand-btn {
    background: var(--bg-light);
    color: var(--accent-color);
}

.dropdown-expandable:has(.dropdown-sublist:hover) .dropdown-expand-arrow {
    color: var(--accent-color);
    transform: translateX(3px);
}

.dropdown-sublist li {
    margin: 0;
}

.dropdown-sublist a {
    display: block;
    padding: 11px 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-sublist a:hover {
    color: var(--accent-color);
    background: var(--bg-light);
    padding-left: 28px;
}

/* Direct links in nested dropdown */
.dropdown-nested > .dropdown-list > li > a {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-nested > .dropdown-list > li > a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
    padding-left: 24px;
}

.dropdown-nested .dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 20px;
}

.dropdown-nested .dropdown-all a {
    font-weight: 600;
    color: var(--accent-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-cta:hover {
    color: var(--white);
}

.btn-cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

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

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

.btn-cta-full {
    width: 100%;
    justify-content: center;
}

#btnCtaHeader {
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    transition: all 0.3s ease !important;
}

#btnCtaHeader:hover {
    background: var(--color-primary) !important;
    color: var(--white) !important;
}

#btnCtaHeader:hover svg {
    fill: var(--white) !important;
}

#btnCtaHeader svg {
    fill: var(--color-primary) !important;
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when open */
body.nav-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.nav-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

body.nav-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1200;
    backdrop-filter: blur(4px);
}

.nav-mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: var(--white);
    z-index: 1300;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nav-mobile.is-open {
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.nav-mobile-logo img {
    height: 40px;
    width: auto;
}

.nav-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-mobile-close:hover {
    background: var(--accent-color);
    color: var(--white);
}

.nav-mobile-body {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile-item {
    border-bottom: 1px solid var(--border-color);
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

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

.nav-mobile-arrow {
    transition: transform 0.3s ease;
}

.nav-mobile-item.is-open .nav-mobile-arrow {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.nav-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.nav-mobile-item.is-open .nav-mobile-submenu {
    max-height: 1000px;
    padding: 0 0 16px 0;
}

.nav-mobile-submenu li {
    margin: 0;
}

.nav-mobile-submenu a {
    display: block;
    padding: 10px 0 10px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.nav-mobile-submenu a:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    padding-left: 20px;
}

.submenu-title {
    margin-top: 12px;
    padding-top: 8px !important;
    padding-bottom: 4px !important;
}

.submenu-title a,
.submenu-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    border-left: none !important;
}

.submenu-title a:hover {
    color: var(--accent-color) !important;
    padding-left: 16px !important;
}

.submenu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0 10px 16px;
    padding: 0 !important;
}

.submenu-all {
    margin-top: 8px;
    padding-top: 8px !important;
}

.submenu-all a {
    font-weight: 600;
    color: var(--accent-color) !important;
}

.submenu-all a:hover {
    color: var(--primary-color) !important;
}

/* ============================================
   MOBILE NESTED SUBMENU - Beágyazott lenyíló
   ============================================ */

.submenu-expandable {
    margin: 0;
    padding: 0 !important;
}

.submenu-expand-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0 12px 16px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    border-left: 2px solid transparent;
}

.submenu-expand-btn:hover {
    color: var(--accent-color);
}

.submenu-expandable.is-expanded .submenu-expand-btn {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

.submenu-expand-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--light-gray);
}

.submenu-expandable.is-expanded .submenu-expand-arrow {
    transform: rotate(180deg);
    color: var(--accent-color);
}

/* Mobile sublist */
.submenu-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0 0 8px 8px;
}

.submenu-expandable.is-expanded .submenu-sublist {
    max-height: 500px;
    padding: 8px 0;
}

.submenu-sublist li {
    margin: 0;
}

.submenu-sublist a {
    display: block;
    padding: 10px 0 10px 32px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.submenu-sublist a:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    padding-left: 36px;
}

/* Mobile CTA */
.nav-mobile-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* Mobile Contact */
.nav-mobile-contact {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-mobile-contact-item:hover {
    color: var(--accent-color);
}

.nav-mobile-contact-item svg {
    color: var(--primary-color);
}

/* Mobile Social */
.nav-mobile-social {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.nav-mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.nav-mobile-social a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Body lock when nav is open */
body.nav-open {
    overflow: hidden;
}

/* ============================================
   HERO SECTION - ELEGANT
   ============================================ */

.hero-elegant {
    min-height: calc(100vh - 120px); /* Teljes képernyő - header */
    max-height: 900px; /* Maximum magasság nagy képernyőkön */
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-top: 116px; /* 40px top-bar + 76px header */
    padding: 4rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Scroll Indicator - Egér ikon */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* Egér ikon */
.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-dark);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Görgő animáció */
.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-dark);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateY(12px);
    }
}

/* Nyíl animáció */
.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollArrow 2s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 0.7rem;
    color: var(--text-dark);
    line-height: 0.5;
}

.scroll-arrow i:nth-child(2) {
    opacity: 0.6;
}

.scroll-arrow i:nth-child(3) {
    opacity: 0.3;
}

@keyframes scrollArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

.hero-overlay-elegant {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to left, rgba(245, 243, 240, 0.97) 0%, rgb(255 255 255 / 35%) 30%, rgba(245, 243, 240, 0.4) 55%, rgb(255 255 255 / 0%) 70%); */
}

.hero-content-elegant {
    position: relative;
    z-index: 1;
    max-width: 52%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Hero Decorative Elements - Elrejtve az új designban */
.hero-decor-top,
.hero-decor-bottom {
    display: none;
}

.hero-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.hero-diamond {
    color: var(--accent-color);
    font-size: 0.5rem;
    opacity: 0.8;
}

/* Hero Title */
.hero-headline {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: left;
    letter-spacing: 0;
    text-transform: none;
}

.hero-headline em {
    font-style: italic;
    color: var(--text-dark);
}

.hero-highlight {
    color: var(--accent-color);
    font-weight: 500;
}

/* Hero Tagline */
.hero-tagline {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3em;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: left;
}

/* Hero Decorative Bottom */
.hero-line-sm {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.hero-star {
    color: var(--accent-color);
    font-size: 0.7rem;
    animation: rotateStar 8s linear infinite;
}

/* Hero CTA */
.hero-cta-wrap {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* .hero-btn-elegant stílusok az egységes BUTTONS szekcióban vannak definiálva */

/* ============================================
   BUTTONS - EGYSÉGES GOMB STÍLUS
   ============================================ */

/* Finom pulzáló animáció - csak kifelé */
@keyframes btnPulse {
    0%, 100% {
        box-shadow: 
            0 0 0 0 rgba(200, 173, 97, 0.35),
            0 4px 15px rgba(200, 173, 97, 0.25);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(200, 173, 97, 0.2),
            0 8px 25px rgba(200, 173, 97, 0.4);
    }
}

/* Alap gomb stílus - minden gombra vonatkozik */
.btn-elegant,
.btn-appointment,
.hero-btn-elegant,
.ab-btn,
.footer-cta-btn,
.cta-button {
    /* Alap megjelenés */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    /* Tipográfia */
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    
    /* Háttér és szín */
    background-color: transparent;
    color: var(--dark-gray);
    
    /* Szegély */
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    
    /* Padding */
    padding: 10px 25px;
    
    /* Pulzáló animáció */
    box-shadow: 
        0 0 0 0 rgba(200, 173, 97, 0.35),
        0 4px 15px rgba(200, 173, 97, 0.25);
    animation: btnPulse 3s ease-in-out infinite;
    
    /* Egyéb */
    text-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

/* Hover állapot - minden gombra */
.btn-elegant:hover,
.btn-appointment:hover,
.hero-btn-elegant:hover,
.ab-btn:hover,
.footer-cta-btn:hover,
.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 173, 97, 0.35);
    animation: none;
}

/* Nyíl animáció hover-re */
.btn-elegant i,
.btn-appointment i,
.hero-btn-elegant i,
.ab-btn i,
.footer-cta-btn i,
.cta-button i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-elegant:hover i,
.btn-appointment:hover i,
.hero-btn-elegant:hover i,
.ab-btn:hover i,
.footer-cta-btn:hover i,
.cta-button:hover i {
    transform: translateX(5px);
}

/* Span elem a gombokban */
.btn-elegant span,
.btn-appointment span,
.hero-btn-elegant span,
.ab-btn span,
.footer-cta-btn span,
.cta-button span {
    position: relative;
    z-index: 1;
}

/* CTA szekció gombjának speciális stílusa (sötét háttéren) */
@keyframes btnPulseLight {
    0%, 100% {
        box-shadow: 
            0 0 0 0 rgba(255, 255, 255, 0.4),
            0 4px 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(255, 255, 255, 0.25),
            0 8px 25px rgba(255, 255, 255, 0.5);
    }
}


/* Régi .btn osztályok megtartása visszafelé kompatibilitáshoz */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-preview,
.about-preview,
/* ============================================
   ABOUT SECTION - Two Column Layout
   ============================================ */

/* ============================================
   ABOUT SECTION - ELEGANT
   ============================================ */

.about-elegant {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}

.about-elegant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-col {
    text-align: center;
}

.about-image-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrap {
    position: relative;
    max-width: 75%;
    width: 100%;
    margin: 0 auto;
}

.about-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-logo-wrap {
    margin-bottom: 1.5rem;
}

.about-logo-wrap img {
    height: 200px;
    width: auto;
}


.ab-headline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5rem;
    line-height: 1.8;
}

.ab-text {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ab-text p {
    font-size: 18px !important;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.ab-text p em {
    font-style: italic;
}

/* .ab-btn stílusok az egységes BUTTONS szekcióban vannak definiálva */

/* Golden Frame - Outer (top-right) */
.golden-frame-outer {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 70%;
    height: 80%;
    border: 3px solid var(--accent-color);
    z-index: 1;
    pointer-events: none;
}

/* Golden Frame - Inner (bottom-left) */
.golden-frame-inner {
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 60%;
    height: 70%;
    border: 3px solid var(--accent-color);
    z-index: 3;
    pointer-events: none;
}

/* About Content - Legacy fallback */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   SERVICES SECTION - ULTRA ELEGANT
   ============================================ */

.services-elegant {
    position: relative;
    padding: 80px 0;
    background: var(--bg-beige2);
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(200, 173, 97, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(152, 122, 101, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.sv-divider-top {
    margin-bottom: 15px;
}

.sv-diamond {
    color: var(--accent-color);
    font-size: 0.7rem;
    letter-spacing: 12px;
    opacity: 0.7;
}

.sv-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sv-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0;
}

.sv-headline em {
    font-size: 35px !important;
    font-weight: 400;
    color: var(--accent-color);
    line-height: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.sv-divider-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.sv-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.sv-star {
    color: var(--accent-color);
    font-size: 0.65rem;
    animation: rotateStar 8s linear infinite;
}

/* Services Grid */
.services-elegant-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Service Card - Simple & Clean */
.sv-card-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    transition: transform 0.4s ease;
}

.sv-card-simple:hover {
    transform: translateY(-8px);
}

.sv-card-simple img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.sv-card-simple:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.sv-card-simple h3 {
    margin-top: 1.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.sv-card-simple:hover h3 {
    color: var(--accent-color);
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* Services Responsive */
@media (max-width: 1200px) {
    .services-elegant-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .services-elegant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .sv-headline {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .services-elegant {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 35px;
    }
    
    .services-elegant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sv-card-simple h3 {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .sv-headline {
        font-size: 1.6rem;
    }
    .hero-overlay-elegant {
        background: linear-gradient(to left, rgba(245, 243, 240, 0.97) 0%, rgb(255 255 255 / 35%) 30%, rgba(245, 243, 240, 0.4) 55%, rgb(255 255 255 / 0%) 70%);
    }
}

/* Legacy Service Card - keeping for other pages */
.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--box-shadow);
}

.service-card-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 50%;
}

.service-card-image .service-card-title {
    color: var(--white);
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card .btn {
    margin-top: 1rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

/* ============================================
   TESTIMONIALS SECTION - ULTRA ELEGANT
   ============================================ */

.testimonials-elegant {
    position: relative;
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(200, 173, 97, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(152, 122, 101, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.tm-divider-top {
    margin-bottom: 15px;
}

.tm-diamond {
    color: var(--accent-color);
    font-size: 0.7rem;
    letter-spacing: 12px;
    opacity: 0.7;
}

.tm-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tm-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0;
}

.tm-headline em {
    font-size: 35px !important;
    font-weight: 400;
    color: var(--accent-color);
    line-height: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.tm-highlight {
    font-weight: 500;
    color: var(--accent-color);
}

.tm-divider-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.tm-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.tm-star {
    color: var(--accent-color);
    font-size: 0.65rem;
    animation: rotateStar 8s linear infinite;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Testimonial Card */
.tm-card {
    position: relative;
    background: var(--bg-beige2);
    border-radius: 10px;
    padding: 3px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.tm-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 50px var(--bg-beige2);
}

.tm-card:hover::before {
    opacity: 1;
}

.tm-card-inner {
    background: var(--bg-beige2);
    padding: 35px 30px;
    height: 100%;
    position: relative;
}

/* Quote Icon */
.tm-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.15;
}

/* Stars */
.tm-stars {
    margin-bottom: 20px;
}

.tm-stars .fa-star {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-right: 3px;
}

/* Text */
.tm-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    min-height: 220px;
}

/* Author */
.tm-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tm-author-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.tm-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    letter-spacing: 1px;
    display: block;
}

.tm-role {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 4px;
    font-style: italic;
}

/* Testimonials Responsive */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .tm-headline {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .testimonials-elegant {
        padding: 60px 0;
    }
    
    .testimonials-header {
        margin-bottom: 35px;
    }
    
    .tm-headline {
        font-size: 1.6rem;
    }
    
    .tm-card-inner {
        padding: 30px 25px;
    }
    
    .tm-text {
        font-size: 0.9rem;
    }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */

.google-reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-beige) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.google-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

/* Header with Google Branding */
.google-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.google-logo {
    flex-shrink: 0;
}

.google-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .fa-star {
    color: #FBBC05;
    font-size: 1.4rem;
}

.rating-count {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Reviews Slider */
.google-reviews-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px;
}

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

/* Review Card - Elegant Gold Frame */
.google-review-card {
    background: linear-gradient(135deg, #fffef8 0%, #fff 50%, #fffef8 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(200, 173, 97, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Inner gold border */
.google-review-card::before {
    /* content: ''; */
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(200, 173, 97, 0.25);
    border-radius: 10px;
    pointer-events: none;
}

/* Decorative corner accents */
.google-review-card::after {
    content: '❝';
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2.5rem;
    color: rgba(200, 173, 97, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.google-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(200, 173, 97, 0.2);
    border-color: #b89b6a;
}

.google-review-card:hover::before {
    border-color: rgba(200, 173, 97, 0.4);
}

.google-review-card:hover::after {
    color: rgba(200, 173, 97, 0.25);
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .fa-star {
    color: #FBBC05;
    font-size: 0.85rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.google-icon-small {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.7;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    font-style: italic;
    flex: 1;
    margin: 0;
}

/* Google CTA Buttons */
.google-reviews-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.google-review-btn .fa-external-link-alt {
    font-size: 0.8rem;
    opacity: 0.6;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(200, 173, 97, 0.3);
    transition: all 0.3s ease;
}

.write-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 173, 97, 0.4);
}

/* Google Reviews Responsive */
@media (max-width: 1024px) {
    .reviews-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 70px 0;
    }
    
    .reviews-track {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .google-reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .google-review-btn,
    .write-review-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .google-badge {
        padding: 10px 18px;
    }
    
    .google-text {
        font-size: 0.95rem;
    }
    
    .google-review-card {
        padding: 22px;
    }
    
    .reviewer-avatar {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/686cea96000e734907e0152e.jpeg') center center / cover no-repeat;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 60px;
    background: var(--white);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.cta-title-primary {
    display: block;
    font-size: 2.4rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 5px;
}

.cta-title-accent {
    display: block;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, #c9a227, #d4a855, #e8a040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Responsive */
@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-box {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .cta-title-primary {
        font-size: 1.6rem;
    }
    
    .cta-title-accent {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
}

/* ============================================
   FOOTER - ELEGANT
   ============================================ */

.footer-elegant {
    position: relative;
    padding: 70px 0 30px;
    background: #69645f;
}

.footer-top-line {
    display: none;
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
    align-items: start;
}

/* Footer Brand Column */
.footer-brand {
    text-align: left;
}

.footer-logo-wrap {
    margin-bottom: 0;
}

.footer-logo {
    height: 140px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-tagline {
    display: none;
}

/* Footer Social - Elegant */
.footer-social-elegant {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(244, 244, 240, 0.5);
    border-radius: 50%;
    color: #f4f4f0;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(244, 244, 240, 0.15);
    border-color: #f4f4f0;
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-col {
    text-align: left;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #f4f4f0;
    margin-bottom: 1.25rem;
}

.footer-diamond {
    display: none;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: rgba(244, 244, 240, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 16px;
    color: rgba(244, 244, 240, 0.85);
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 2px;
    width: 18px;
}

.footer-contact-list a {
    color: rgba(244, 244, 240, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #f4f4f0;
}

/* Footer Hours */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.footer-hours li {
    margin-bottom: 0.5rem;
    font-size: 16px;
    color: rgba(244, 244, 240, 0.85);
    line-height: 1.5;
}

.footer-hours .day {
    display: block;
    color: rgba(244, 244, 240, 0.85);
}

.footer-hours .time {
    display: block;
    color: rgba(244, 244, 240, 0.6);
    font-size: 0.85rem;
}

/* Footer Link Arrow */
.footer-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f4f4f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link-arrow i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-link-arrow:hover {
    color: var(--accent-color);
}

.footer-link-arrow:hover i {
    transform: translateX(4px);
}

/* Footer CTA Button */
.footer-cta-btn {
    font-size: 0.8rem;
    padding: 10px 20px;
    border-color: rgba(244, 244, 240, 0.5);
    color: #f4f4f0;
}

.footer-cta-btn:hover {
    background: #f4f4f0;
    color: #69645f;
    border-color: #f4f4f0;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(244, 244, 240, 0.2);
    margin-bottom: 25px;
}

.footer-div-line,
.footer-star {
    display: none;
}

/* Footer Bottom */
.footer-bottom-elegant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-elegant {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-elegant a {
    font-size: 0.75rem;
    color: rgba(244, 244, 240, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-legal-elegant a:hover {
    color: #f4f4f0;
}

.footer-dot {
    color: rgba(244, 244, 240, 0.4);
    font-size: 0.5rem;
}

.footer-copyright-elegant {
    font-size: 0.8rem;
    color: rgba(244, 244, 240, 0.6);
    margin: 0;
}

.footer-developer-elegant {
    font-size: 0.75rem;
    color: rgba(244, 244, 240, 0.5);
    margin: 0;
}

.footer-developer-elegant a {
    color: rgba(244, 244, 240, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-developer-elegant a:hover {
    color: #f4f4f0;
}

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

/* Mobile Styles */
@media (max-width: 767px) {
    /* Promo Bar - Mobile */
    .promo-bar {
        height: auto;
        min-height: 50px;
        /* padding: 10px 45px 10px 15px; */
    }
    
    .promo-bar-content {
        flex-wrap: wrap;
        gap: 6px;
        padding: 0 5px;
    }
    
    .promo-bar-text {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .promo-bar-cta {
        display: none;
    }
    
    .promo-bar-icon {
        display: none;
    }
    
    .promo-bar-close {
        right: 10px;
        padding: 8px;
    }
    
    .promo-bar-close svg {
        width: 18px;
        height: 18px;
    }
    
    body.has-promo-bar .header {
        top: 50px;
    }
    
    body.has-promo-bar .hero-elegant {
        margin-top: 114px; /* 50px promo + 64px header */
    }
    
    /* Top Bar - Mobile: hide */
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
        height: 64px;
    }
    
    .header-inner {
        height: 64px;
    }
    
    .hero-elegant {
        margin-top: 64px;
    }
    
    /* Hide desktop nav, show toggle */
    .nav-desktop {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }

    .header-logo img {
        height: 38px;
    }
    
    /* CTA button - smaller on mobile */
    .btn-cta {
        padding: 10px 16px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .btn-cta span {
        display: none;
    }
    
    .btn-cta svg {
        margin: 0;
    }
    
    /* Mobile nav CTA full */
    .nav-mobile-cta .btn-cta {
        padding: 14px 24px;
        font-size: 0.8rem;
    }
    
    .nav-mobile-cta .btn-cta span {
        display: inline;
    }
    
    /* Hero */
    .hero {
        min-height: 60vh;
        margin-top: 60px;
        background-position: center right -100px;
    }
    
    .hero-overlay {
        background: linear-gradient(to right, rgba(245, 243, 240, 0.95) 0%, rgba(245, 243, 240, 0.9) 50%, rgba(245, 243, 240, 0.7) 100%);
    }
    
    .hero-container {
        text-align: left;
    }
    
    /* Hero Elegant - Mobile */
    .hero-elegant {
        min-height: auto;
        max-height: none;
        height: auto;
        padding: 3rem 0 4rem;
    }
    
    .hero-content-elegant {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .hero-headline {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-cta-wrap {
        justify-content: center;
    }
    
    .hero-btn-elegant {
        padding: 12px 25px;
    }
    
    /* Scroll indicator elrejtése mobilon */
    .scroll-indicator {
        display: none;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }

    /* About Section - Mobile */
    .about-elegant {
        padding: 60px 0;
    }
    
    .about-elegant-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }
    
    .about-image-col {
        order: -1;
    }
    
    .about-image-wrap {
        max-width: 80%;
    }
    
    .about-image-wrap img {
        max-height: 350px;
        object-fit: cover;
    }
    
    .about-logo-wrap img {
        height: 70px;
    }
    
    .ab-headline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    /* CTA Section */
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    /* Footer */
    /* Footer - Mobile */
    .footer-elegant {
        padding: 50px 0 25px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    .footer-social-elegant {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-title {
        justify-content: center;
    }
    
    .footer-links a::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-list li {
        justify-content: center;
    }
    
    .footer-hours li {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom-elegant {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-elegant {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* Top Bar - Tablet */
    .top-bar-address span {
        display: none;
    }
    
    .top-bar-address::after {
        content: 'Budapest, Alíz u. 6/A';
        font-size: 0.75rem;
    }
    
    /* Header - Tablet */
    .header {
        height: 70px;
    }
    
    .header-inner {
        height: 70px;
    }

    .nav-link {
        padding: 24px 12px;
        font-size: 0.8rem;
    }
    
    .nav-link::after {
        left: 12px;
        right: 12px;
        bottom: 18px;
    }
    
    .btn-cta {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
    
    /* Dropdown - narrower on tablet */
    .dropdown-mega {
        min-width: 600px;
    }
    
    .dropdown-mega-inner {
        padding: 20px;
        gap: 0;
    }
    
    .dropdown-column {
        padding: 0 10px;
    }
    
    .dropdown-list a {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

/* Medium Desktop - Between tablet and full desktop */
@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-link {
        padding: 28px 14px;
        font-size: 0.85rem;
    }
    
    .dropdown-mega {
        min-width: 650px;
    }
    
    .btn-cta {
        padding: 11px 20px;
        font-size: 0.75rem;
    }
}

/* Hide header CTA below 1000px */
@media (max-width: 999px) {
    .header-actions .btn-cta {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* About Section - Tablet */
    .about-elegant-grid {
        max-width: 90%;
    }
    
    .about-logo-wrap img {
        height: 75px;
    }
    
    .ab-headline {
        font-size: 0.95rem;
    }
    
    /* Newsletter Tablet */
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Footer - Tablet */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-social-elegant {
        justify-content: center;
    }
    
    .footer-logo {
        height: 90px;
    }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-beige) 0%, #d4cec7 100%);
}

.newsletter-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 60px;
    background: var(--white);
    text-align: center;
}

/* Newsletter Header */
.newsletter-header {
    margin-bottom: 30px;
}

.newsletter-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.newsletter-title em {
    font-style: italic;
}

.newsletter-accent {
    color: var(--accent-color);
    font-weight: 400;
}

.newsletter-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.newsletter-input-wrap {
    position: relative;
}

.newsletter-input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.newsletter-input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.newsletter-input-wrap input::placeholder {
    color: var(--light-gray);
}

.newsletter-input-wrap input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 173, 97, 0.1);
}

.newsletter-input-wrap:focus-within i {
    color: var(--accent-color);
}

/* Newsletter Consent */
.newsletter-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
}

.newsletter-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.newsletter-consent a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newsletter-consent a:hover {
    color: var(--accent-color);
}

/* Newsletter Form Button */
.newsletter-form .cta-button {
    margin-top: 10px;
}

.newsletter-form .cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Newsletter Message */
.newsletter-message {
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

.newsletter-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.newsletter-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Visually Hidden (accessibility) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Newsletter Responsive */
@media (max-width: 767px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-box {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 1.6rem;
    }
    
    .newsletter-title em,
    .newsletter-accent {
        display: block;
    }
    
    .newsletter-fields {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .cta-button {
        width: 100%;
    }
    
    .newsletter-consent {
        text-align: left;
    }
}

/* ============================================
   ABOUT PAGE (RÓLUNK) STYLES
   ============================================ */

/* About Page Hero */
.about-page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 50%, var(--bg-beige) 100%);
    text-align: center;
    overflow: hidden;
    margin-top: 120px;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(200, 173, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(152, 122, 101, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-hero-title em {
    font-style: italic;
    color: var(--accent-color);
}

.about-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.about-hero-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.about-hero-star {
    color: var(--accent-color);
    font-size: 0.7rem;
    animation: rotateStar 8s linear infinite;
}

@keyframes rotateStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Why Lunelle Section */
.why-lunelle-section {
    padding: 100px 0;
    padding-top: 180px; /* Extra padding for header when no hero */
    margin-top: 120px; /* Header offset */
    background: var(--bg-beige); /* Bézs háttér */
    overflow: hidden;
}

.why-lunelle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-lunelle-content {
    padding-right: 40px;
}

.why-lunelle-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 30px;
}

.why-lunelle-title em {
    font-style: italic;
    color: var(--accent-color);
}

.why-lunelle-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.why-lunelle-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.why-lunelle-signature {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-color);
}

.why-lunelle-image {
    position: relative;
}

.why-lunelle-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Philosophy CTA Section */
.philosophy-cta-section {
    padding: 80px 0;
    background: var(--white); /* Világos/fehér háttér */
}

.philosophy-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-logo {
    max-width: 280px;
    height: auto;
}

.philosophy-content-col {
    text-align: left;
}

.philosophy-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.philosophy-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.philosophy-signature {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.philosophy-signature strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Philosophy CTA Responsive */
@media (max-width: 767px) {
    .philosophy-cta-section {
        padding: 60px 0;
    }
    
    .philosophy-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .philosophy-logo {
        max-width: 200px;
    }
    
    .philosophy-content-col {
        text-align: center;
    }
    
    .philosophy-text {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .philosophy-cta-grid {
        gap: 40px;
    }
    
    .philosophy-logo {
        max-width: 220px;
    }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-beige2);
    overflow: hidden;
}

.team-header {
    text-align: center;
    margin-bottom: 70px;
}

.team-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0;
}

.team-headline em {
    font-size: 35px;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-content {
    padding: 30px;
    text-align: center;
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-card-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.team-card-desc:last-child {
    margin-bottom: 0;
}

.team-card-quote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    background: var(--bg-beige);
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
}

/* Team Member Featured Layout */
.team-member-featured {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.team-member-featured:last-child {
    margin-bottom: 0;
}

.team-member-reversed {
    grid-template-columns: 1fr 400px;
}

.team-member-reversed .team-featured-image {
    order: 2;
}

.team-member-reversed .team-featured-content {
    order: 1;
    text-align: right;
}

.team-featured-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team-featured-image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    display: block;
}

.team-featured-content {
    padding: 20px 0;
}

.team-featured-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-featured-role {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0;
}

.team-featured-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 20px 0;
}

.team-member-reversed .team-featured-divider {
    margin-left: auto;
}

.team-featured-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.team-featured-desc:last-child {
    margin-bottom: 0;
}

.team-featured-quote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--text-light);
}

/* Team Featured Responsive */
@media (max-width: 991px) {
    .team-member-featured {
        grid-template-columns: 350px 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .team-member-reversed {
        grid-template-columns: 1fr 350px;
    }
    
    .team-featured-image img {
        height: 400px;
    }
    
    /* About section - tablet */
    .about-elegant-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .about-image-col {
        order: -1;
    }
    
    .about-image-wrap {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .team-member-featured,
    .team-member-reversed {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .team-member-reversed .team-featured-image,
    .team-member-reversed .team-featured-content {
        order: unset;
    }
    
    .team-member-reversed .team-featured-content {
        text-align: left;
    }
    
    .team-member-reversed .team-featured-divider {
        margin-left: 0;
    }
    
    .team-featured-image img {
        height: 350px;
    }
    
    .team-featured-name {
        font-size: 1.5rem;
    }
    
    .team-featured-quote {
        font-size: 1.05rem;
    }
}

/* Clinic Gallery Section */
.clinic-gallery-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.clinic-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.clinic-gallery-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.clinic-gallery-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.clinic-gallery-headline em {
    font-size: 35px;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.clinic-gallery-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.clinic-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.clinic-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.clinic-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.clinic-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clinic-gallery-item:hover::after {
    opacity: 1;
}

/* Gallery Overlay with Magnifier Icon */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(57, 55, 53, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.clinic-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.clinic-gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 10;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 10px;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Lightbox Responsive */
@media (max-width: 767px) {
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
}

/* Media Appearances Section */
.media-section {
    padding: 100px 0;
    background: var(--bg-beige);
    overflow: hidden;
}

.media-header {
    text-align: center;
    margin-bottom: 60px;
}

.media-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.media-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.media-headline em {
    font-size: 35px;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.media-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.media-video-wrapper {
    position: relative;
    width: 100%;
    /* padding-bottom: 56.25%; */ /* 16:9 aspect ratio */
    /* background: var(--dark-gray); */
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

.media-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.media-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    color: var(--white);
}

.media-video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.media-video-placeholder p {
    font-size: 1.1rem;
    opacity: 0.7;
    text-align: center;
    max-width: 300px;
}

.media-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Media Grid - Video & PR */
.media-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

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

.media-card {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.media-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.media-card h3 i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.media-card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.media-card .media-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

.media-card .media-video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.media-pdf-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.media-pdf-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
    background: #fff;
}

.media-pdf-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-media-outline,
.btn-media-primary {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-media-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-media-outline:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-media-primary:hover {
    background: #b89b6a;
    border-color: #b89b6a;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .media-grid {
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .media-pdf-wrapper iframe {
        height: 350px;
    }
    
    .media-pdf-actions {
        flex-direction: column;
    }
    
    .btn-media-outline,
    .btn-media-primary {
        justify-content: center;
    }
}

/* About Page CTA */
.about-cta-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/686cea96000e734907e0152e.jpeg') center center / cover no-repeat;
}

.about-cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: var(--white);
    text-align: center;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.about-cta-title-primary {
    display: block;
    font-size: 2.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.about-cta-title-accent {
    display: block;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, #c9a227, #d4a855, #e8a040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Responsive */
@media (max-width: 767px) {
    /* Why Lunelle */
    .why-lunelle-section {
        padding: 60px 0;
        padding-top: 100px;
        margin-top: 60px;
    }
    
    .why-lunelle-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-lunelle-content {
        padding-right: 0;
        order: 1;
    }
    
    .why-lunelle-image {
        order: 2;
    }
    
    .why-lunelle-image::before {
        display: none;
    }
    
    .why-lunelle-title {
        font-size: 1.8rem;
    }
    
    .why-lunelle-text {
        font-size: 1rem;
    }
    
    /* Team */
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .team-card-image {
        height: 350px;
    }
    
    .team-headline {
        font-size: 1.8rem;
    }
    
    .team-headline em {
        font-size: 28px;
    }
    
    /* Clinic Gallery */
    .clinic-gallery-section {
        padding: 60px 0;
    }
    
    .clinic-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .clinic-gallery-headline {
        font-size: 1.8rem;
    }
    
    .clinic-gallery-headline em {
        font-size: 28px;
    }
    
    /* Media */
    .media-section {
        padding: 60px 0;
    }
    
    .media-headline {
        font-size: 1.8rem;
    }
    
    .media-headline em {
        font-size: 28px;
    }
    
    .media-video-placeholder i {
        font-size: 3rem;
    }
    
    /* CTA */
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-cta-box {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .about-cta-title-primary {
        font-size: 1.6rem;
    }
    
    .about-cta-title-accent {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .why-lunelle-section {
        padding-top: 140px;
    }
    
    .why-lunelle-grid {
        gap: 50px;
    }
    
    .why-lunelle-content {
        padding-right: 20px;
    }
    
    .why-lunelle-title {
        font-size: 2rem;
    }
    
    .team-grid {
        gap: 30px;
        max-width: 700px;
    }
    
    .team-card-image {
        height: 350px;
    }
    
    .clinic-gallery-grid {
        gap: 15px;
    }
}

/* ============================================
   SERVICES PAGE (SZOLGÁLTATÁSOK ÁTTEKINTŐ)
   ============================================ */

/* Services Hero Section */
.services-hero {
    padding: 200px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 50%, var(--bg-beige) 100%);
    text-align: center;
}

.services-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw + 1rem, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Category Navigation - Sticky */
.category-nav {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-nav-list li {
    margin: 0;
}

.category-nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-nav-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(152, 122, 101, 0.25);
}

.category-nav-list a:hover i {
    color: var(--white);
}

.category-nav-list a i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.category-nav-list a.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.category-nav-list a.active i {
    color: var(--white);
}

/* Services Category Section */
.services-category-section {
    padding: 100px 0;
    scroll-margin-top: 160px;
}

.services-category-section.bg-white {
    background-color: var(--white);
}

.services-category-section.bg-beige {
    background-color: var(--bg-beige);
}

.services-category-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-category-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.services-category-title em {
    font-size: 35px;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.services-category-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* Service Card Elegant */
.service-card-elegant {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.services-category-section.bg-beige .service-card-elegant {
    background: var(--white);
}

.service-card-elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.service-card-icon-wrap {
    height: 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card-elegant:hover .service-card-icon-wrap {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.service-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card-elegant:hover .service-card-content h3 {
    color: var(--accent-color);
}

.service-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.service-link-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-color);
    transition: gap 0.3s ease;
}

.service-link-text i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.service-card-elegant:hover .service-link-text {
    gap: 10px;
}

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

/* Services Page CTA Section */
.services-page-cta {
    position: relative;
    padding: 100px 0;
    background: url('../images/686cea96000e734907e0152e.jpeg') center center / cover no-repeat;
}

.services-cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: var(--white);
    text-align: center;
}

.services-cta-title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.services-cta-title-primary {
    display: block;
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.services-cta-title-accent {
    display: block;
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, #c9a227, #d4a855, #e8a040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Services Page Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 120px 0 60px;
    }
    
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
    
    .category-nav {
        top: 60px;
        padding: 1rem 0;
    }
    
    .category-nav-list {
        gap: 0.5rem;
    }
    
    .category-nav-list a {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .category-nav-list a span {
        display: none;
    }
    
    .category-nav-list a i {
        font-size: 1.1rem;
    }
    
    .services-category-section {
        padding: 60px 0;
        scroll-margin-top: 120px;
    }
    
    .services-category-title {
        font-size: 1.8rem;
    }
    
    .services-category-title em {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .services-page-cta {
        padding: 60px 0;
    }
    
    .services-cta-box {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .services-cta-title-primary {
        font-size: 1.5rem;
    }
    
    .services-cta-title-accent {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .services-hero {
        padding: 150px 0 70px;
    }
    
    .category-nav {
        top: 70px;
    }
    
    .services-category-section {
        scroll-margin-top: 140px;
    }
    
    .category-nav-list a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   HOME VIDEO SECTION - Főoldali videó
   ============================================ */

.home-video-section {
    padding: 80px 0;
    background: var(--white);
}

.home-video-header {
    text-align: center;
    margin-bottom: 40px;
}

.home-video-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.home-video-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
}

.home-video-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.home-video-wrapper video {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .home-video-section {
        padding: 60px 0;
    }
    
    .home-video-title {
        font-size: 1.8rem;
    }
    
    .home-video-wrapper {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .home-video-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   PROMO CAROUSEL SECTION - Kiemelt ajánlatok
   ============================================ */

.promo-carousel-section {
    padding: 80px 0;
    /* background: linear-gradient(180deg, var(--bg-beige) 0%, var(--white) 100%); */
    overflow: hidden;
}

.promo-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Carousel Wrapper */
.promo-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.promo-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding-left: 20px;
    /* No auto animation - controlled by JS */
}

/* Section visibility animation */
.promo-carousel-section.is-visible .promo-carousel-track {
    /* Animation triggered by Intersection Observer */
}

/* Promo Card */
.promo-card {
    flex-shrink: 0;
    width: 300px;
    padding: 28px;
    background: var(--bg-beige2);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(152, 122, 101, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.promo-card:hover::before {
    transform: scaleX(1);
}

/* Card Badge */
.promo-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    background: var(--bg-beige);
    color: var(--primary-color);
}

.promo-card-percentage .promo-card-badge {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.promo-card-package .promo-card-badge {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

.promo-card-fixed .promo-card-badge {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
}

.promo-card-special .promo-card-badge {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #7b1fa2;
}

/* Card Discount */
.promo-card-discount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    margin-top: 8px;
}

/* Card Title */
.promo-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

/* Card Description */
.promo-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 auto 0;
    padding-bottom: 16px;
}

/* Card Price */
.promo-card-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(152, 122, 101, 0.1);
}

/* Card Buttons Container */
.promo-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* Promo Buttons */
.promo-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-btn i {
    font-size: 0.75rem;
}

/* Primary Button - Részletek */
.promo-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a88a75 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(152, 122, 101, 0.25);
}

.promo-btn-primary:hover {
    background: linear-gradient(135deg, #a88a75 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(152, 122, 101, 0.35);
}

/* Secondary Button - Árak */
.promo-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

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

/* Modern Carousel Controls */
.promo-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    padding: 0 20px;
}

/* Navigation Arrows */
.promo-nav {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(152, 122, 101, 0.2);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.promo-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.promo-nav:active {
    transform: scale(0.95);
}

/* Slider Track */
.promo-slider-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 300px;
}

.promo-slider-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(152, 122, 101, 0.15);
    border-radius: 3px;
    cursor: pointer;
}

.promo-slider-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(152, 122, 101, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.promo-slider-thumb:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(152, 122, 101, 0.4);
}

.promo-slider-thumb:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.05);
}

/* Dot Indicators */
.promo-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.promo-dot {
    width: 10px;
    height: 10px;
    border: none;
    background: rgba(152, 122, 101, 0.2);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.promo-dot:hover {
    background: rgba(152, 122, 101, 0.4);
    transform: scale(1.2);
}

.promo-dot.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.2);
}

/* CTA Button */
.promo-cta-wrap {
    text-align: center;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-carousel-section {
        padding: 60px 0;
    }
    
    .promo-header {
        margin-bottom: 30px;
    }
    
    .promo-carousel-track {
        gap: 16px;
    }
    
    .promo-card {
        width: 280px;
        padding: 22px;
    }
    
    .promo-card-discount {
        font-size: 1.5rem;
    }
    
    .promo-card-title {
        font-size: 1.05rem;
    }
    
    .promo-cta-wrap {
        margin-top: 30px;
    }
    
    .promo-card-buttons {
        gap: 8px;
    }
    
    .promo-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    /* Controls responsive */
    .promo-controls {
        gap: 12px;
        margin-top: 25px;
    }
    
    .promo-nav {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
    
    .promo-slider-wrap {
        max-width: 200px;
    }
    
    .promo-slider-thumb {
        width: 18px;
        height: 18px;
    }
    
    .promo-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .promo-card {
        width: 260px;
        padding: 20px;
    }
    
    .promo-card-buttons {
        flex-direction: column;
    }
    
    .promo-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

