:root {
            --color-primary: #BAA39D;
            --color-secondary: #616161;
            --color-accent: #DEBEAD;
            --color-text: #62636A;
            --color-light-text: #EEE2DA;
            --color-cream: #EEE2DA;
            --color-white: #FFFFFF;
            --color-border: #DBDBDF;
            --color-dark: #616161;
            --color-bg-dark: #616161;
            --color-bg-footer: #616161;
            --gradient-brand: linear-gradient(90deg, #DCAC9B 0%, #D9BAA7 33%, #DEBEAD 66%, #F4D7C6 100%);
            --gradient-check: linear-gradient(135deg, #DEBEAD 0%, #D9BAA7 26%, #F4D7C6 55%, #D5AC90 79%, #DCAC9B 100%);
            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Montserrat', 'Segoe UI', sans-serif;
            --max-width: 1200px;
            --section-padding: 80px;
            --transition: 0.3s ease;
        }

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

html {
            scroll-behavior: smooth;
        }

body {
            font-family: var(--font-body);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            background: var(--color-white);
            -webkit-font-smoothing: antialiased;
        }

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

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

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

/* ============ TOP BAR ============ */

.top-bar {
            background: var(--gradient-brand);
            color: var(--color-white);
            font-size: 13px;
            padding: 8px 0;
        }

.top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.top-bar-contact {
            display: flex;
            gap: 24px;
            align-items: center;
        }

.top-bar-contact a {
            color: var(--color-white);
            display: flex;
            align-items: center;
            gap: 6px;
            opacity: 0.85;
            transition: opacity var(--transition);
        }

.top-bar-contact a:hover {
            opacity: 1;
        }

.top-bar-social {
            display: flex;
            gap: 16px;
            align-items: center;
        }

.top-bar-social a {
            color: var(--color-white);
            opacity: 1;
            transition: opacity var(--transition);
            display: flex;
            align-items: center;
        }

.top-bar-social a:hover {
            opacity: 1;
        }

.top-bar-social svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            filter: drop-shadow(0 0 1px rgba(0,0,0,0.3));
        }

/* ============ HEADER / NAV ============ */

.header {
            background: var(--color-white);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 0 rgba(0,0,0,0.06);
        }

.header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.logo img {
            height: 76px;
            width: auto;
            transition: height 0.3s ease;
        }

.nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

.nav a {
            font-size: 15px;
            font-weight: 500;
            color: var(--color-dark);
            position: relative;
            padding: 4px 0;
        }

.nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-brand);
            transition: width var(--transition);
        }

.nav a:hover::after {
            width: 100%;
        }

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

.hamburger span {
            width: 24px;
            height: 2px;
            background: var(--color-dark);
            transition: var(--transition);
        }

/* ============ HERO ============ */

.hero {
            position: relative;
            background: url('images/justitia-szobor-jogi-szolgaltatasok.png') center/cover no-repeat;
            padding: 160px 0;
            overflow: hidden;
        }

.hero::before {
            display: none;
        }

.hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: var(--gradient-brand);
        }

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

.hero-content {
            max-width: 618px;
        }

.hero-tagline {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
        }

.hero h1 {
            font-family: var(--font-heading);
            font-size: 48px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--color-white);
            margin-bottom: 24px;
        }

.hero h1 span {
            color: #EEE2DA;
        }

.hero-desc {
            font-size: 17px;
            line-height: 1.8;
            color: var(--color-light-text);
            opacity: 0.9;
            margin-bottom: 40px;
        }

.hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

/* ============ BUTTONS ============ */

.btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: all var(--transition);
            border: 2px solid transparent;
        }

.btn-primary {
            background: var(--gradient-brand);
            color: var(--color-white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

.btn-outline {
            background: transparent;
            border: 2px solid var(--color-accent);
            color: var(--color-white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

.btn-text {
            background: none;
            border: none;
            color: var(--color-accent);
            padding: 0;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap var(--transition), color var(--transition);
        }

.btn-text:hover {
            color: var(--color-primary);
            gap: 12px;
        }

.btn-icon {
            width: 14px;
            height: 14px;
        }

/* ============ FEATURES (3 boxes) ============ */

.features {
            padding: var(--section-padding) 0;
            background: var(--color-white);
        }

.features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

.feature-box {
            text-align: center;
            padding: 40px 24px;
        }

.feature-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 24px;
        }

.feature-box h3 {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 12px;
        }

.feature-box p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-text);
        }

/* ============ PARALLAX DIVIDER ============ */

.parallax-divider {
            height: 400px;
            background: url('images/ugyvedi-munka-szerzodes-laptop.png') center 70%/cover no-repeat fixed;
            position: relative;
        }

.parallax-divider::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--color-bg-dark);
            opacity: 0.4;
        }

/* ============ TARGET AUDIENCE ============ */

.target-section {
            padding: var(--section-padding) 0;
            background: var(--color-white);
        }

.target-layout {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

.target-header {
            text-align: left;
        }

.target-header h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 16px;
        }

.target-header p {
            font-size: 17px;
            max-width: 600px;
            color: var(--color-text);
        }

.target-col h3 {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 3px solid;
            border-image: var(--gradient-brand) 1;
            display: inline-block;
        }

.check-list {
            list-style: none;
            margin-bottom: 32px;
        }

.check-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 10px 0;
            font-size: 16px;
            color: var(--color-text);
        }

.check-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 2px;
        }

/* ============ SERVICES ============ */

.services {
            padding: var(--section-padding) 0;
            background: var(--color-white);
        }

.services > .container > h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            text-align: center;
            margin-bottom: 48px;
        }

.services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

.service-card {
            background: var(--color-bg-dark);
            border-radius: 12px;
            padding: 40px 32px;
            transition: transform var(--transition), box-shadow var(--transition);
            position: relative;
            overflow: hidden;
        }

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

.service-card h3 {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 20px;
        }

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

.service-card .service-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255,255,255,0.85);
            margin-bottom: 12px;
        }

.service-card .service-list li:last-child {
            margin-bottom: 0;
        }

.service-card .service-list .check-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            margin-top: 3px;
        }

/* ============ IMAGE DIVIDER ============ */

.image-divider {
            height: 400px;
            background: url('images/ingatlan-szerzodes-kulcsok-ugyvedi-iroda.png') center/cover no-repeat;
            position: relative;
        }

.image-divider::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--color-bg-dark);
            opacity: 0.3;
        }

/* ============ HAVIDÍJAS SECTION ============ */

.havidijas {
            padding: var(--section-padding) 0;
            background: var(--color-white);
        }

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

.havidijas-content h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 16px;
        }

.havidijas-content > p {
            font-size: 17px;
            color: var(--color-text);
            margin-bottom: 32px;
        }

.havidijas .check-list {
            margin-bottom: 32px;
        }

/* ============ PROCESS SECTION ============ */

.process {
            padding: var(--section-padding) 0;
            background: var(--color-bg-dark);
            overflow: hidden;
        }

.process > .container > h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-white);
            text-align: center;
            margin-bottom: 72px;
        }

.process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-bottom: 48px;
            position: relative;
        }

/* Horizontal connecting line */

.process-grid::before {
            content: '';
            position: absolute;
            top: 36px;
            left: 36px;
            right: 36px;
            height: 2px;
            background: var(--gradient-brand);
            opacity: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
        }

.process-grid.line-animated::before {
            opacity: 1;
            transform: scaleX(1);
        }

.process-step {
            text-align: center;
            position: relative;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

.process-step.step-visible {
            opacity: 1;
            transform: translateY(0);
        }

.process-number {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--gradient-brand);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--color-white);
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 20px rgba(222, 190, 173, 0.3);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

.process-step:hover .process-number {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(222, 190, 173, 0.5);
        }

.process-step h3 {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 12px;
        }

.process-step p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
        }

.process-note {
            text-align: center;
            font-size: 17px;
            color: rgba(255,255,255,0.7);
            font-style: italic;
            padding-top: 24px;
            border-top: 2px solid;
            border-image: var(--gradient-brand) 1;
            max-width: 600px;
            margin: 0 auto;
        }

/* ============ ABOUT / SZAKMAI SECTION ============ */

.about-section {
            padding: var(--section-padding) 0;
            background: var(--color-white);
        }

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

.about-content h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 20px;
        }

.about-content p {
            font-size: 17px;
            color: var(--color-text);
            line-height: 1.8;
            margin-bottom: 24px;
        }

.about-highlights {
            list-style: none;
            display: flex;
            gap: 24px;
        }

.about-highlights li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            color: var(--color-dark);
        }

.about-image {
            border-radius: 12px;
            overflow: hidden;
        }

.about-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            object-position: top;
            border-radius: 12px;
        }

/* ============ CONTACT SECTION ============ */

.contact-section {
            position: relative;
            min-height: 500px;
        }

.contact-map {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

.contact-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

.contact-overlay {
            position: relative;
            z-index: 2;
            background: rgba(186, 163, 157, 0.82);
            backdrop-filter: blur(2px);
            padding: 48px 56px;
            display: flex;
            align-items: center;
            gap: 56px;
            max-width: 900px;
            margin: 0 auto;
            margin-top: 40px;
        }

.contact-overlay h2 {
            font-family: var(--font-heading);
            font-size: 44px;
            font-weight: 600;
            font-style: italic;
            color: var(--color-white);
            white-space: nowrap;
        }

.contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px 48px;
            flex: 1;
        }

.contact-grid-item {
            display: flex;
            align-items: center;
            gap: 14px;
            color: var(--color-white);
            font-size: 15px;
        }

.contact-grid-item svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

.contact-grid-item a {
            color: var(--color-white);
            text-decoration: none;
        }

.contact-grid-item a:hover {
            text-decoration: underline;
        }

/* ============ LOGO DECORATION ============ */

.logo-deco {
            position: absolute;
            width: 280px;
            height: 280px;
            opacity: 0.08;
            pointer-events: none;
            z-index: 0;
            animation: logoFloat 8s ease-in-out infinite;
            filter: brightness(0) invert(1);
        }

.logo-deco--hero {
            bottom: 20px;
            right: 40px;
            width: 320px;
            height: 320px;
            opacity: 0.1;
        }

.logo-deco--cta {
            top: 50%;
            left: -40px;
            width: 300px;
            height: 300px;
            transform: translateY(-50%);
            animation: logoFloatCta 8s ease-in-out infinite;
            animation-delay: -3s;
        }

.logo-deco--footer {
            bottom: 20px;
            right: 40px;
            width: 180px;
            height: 180px;
            animation-delay: -5s;
        }

@keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(3deg); }
        }

@keyframes logoFloatCta {
            0%, 100% { transform: translateY(-50%) rotate(0deg); }
            50% { transform: translateY(calc(-50% - 15px)) rotate(3deg); }
        }

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

.cta-section {
            padding: 100px 0;
            background: var(--color-bg-dark);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

.cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: var(--gradient-brand);
        }

.cta-section h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 16px;
        }

.cta-section p {
            font-size: 17px;
            color: #F5F0EB;
            opacity: 0.8;
            max-width: 500px;
            margin: 0 auto 40px;
        }

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

.footer {
            background: var(--color-bg-footer);
            color: #F5F0EB;
            padding: 60px 0 0;
        }

.footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

.footer-col h4 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 20px;
        }

.footer-col p,

.footer-col a {
            font-size: 14px;
            line-height: 2;
            color: var(--color-light-text);
            opacity: 0.75;
            display: block;
        }

.footer-col a:hover {
            opacity: 1;
        }

.footer-legal {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0 12px;
            font-size: 12px;
            line-height: 1.7;
            opacity: 0.6;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

.footer-legal a {
            color: var(--color-light-text);
            text-decoration: underline;
        }

.footer-bottom {
            padding: 12px 0;
            text-align: center;
            font-size: 13px;
            opacity: 0.5;
        }

/* ============ MOBILE NAV ============ */

.mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--color-white);
            z-index: 200;
            flex-direction: column;
            padding: 80px 32px 32px;
        }

.mobile-menu.active {
            display: flex;
        }

.mobile-menu a {
            font-size: 20px;
            font-weight: 500;
            color: var(--color-dark);
            padding: 16px 0;
            border-bottom: 1px solid var(--color-border);
        }

.mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--color-dark);
        }

/* ============ SCROLL REVEAL ============ */

.reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

.reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

.reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

.reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

.reveal-left.visible,

.reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

.reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

.reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

/* Staggered delays for grid items */

.stagger-1 { transition-delay: 0s; }

.stagger-2 { transition-delay: 0.15s; }

.stagger-3 { transition-delay: 0.3s; }

.stagger-4 { transition-delay: 0.45s; }

.stagger-5 { transition-delay: 0.6s; }

.stagger-6 { transition-delay: 0.75s; }

.stagger-7 { transition-delay: 0.9s; }

/* ============ HERO ANIMATIONS ============ */

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

@keyframes heroFadeLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

@keyframes gradientShimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

@keyframes gradientStripeGlow {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

.hero-tagline {
            animation: heroFadeLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
        }

.hero h1 {
            animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
        }

.hero-desc {
            animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
        }

.hero-buttons {
            animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
        }

.hero::after {
            animation: gradientStripeGlow 3s ease-in-out infinite;
        }

/* ============ ENHANCED HOVER EFFECTS ============ */

.feature-box {
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.3s ease;
        }

.feature-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.08);
        }

.feature-icon {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

.feature-box:hover .feature-icon {
            transform: scale(1.12) rotate(3deg);
        }

.service-card {
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
        }

.service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

.btn-text {
            transition: gap 0.3s ease, color 0.3s ease;
        }

.btn-text:hover {
            gap: 10px;
        }

.btn-text .btn-icon {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

.btn-text:hover .btn-icon {
            transform: translateX(4px);
        }

.btn-primary {
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            background-size: 200% 100%;
        }

.btn-primary:hover {
            opacity: 1;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 154, 130, 0.3);
            background-position: 100% 0;
        }

.btn-outline {
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

.btn-outline:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 154, 130, 0.2);
        }

/* Check list item animation */

.check-list li {
            transition: transform 0.3s ease;
        }

.check-list li:hover {
            transform: translateX(6px);
        }

/* ============ HEADER SCROLL EFFECT ============ */

.header {
            transition: padding 0.3s ease, box-shadow 0.3s ease;
        }

.header.scrolled {
            padding: 8px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

.header.scrolled .logo img {
            transition: height 0.3s ease;
            height: 48px;
        }

/* ============ PARALLAX SMOOTH ============ */

.parallax-divider {
            transition: background-position 0.1s linear;
        }

/* ============ GRADIENT BORDER ANIMATION ============ */

@keyframes borderGradient {
            0% { border-image-source: linear-gradient(0deg, #DCAC9B, #F4D7C6); }
            50% { border-image-source: linear-gradient(180deg, #DCAC9B, #F4D7C6); }
            100% { border-image-source: linear-gradient(360deg, #DCAC9B, #F4D7C6); }
        }

.target-col h3 {
            animation: borderGradient 4s ease infinite;
            animation-play-state: paused;
        }

.target-col h3.visible {
            animation-play-state: running;
        }

/* ============ FOOTER LINK HOVER ============ */

.footer-col a {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

.footer-col a:hover {
            opacity: 1;
            transform: translateX(4px);
        }

/* Social icon hover */

.top-bar-social a {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
        }

.top-bar-social a:hover {
            transform: scale(1.2);
            opacity: 1;
        }

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

@media (max-width: 1024px) {
            .hero {
                padding: 100px 0;
            }

            .hero h1 {
                font-size: 38px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .havidijas-layout,
            .about-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-overlay {
                flex-direction: column;
                gap: 24px;
                padding: 32px 24px;
                margin: 20px 16px;
            }

            .contact-grid {
                gap: 16px 32px;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 24px;
            }

            .process-grid::before {
                display: none;
            }

            .feature-box {
                padding: 24px;
            }

            .target-layout {
                grid-template-columns: 1fr;
                gap: 48px;
            }

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

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .parallax-divider,
            .image-divider {
                height: 250px;
                background-attachment: scroll;
            }

            .contact-overlay h2 {
                font-size: 36px;
                white-space: normal;
            }

            .logo-deco--hero {
                width: 240px;
                height: 240px;
            }

            .logo-deco--cta {
                width: 220px;
                height: 220px;
            }

            .cta-section {
                padding: 80px 0;
            }
        }

@media (max-width: 767px) {
            :root {
                --section-padding: 48px;
            }

            .top-bar {
                display: none;
            }

            .nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 80px 0;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-tagline {
                font-size: 11px;
                letter-spacing: 1.5px;
            }

            .hero-desc {
                font-size: 15px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                justify-content: center;
            }

            .target-header h2,
            .services > .container > h2,
            .cta-section h2,
            .process > .container > h2,
            .havidijas h2,
            .about-content h2 {
                font-size: 28px;
            }

            .parallax-divider,
            .image-divider {
                height: 180px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-number {
                width: 56px;
                height: 56px;
                font-size: 22px;
            }

            .about-highlights {
                flex-direction: column;
                gap: 12px;
            }

            .contact-section {
                min-height: 400px;
            }

            .contact-overlay {
                margin: 16px;
                padding: 24px 20px;
            }

            .contact-overlay h2 {
                font-size: 28px;
                white-space: normal;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .contact-grid-item {
                font-size: 14px;
            }

            .service-card {
                padding: 28px 24px;
            }

            .service-card h3 {
                font-size: 22px;
            }

            .footer-legal {
                font-size: 11px;
                padding: 16px 0 10px;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 42px;
                height: 42px;
            }

            .logo-deco--hero {
                width: 200px;
                height: 200px;
                bottom: 10px;
                right: 10px;
            }

            .logo-deco--cta {
                width: 180px;
                height: 180px;
                left: -60px;
            }

            .logo-deco--footer {
                width: 120px;
                height: 120px;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-section h2 {
                font-size: 28px;
            }

            .cta-section p {
                font-size: 15px;
            }

            .about-image img {
                max-height: 350px;
            }

            .about-content p {
                font-size: 15px;
            }

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

/* ============ SMOOTH SCROLL ============ */

.nav a.active {
            color: var(--color-primary);
        }

.nav a.active::after {
            width: 100%;
        }

/* ============ PRELOADER ============ */

.preloader {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

.preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

.preloader-logo {
            width: 120px;
            animation: preloaderPulse 1.4s ease-in-out infinite;
        }

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

/* ============ BACK TO TOP ============ */

.back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-brand);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(222, 190, 173, 0.3);
        }

.back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

.back-to-top:hover {
            box-shadow: 0 6px 25px rgba(222, 190, 173, 0.5);
            transform: translateY(-3px);
        }

.back-to-top svg {
            width: 20px;
            height: 20px;
            stroke: var(--color-white);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

body {
            font-family: var(--font-body);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            background: var(--color-white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

.top-bar-social a {
            color: var(--color-white);
            opacity: 0.7;
            transition: opacity var(--transition);
            display: flex;
            align-items: center;
        }

.top-bar-social svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

/* ============ HEADER ============ */

.header {
            background: var(--color-white);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            transition: box-shadow var(--transition), padding var(--transition);
        }

.header.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            padding: 10px 0;
        }

.logo img {
            height: 48px;
            width: auto;
        }

.nav {
            display: flex;
            gap: 32px;
        }

.nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--color-dark);
            position: relative;
            padding-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

.nav a:hover::after,

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

/* ============ MOBILE MENU ============ */

.mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
        }

.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(186,163,157,0.4);
        }

.btn-outline {
            border: 2px solid var(--color-primary);
            background: transparent;
            color: var(--color-white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

.btn-icon {
            width: 12px;
            height: 12px;
        }

/* ============ PAGE HERO ============ */

.page-hero {
            padding: 100px 0 80px;
            background: var(--color-bg-dark);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

.page-hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-brand);
        }

.page-hero h1 {
            font-family: var(--font-heading);
            font-size: 48px;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 16px;
        }

.page-hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.75);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

/* ============ INTRO SECTION ============ */

.intro-section {
            padding: var(--section-padding) 0;
            background: var(--color-white);
            position: relative;
            overflow: hidden;
        }

.intro-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

.intro-content p {
            font-size: 17px;
            color: var(--color-text);
            line-height: 1.9;
            margin-bottom: 24px;
        }

.intro-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin: 8px 0 32px;
        }

.intro-ornament-line {
            width: 60px;
            height: 2px;
            background: var(--gradient-brand);
            border-radius: 2px;
        }

.intro-ornament-diamond {
            width: 10px;
            height: 10px;
            background: var(--gradient-brand);
            transform: rotate(45deg);
            border-radius: 1px;
        }

/* ============ BENEFITS SECTION ============ */

.benefits-section {
            padding: var(--section-padding) 0;
            background: #F9F6F4;
        }

.benefits-section h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            text-align: center;
            margin-bottom: 56px;
        }

.benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

.benefit-card {
            background: var(--color-white);
            border-radius: 12px;
            padding: 36px 32px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            transition: transform var(--transition), box-shadow var(--transition);
        }

.benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

.benefit-card h3 {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.benefit-card h3 .check-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }

.benefit-card p {
            font-size: 15px;
            color: var(--color-text);
            line-height: 1.8;
        }

.benefit-card ul {
            list-style: none;
            margin-top: 12px;
        }

.benefit-card ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-size: 15px;
            color: var(--color-text);
        }

.benefit-card ul li .check-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

.target-section h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            text-align: center;
            margin-bottom: 48px;
        }

.target-list {
            max-width: 750px;
            margin: 0 auto;
            list-style: none;
        }

.target-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            font-size: 16px;
            color: var(--color-text);
            line-height: 1.7;
            border-bottom: 1px solid var(--color-border);
        }

.target-list li:last-child {
            border-bottom: none;
        }

.target-list .check-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 2px;
        }

/* ============ WHY SECTION ============ */

.why-section {
            padding: var(--section-padding) 0;
            background: var(--color-bg-dark);
        }

.why-section h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-white);
            text-align: center;
            margin-bottom: 48px;
        }

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

.why-item {
            text-align: center;
            padding: 28px 20px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px;
            transition: border-color var(--transition);
        }

.why-item:hover {
            border-color: rgba(255,255,255,0.3);
        }

.why-item .check-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 14px;
            filter: brightness(1.2);
        }

.why-item p {
            font-size: 15px;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
        }

/* ============ PRICING SECTION ============ */

.pricing-section {
            padding: var(--section-padding) 0;
            background: #F9F6F4;
        }

.pricing-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 56px;
        }

.pricing-header h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 16px;
        }

.pricing-header p {
            font-size: 17px;
            color: var(--color-text);
            line-height: 1.8;
        }

.pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            align-items: stretch;
        }

.pricing-card {
            background: var(--color-white);
            border-radius: 16px;
            padding: 40px 32px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            transition: transform var(--transition), box-shadow var(--transition);
            position: relative;
            overflow: hidden;
        }

.pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        }

.pricing-card.featured {
            border: 2px solid var(--color-primary);
        }

.pricing-card.featured::before {
            content: 'Legnépszerűbb';
            position: absolute;
            top: 24px;
            right: -34px;
            background: var(--gradient-brand);
            color: var(--color-white);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 5px 44px;
            transform: rotate(45deg);
            z-index: 1;
        }

.pricing-card-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--color-primary);
            margin-bottom: 8px;
        }

.pricing-card h3 {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 4px;
        }

.pricing-card-subtitle {
            font-size: 13px;
            color: var(--color-text);
            opacity: 0.7;
            margin-bottom: 20px;
        }

.pricing-ideal {
            font-size: 14px;
            font-style: italic;
            color: var(--color-text);
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--color-border);
        }

.pricing-features {
            list-style: none;
            flex: 1;
            margin-bottom: 28px;
        }

.pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 14px;
            color: var(--color-text);
            line-height: 1.6;
        }

.pricing-features .check-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

.pricing-why {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-dark);
            padding: 14px 0;
            border-top: 1px solid var(--color-border);
            margin-top: auto;
        }

.pricing-cta {
            text-align: center;
            margin-top: 48px;
        }

.pricing-note {
            text-align: center;
            font-size: 15px;
            color: var(--color-text);
            margin-top: 32px;
            font-style: italic;
        }

/* ============ DISABLED FEATURES ============ */

.pricing-features li.disabled {
            color: #b8b8bc;
        }

.pricing-features li.disabled .check-icon {
            display: none;
        }

.pricing-features li.disabled .x-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }

.pricing-features li .x-icon {
            display: none;
        }

.pricing-features li.disabled .x-icon {
            display: block;
        }

.image-divider {
            height: 300px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

.parallax-divider {
            height: 300px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

.contact-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(30%);
        }

.contact-grid-item a {
            color: var(--color-white);
        }

.contact-grid-item a:hover {
            opacity: 0.8;
        }

.footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
            padding-bottom: 40px;
        }

.footer-col h4 {
            font-family: var(--font-heading);
            font-size: 22px;
            margin-bottom: 16px;
            color: var(--color-white);
        }

.footer-col a {
            display: block;
            font-size: 14px;
            opacity: 0.7;
            margin-bottom: 8px;
        }

.footer-legal {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0 14px;
            font-size: 12px;
            opacity: 0.6;
            text-align: center;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

.footer-legal a {
            color: inherit;
            text-decoration: underline;
        }

.footer-bottom {
            text-align: center;
            padding: 16px 0;
            font-size: 13px;
            opacity: 0.5;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.logo-deco {
            position: absolute;
            opacity: 0.08;
            filter: brightness(0) invert(1);
            pointer-events: none;
            animation: logoFloat 8s ease-in-out infinite;
        }

.logo-deco--cta {
            top: 50%;
            left: -20px;
            width: 250px;
            height: 250px;
        }

.logo-deco--footer {
            bottom: 20px;
            right: 40px;
            width: 180px;
            height: 180px;
        }

@keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(3deg); }
        }

.back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-brand);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
            z-index: 90;
            box-shadow: 0 4px 15px rgba(186,163,157,0.4);
        }

.preloader {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
        }

.preloader.hidden {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s, visibility 0.5s;
        }

.preloader-logo {
            width: 80px;
            height: 80px;
            animation: preloaderPulse 1.2s ease-in-out infinite;
        }

/* ============ REVEAL ANIMATIONS ============ */

.reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

.reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

.reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

.reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

@media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                max-width: 480px;
                margin: 0 auto;
            }

            .why-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .contact-overlay {
                flex-direction: column;
                gap: 24px;
                padding: 32px 24px;
                margin: 20px 16px;
            }

            .contact-overlay h2 {
                font-size: 36px;
                white-space: normal;
            }

            .contact-grid {
                gap: 16px 32px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .logo-deco--cta {
                width: 220px;
                height: 220px;
            }

            .image-divider,
            .parallax-divider {
                height: 250px;
                background-attachment: scroll;
            }
        }

@media (max-width: 767px) {
            :root {
                --section-padding: 48px;
            }

            .top-bar {
                display: none;
            }

            .nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .page-hero {
                padding: 80px 0 60px;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .page-hero p {
                font-size: 15px;
            }

            .benefits-section h2,
            .target-section h2,
            .why-section h2,
            .pricing-header h2,
            .cta-section h2 {
                font-size: 28px;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .contact-section {
                min-height: 400px;
            }

            .contact-overlay {
                margin: 16px;
                padding: 24px 20px;
            }

            .contact-overlay h2 {
                font-size: 28px;
                white-space: normal;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .cta-section {
                padding: 60px 0;
            }

            .image-divider,
            .parallax-divider {
                height: 180px;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 42px;
                height: 42px;
            }

            .logo-deco--cta {
                width: 180px;
                height: 180px;
                left: -60px;
            }

            .logo-deco--footer {
                width: 120px;
                height: 120px;
            }

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

            .footer-legal {
                font-size: 11px;
                padding: 16px 0 10px;
            }
        }

/* ============ SERVICES SECTION ============ */

.services-section {
            padding: var(--section-padding) 0;
            background: #F9F6F4;
        }

.services-section h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            text-align: center;
            margin-bottom: 56px;
        }

.service-card {
            background: var(--color-bg-dark);
            border-radius: 12px;
            padding: 40px 32px;
            transition: transform var(--transition), box-shadow var(--transition);
        }

.service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

.service-card h3 {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 14px;
        }

.service-card p {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }

.service-card .service-list {
            list-style: none;
            margin-top: 16px;
        }

.service-card .service-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 6px 0;
            font-size: 14px;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
        }

.service-card .service-list .check-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 3px;
            filter: brightness(1.15);
        }

/* ============ VALUES SECTION ============ */

.values-section {
            padding: var(--section-padding) 0;
            background: var(--color-white);
        }

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

.values-content h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 24px;
        }

.values-content p {
            font-size: 16px;
            color: var(--color-text);
            line-height: 1.9;
            margin-bottom: 20px;
        }

.values-image {
            border-radius: 12px;
            overflow: hidden;
        }

.values-image img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 12px;
        }

@media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .values-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-overlay {
                flex-direction: column;
                gap: 24px;
                padding: 32px 24px;
                margin: 20px 16px;
            }

            .contact-overlay h2 {
                font-size: 36px;
                white-space: normal;
            }

            .contact-grid {
                gap: 16px 32px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .logo-deco--cta {
                width: 220px;
                height: 220px;
            }

            .parallax-divider {
                height: 250px;
                background-attachment: scroll;
            }
        }

@media (max-width: 767px) {
            :root {
                --section-padding: 48px;
            }

            .top-bar {
                display: none;
            }

            .nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .page-hero {
                padding: 80px 0 60px;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .page-hero p {
                font-size: 15px;
            }

            .services-section h2,
            .values-content h2,
            .cta-section h2 {
                font-size: 28px;
            }

            .contact-section {
                min-height: 400px;
            }

            .contact-overlay {
                margin: 16px;
                padding: 24px 20px;
            }

            .contact-overlay h2 {
                font-size: 28px;
                white-space: normal;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .cta-section {
                padding: 60px 0;
            }

            .parallax-divider {
                height: 180px;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 42px;
                height: 42px;
            }

            .logo-deco--cta {
                width: 180px;
                height: 180px;
                left: -60px;
            }

            .logo-deco--footer {
                width: 120px;
                height: 120px;
            }

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

            .footer-legal {
                font-size: 11px;
                padding: 16px 0 10px;
            }

            .service-card {
                padding: 28px 24px;
            }

            .service-card h3 {
                font-size: 22px;
            }

            .values-image img {
                max-height: 300px;
            }
        }

:root {
            --color-primary: #BAA39D;
            --color-secondary: #616161;
            --color-accent: #DEBEAD;
            --color-text: #62636A;
            --color-light-text: #EEE2DA;
            --color-cream: #EEE2DA;
            --color-white: #FFFFFF;
            --color-border: #DBDBDF;
            --color-dark: #616161;
            --color-bg-dark: #616161;
            --color-bg-footer: #616161;
            --gradient-brand: linear-gradient(90deg, #DCAC9B 0%, #D9BAA7 33%, #DEBEAD 66%, #F4D7C6 100%);
            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Montserrat', 'Segoe UI', sans-serif;
            --max-width: 1200px;
            --section-padding: 80px;
            --transition: 0.3s ease;
        }

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

/* ============ ABOUT INTRO ============ */

.about-intro {
            padding: var(--section-padding) 0;
            background: var(--color-white);
        }

.about-intro-layout {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 60px;
            align-items: start;
        }

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

.about-photo img {
            width: 100%;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

.about-photo-frame {
            position: relative;
        }

.about-photo-frame::after {
            content: '';
            position: absolute;
            top: 12px;
            left: 12px;
            right: -12px;
            bottom: -12px;
            border: 2px solid var(--color-primary);
            border-radius: 12px;
            z-index: -1;
            opacity: 0.4;
        }

.about-text h2 {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 8px;
        }

.about-text .subtitle {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--color-primary);
            opacity: 0.7;
            margin-bottom: 28px;
        }

.about-text p {
            font-size: 16px;
            color: var(--color-text);
            line-height: 1.9;
            margin-bottom: 22px;
        }

/* ============ TIMELINE ============ */

.timeline-section {
            padding: var(--section-padding) 0;
            background: #F9F6F4;
        }

.timeline-section h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-primary);
            text-align: center;
            margin-bottom: 56px;
        }

.timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-left: 40px;
        }

.timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gradient-brand);
        }

.timeline-item {
            position: relative;
            padding-bottom: 40px;
        }

.timeline-item:last-child {
            padding-bottom: 0;
        }

.timeline-dot {
            position: absolute;
            left: -33px;
            top: 4px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--gradient-brand);
            border: 3px solid #F9F6F4;
            z-index: 1;
        }

.timeline-year {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 6px;
        }

.timeline-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 4px;
        }

.timeline-desc {
            font-size: 14px;
            color: var(--color-text);
            line-height: 1.7;
        }

/* ============ EXPERTISE ============ */

.expertise-section {
            padding: var(--section-padding) 0;
            background: var(--color-bg-dark);
        }

.expertise-section h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-white);
            text-align: center;
            margin-bottom: 48px;
        }

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

.expertise-item {
            text-align: center;
            padding: 32px 16px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px;
            transition: border-color var(--transition), transform var(--transition);
        }

.expertise-item:hover {
            border-color: rgba(255,255,255,0.3);
            transform: translateY(-4px);
        }

.expertise-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            background: var(--gradient-brand);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.expertise-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--color-white);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

.expertise-item h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 6px;
        }

.expertise-item p {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            line-height: 1.5;
        }

.cta-section { padding: 100px 0; background: var(--color-white); text-align: center; position: relative; overflow: hidden; }

.cta-section h2 { font-family: var(--font-heading); font-size: 40px; font-weight: 600; color: var(--color-primary); margin-bottom: 16px; }

.cta-section p { font-size: 17px; color: var(--color-text); opacity: 0.8; max-width: 550px; margin: 0 auto 40px; }

.footer-col p, .footer-col a { display: block; font-size: 14px; opacity: 0.7; margin-bottom: 8px; }

@media (max-width: 1024px) {
            .about-intro-layout {
                grid-template-columns: 300px 1fr;
                gap: 40px;
            }

            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-overlay { flex-direction: column; gap: 24px; padding: 32px 24px; margin: 20px 16px; }
            .contact-overlay h2 { font-size: 36px; white-space: normal; }
            .contact-grid { gap: 16px 32px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .logo-deco--cta { width: 220px; height: 220px; }
        }

@media (max-width: 767px) {
            :root { --section-padding: 48px; }
            .top-bar { display: none; }
            .nav { display: none; }
            .hamburger { display: flex; }

            .page-hero { padding: 80px 0 60px; }
            .page-hero h1 { font-size: 32px; }
            .page-hero p { font-size: 15px; }

            .about-intro-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .about-photo {
                position: relative;
                top: auto;
                max-width: 300px;
                margin: 0 auto;
            }

            .about-text h2 { font-size: 30px; }

            .timeline { padding-left: 32px; }
            .timeline-dot { left: -25px; width: 16px; height: 16px; }
            .timeline-year { font-size: 24px; }

            .timeline-section h2,
            .expertise-section h2,
            .cta-section h2 { font-size: 28px; }

            .expertise-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
            .expertise-item { padding: 24px 12px; }
            .expertise-item h3 { font-size: 18px; }

            .contact-section { min-height: 400px; }
            .contact-overlay { margin: 16px; padding: 24px 20px; }
            .contact-overlay h2 { font-size: 28px; white-space: normal; }
            .contact-grid { grid-template-columns: 1fr; gap: 14px; }

            .cta-section { padding: 60px 0; }

            .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
            .logo-deco--cta { width: 180px; height: 180px; left: -60px; }
            .logo-deco--footer { width: 120px; height: 120px; }
            .footer-grid { text-align: center; }
            .footer-legal { font-size: 11px; padding: 16px 0 10px; }
        }

.top-bar-social a:hover { opacity: 0.8; }

.header.scrolled .logo img { height: 48px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all var(--transition); cursor: pointer; border: none; font-family: var(--font-body); }

/* ============ CONTACT INFO CARDS ============ */

.contact-cards-section {
            padding: var(--section-padding) 0;
            background: var(--color-white);
        }

.contact-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 64px;
        }

.contact-card {
            text-align: center;
            padding: 40px 24px;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            transition: transform var(--transition), box-shadow var(--transition);
        }

.contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }

.contact-card-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: var(--gradient-brand);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.contact-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-white);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

.contact-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 8px;
        }

.contact-card p {
            font-size: 15px;
            color: var(--color-text);
            line-height: 1.6;
        }

.contact-card a {
            color: var(--color-primary);
            font-weight: 500;
        }

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

/* ============ CONTACT FORM + MAP ============ */

.contact-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

.contact-form-wrapper {
            background: #F9F6F4;
            padding: 48px;
            border-radius: 12px;
        }

.contact-form-wrapper h2 {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 8px;
        }

.contact-form-wrapper .form-subtitle {
            font-size: 15px;
            color: var(--color-text);
            opacity: 0.8;
            margin-bottom: 32px;
        }

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

.form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--color-dark);
            margin-bottom: 6px;
        }

.form-group input,

.form-group textarea,

.form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--color-border);
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--color-dark);
            background: var(--color-white);
            transition: border-color var(--transition), box-shadow var(--transition);
            outline: none;
        }

.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(186,163,157,0.15);
        }

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

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

.form-consent {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 24px;
            font-size: 13px;
            color: var(--color-text);
            line-height: 1.5;
        }

.form-consent input[type="checkbox"] {
            margin-top: 2px;
            accent-color: var(--color-primary);
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

.form-consent a {
            color: var(--color-primary);
            text-decoration: underline;
        }

.btn-submit {
            width: 100%;
            justify-content: center;
            padding: 16px;
            font-size: 15px;
        }

.contact-map-wrapper {
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            min-height: 500px;
            position: relative;
        }

.contact-map-wrapper iframe {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
            border: 0;
            filter: grayscale(30%);
        }

/* ============ FAQ SECTION ============ */

.faq-section {
            padding: var(--section-padding) 0;
            background: var(--color-bg-dark);
        }

.faq-section h2 {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 600;
            color: var(--color-white);
            text-align: center;
            margin-bottom: 48px;
        }

.faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

.faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }

.faq-item:first-child {
            border-top: 1px solid rgba(255,255,255,0.12);
        }

.faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            color: var(--color-white);
            text-align: left;
            gap: 16px;
        }

.faq-question:hover {
            color: var(--color-accent);
        }

.faq-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            transition: transform 0.3s ease;
        }

.faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

.faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

.faq-answer-inner {
            padding: 0 0 24px;
            font-size: 15px;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
        }

.faq-item.active .faq-answer {
            max-height: 300px;
        }

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

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

            .contact-map-wrapper {
                min-height: 400px;
            }

            .logo-deco--cta { width: 220px; height: 220px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
        }

@media (max-width: 767px) {
            :root { --section-padding: 48px; }
            .top-bar { display: none; }
            .nav { display: none; }
            .hamburger { display: flex; }

            .page-hero { padding: 80px 0 60px; }
            .page-hero h1 { font-size: 32px; }
            .page-hero p { font-size: 15px; }

            .contact-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .contact-card { padding: 28px 20px; }

            .contact-form-wrapper { padding: 28px 20px; }
            .contact-form-wrapper h2 { font-size: 26px; }
            .form-row { grid-template-columns: 1fr; }

            .contact-map-wrapper { min-height: 300px; }

            .faq-section h2 { font-size: 28px; }
            .faq-question { font-size: 15px; }

            .cta-section h2 { font-size: 28px; }
            .cta-section { padding: 60px 0; }

            .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
            .logo-deco--cta { width: 180px; height: 180px; left: -60px; }
            .logo-deco--footer { width: 120px; height: 120px; }
            .footer-grid { text-align: center; }
            .footer-legal { font-size: 11px; padding: 16px 0 10px; }
        }
/* ========================================
   WordPress Compatibility Overrides
   ======================================== */

:root {
    --wp--preset--color--primary: #BAA39D;
    --wp--preset--color--secondary: #616161;
    --wp--preset--color--accent: #DEBEAD;
    --wp--preset--color--text: #62636A;
    --wp--preset--color--light-text: #EEE2DA;
    --wp--preset--color--cream: #EEE2DA;
    --wp--preset--color--white: #FFFFFF;
    --wp--preset--color--border: #DBDBDF;
    --wp--preset--color--dark: #616161;
    --wp--preset--color--bg-dark: #616161;
    --wp--preset--color--bg-footer: #616161;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

.wp-site-blocks {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.wp-site-blocks > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

.wp-site-blocks > * + * {
    margin-block-start: 0 !important;
}

.entry-content > *,
.wp-block-post-content > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    max-width: none !important;
}

.wp-block-html {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

.wp-block-template-part {
    margin: 0 !important;
    padding: 0 !important;
}

.top-bar { margin: 0 !important; }
.header { margin: 0 !important; }
.hero { margin: 0 !important; }
.footer { margin: 0 !important; }
