
        /* ==========================================================================
           1. CSS VARIABLES & THEME (High-class, Elegant, Rural Hungarian Vibe)
           ========================================================================== */
        :root {
            /* Elegant Forest Green / Hunter Green Palette */
            --brand: #2C3E30; 
            --brand-hover: #1E2B21;
            --brand-dark: #151F17;
            --brand-darkest: #0A0F0B;
            --brand-light: #EBECE8;
            
            /* Antique Gold / Brass Accent */
            --accent: #A88655; 
            
            /* Creamy / Linen tones for a traditional, warm paper feel */
            --white: #FDFCF9; 
            --black: #0F0E0D;
            --gray-50: #F4F2EC;
            --gray-100: #E6E2D8;
            --gray-200: #D1CAB8;
            --gray-300: #B5AB96;
            --gray-400: #938974;
            --gray-500: #6F6654;
            --gray-600: #554D40;
            --gray-700: #3C362D;
            --gray-800: #26221D;

            --text-dark: #26221D;
            --text-muted: #554D40;
            --text-light: #E6E2D8;

            --max-w: 1320px;
            
            /* Vertical rhythm */
            --section-padding-y: 160px;
            --section-padding-x: 24px;
            --header-margin-bottom: 80px;
            
            /* STRICT 3PX BORDER RADIUS GLOBALLY */
            --radius-global: 3px;
            
            /* Sophisticated, softer shadows */
            --shadow-sm: 0 2px 8px rgba(21, 31, 23, 0.05);
            --shadow-md: 0 8px 16px rgba(21, 31, 23, 0.08);
            --shadow-lg: 0 12px 24px rgba(21, 31, 23, 0.12);
            --shadow-xl: 0 20px 40px rgba(21, 31, 23, 0.18);
            --shadow-brand: 0 10px 25px rgba(44, 62, 48, 0.3);
            
            --transition-fast: 0.15s ease-in-out;
            --transition-normal: 0.3s ease-in-out;
            --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            
            --z-base: 1;
            --z-elevated: 10;
            --z-dropdown: 100;
            --z-sticky: 1000;
            --z-fixed: 1050;
            --z-lightbox: 9999;
        }

        /* ==========================================================================
           2. RESET & BASE
           ========================================================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
        
        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 1.125rem;
            position: relative;
        }
        body.no-scroll { overflow: hidden; }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.2;
            color: var(--brand-dark);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
        }
        
        p { color: var(--text-muted); margin-bottom: 1.5rem; }
        a { text-decoration: none; color: inherit; transition: color var(--transition-normal); }
        ul, ol { list-style: none; }
        img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-global); }

        section, header, footer, div[id] { scroll-margin-top: 150px; }
        .no-break-headline { white-space: nowrap; }

        /* ==========================================================================
           3. UTILITIES & DECOR
           ========================================================================== */
        .container {
            width: 100%; max-width: var(--max-w);
            margin: 0 auto; padding: 0 var(--section-padding-x);
            position: relative; z-index: var(--z-base);
        }

        .text-center { text-align: center; }
        .text-brand { color: var(--brand); }
        .text-white { color: var(--white) !important; }
        .text-brand-dark { color: var(--brand-dark); }
        .bg-gray { background-color: var(--gray-50); }
        .bg-alternate { background-color: var(--gray-50); }
        .bg-white { background-color: var(--white); }
        
        .d-flex { display: flex; }
        .align-items-center { align-items: center; }
        .justify-content-center { justify-content: center; }
        .justify-content-between { justify-content: space-between; }
        .gap-10 { gap: 10px; }
        .gap-20 { gap: 20px; }

        /* MANDATORY DARK BACKGROUND TEXT CONTRAST */
        .dark-bg-text {
            color: var(--white) !important;
            text-shadow: 0 4px 15px rgba(0,0,0,0.9);
        }
        .dark-bg-text-sub {
            color: rgba(255,255,255,0.95) !important;
            text-shadow: 0 2px 8px rgba(0,0,0,0.9);
        }

        /* Decorative Script Element */
        .decor-text {
            font-family: 'Style Script', cursive;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--accent);
            line-height: 1;
            margin-bottom: -5px;
            display: block;
            text-shadow: 1px 1px 0px var(--accent), 0 0 1px var(--accent); /* Pseudo-bold effect */
            position: relative;
            z-index: 2;
        }

        /* ==========================================================================
           4. TYPOGRAPHY & HEADINGS
           ========================================================================== */
        .section-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--brand-dark);
            letter-spacing: 0.01em;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 700;
            display: block;
            font-family: 'Lato', sans-serif;
            margin-bottom: 15px;
        }

        .section-header { margin-bottom: var(--header-margin-bottom) !important; position: relative; z-index: 2; }
        .section-header.text-center { text-align: center; }
        .section-header.text-center .decor-text { text-align: center; }
        .section-header .section-title { margin-bottom: 0 !important; }
        .section-header p { margin-top: 15px; margin-bottom: 0; }

        /* ==========================================================================
           5. BUTTONS (Elegant, classic)
           ========================================================================== */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 12px;
            padding: 16px 36px; border-radius: var(--radius-global);
            font-weight: 700; font-size: 0.95rem; cursor: pointer;
            transition: all var(--transition-normal); border: 1px solid transparent;
            font-family: 'Lato', sans-serif; text-align: center; line-height: 1;
            text-transform: uppercase; letter-spacing: 0.1em;
        }

        .btn-primary { background-color: var(--brand); color: var(--white); box-shadow: var(--shadow-brand); border: 1px solid var(--brand); }
        .btn-primary:hover:not(:disabled) { background-color: var(--brand-hover); color: var(--white); transform: scale(1.02); box-shadow: 0 15px 35px rgba(44, 62, 48, 0.4); }
        .btn-primary:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; transform: none; }
        .btn-outline { background-color: transparent; color: var(--brand-dark); border: 1px solid var(--brand-dark); }
        .btn-outline:hover { background-color: var(--brand-dark); color: var(--white); transform: scale(1.02); }

        /* ==========================================================================
           6. SHARED CARD STYLES
           ========================================================================== */
        .feature-card, .why-card, .info-card {
            background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-global);
            box-shadow: var(--shadow-lg); transition: transform var(--transition-normal), box-shadow var(--transition-normal); position: relative; z-index: 1;
        }
        .feature-card:hover, .why-card:hover, .info-card:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); border-color: var(--accent); }

        .form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-global); box-shadow: var(--shadow-xl); padding: 40px; z-index: var(--z-elevated); border: none; }
        .form-card h3 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 5px; color: var(--brand-dark); font-family: 'Cormorant Garamond', serif;}
        .form-card p.form-desc { margin-bottom: 25px; font-size: 1rem; }

        .feature-card { padding: 35px; display: flex; gap: 25px; align-items: flex-start; overflow: hidden; }
        .feature-card::before {
            content: ''; position: absolute; right: -50px; top: -50px; width: 100px; height: 100px; border-radius: var(--radius-global);
            background: var(--brand-light); transform: scale(0) rotate(45deg); transition: transform var(--transition-normal); transform-origin: center; z-index: -1;
        }
        .feature-card:hover::before { transform: scale(8) rotate(45deg); }
        .feature-card > * { position: relative; z-index: 2; }
        .feature-card i { font-size: 3rem; color: var(--brand-dark); background: var(--brand-light); padding: 15px; border-radius: var(--radius-global); }
        .feature-card h4 { font-size: 1.6rem; margin-bottom: 10px; color: var(--brand-dark); }
        .feature-card p { margin: 0; font-size: 1.05rem; }

        /* Form Inputs */
        .input-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
        .input-group label { font-size: 0.95rem; font-weight: 700; color: var(--brand-dark); font-family: 'Lato', sans-serif; }
        .input-group input, .input-group select, .input-group textarea {
            background: var(--white); border: 1px solid var(--gray-200); color: var(--text-dark);
            border-radius: var(--radius-global); padding: 14px 18px; font-family: 'Lato', sans-serif;
            font-size: 1rem; transition: all var(--transition-normal); width: 100%;
        }
        .input-group input:focus, .input-group select:focus, .input-group textarea:focus {
            outline: none; border-color: var(--brand); background: var(--white);
            box-shadow: 0 0 0 2px rgba(44, 62, 48, 0.15);
        }
        .input-group textarea { resize: vertical; min-height: 100px; }

        /* ==========================================================================
           MULTI-STEP FORM SPECIFICS
           ========================================================================== */
        .form-step { display: none; animation: fadeIn 0.4s ease-in-out; }
        .form-step.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
        
        .service-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .service-select-card {
            border: 1px solid var(--gray-200); border-radius: var(--radius-global); padding: 15px 10px;
            display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
            cursor: pointer; transition: all var(--transition-fast); background: var(--white); user-select: none;
        }
        .service-select-card i { font-size: 2.2rem; color: var(--brand-dark); margin-bottom: 8px; transition: all var(--transition-fast); }
        .service-select-card span { font-size: 0.9rem; font-weight: 700; color: var(--brand-dark); line-height: 1.2; transition: all var(--transition-fast); }
        .service-select-card:hover { border-color: var(--accent); transform: scale(1.02); box-shadow: var(--shadow-md); }
        .service-select-card.selected { border-color: var(--brand); background: rgba(44, 62, 48, 0.05); box-shadow: inset 0 0 0 1px var(--brand); }
        .service-select-card.selected i { color: var(--brand); }
        .step-buttons { display: flex; gap: 15px; margin-top: 10px; }
        .step-buttons button { flex: 1; }

        /* ==========================================================================
           HEADER & NAVIGATION
           ========================================================================== */
        .top-bar {
            background-color: var(--brand-darkest); color: var(--gray-300); padding: 10px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .top-bar a { transition: color var(--transition-fast); color: var(--gray-300); font-weight: 600; }
        .top-bar a:hover { color: var(--accent); }
        .top-bar i { color: var(--accent); margin-right: 6px; font-size: 1.1rem; }
        .top-bar-inner { display: flex; justify-content: space-between; align-items: center; }

        .header-sticky-wrapper {
            position: sticky; top: 0; z-index: var(--z-sticky); width: 100%; background: rgba(10, 15, 11, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 4px 20px rgba(0,0,0,0.4); border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .nav { padding: 15px 0; display: flex; justify-content: space-between; align-items: center; }
        .nav-logo-link { display: flex; align-items: center; gap: 12px; transition: transform var(--transition-normal); }
        .nav-logo-link:hover { transform: scale(1.03); }
        .nav-logo-img { height: 60px; object-fit: contain; border-radius: var(--radius-global); }

        .nav-links { display: flex; gap: 35px; align-items: center; }
        .nav-links a { font-family: 'Lato', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--gray-200); position: relative; transition: color var(--transition-normal); text-transform: uppercase; letter-spacing: 0.05em; }
        .nav-links a:hover { color: var(--accent); }
        .nav-links a::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -4px; left: 0; background-color: var(--accent); transition: width var(--transition-normal); border-radius: 0; }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta { display: flex; gap: 20px; align-items: center; }
        .mobile-menu-btn { display: none; font-size: 2.2rem; color: var(--white); background: none; border: none; cursor: pointer; }

        /* ==========================================================================
           8. HERO SECTION
           ========================================================================== */
        .hero {
            position: relative; min-height: 65vh; display: flex; align-items: center; padding: 60px 0 80px 0;
            background-image: url('https://i0.wp.com/tamastanya.hu/wp-content/uploads/2023/07/eskuvo.webp'); background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden;
        }
        .hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(253, 252, 249, 0.95) 0%, rgba(235, 236, 232, 0.88) 100%); z-index: 1; }

        .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
        .hero-text h1 { font-size: clamp(2.8rem, 4.5vw, 4.5rem); margin-bottom: 20px; letter-spacing: 0.02em; color: var(--brand-dark); line-height: 1.1; }
        .hero-text h1 span { color: var(--brand); position: relative; display: inline-block; }
        .hero-text h1 span::after { content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 6px; background: rgba(168, 134, 85, 0.4); z-index: -1; border-radius: 0; }
        .hero-text p.hero-subtitle { font-size: 1.15rem; color: var(--gray-700); margin-bottom: 35px; max-width: 600px; line-height: 1.6; font-weight: 400;}

        .hero-features { display: flex; gap: 12px; margin-bottom: 0; flex-wrap: wrap; align-items: center; }
        .hero-feature-item { display: flex; align-items: center; gap: 8px; font-weight: 700; background: var(--white); font-size: 0.95rem; padding: 10px 20px; border-radius: var(--radius-global); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); color: var(--brand-dark); text-transform: uppercase; letter-spacing: 0.05em;}
        .hero-feature-item i { color: var(--accent); font-size: 1.2rem; }

        /* ==========================================================================
           9. TRUST BADGES
           ========================================================================== */
        .trust-badges { background: var(--brand-dark); padding: 60px 0; position: relative; z-index: var(--z-elevated); box-shadow: 0 10px 30px rgba(0,0,0,0.3); color: var(--white); border-top: 2px solid var(--accent); border-bottom: 2px solid var(--accent);}
        .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
        .trust-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.5px;}
        .trust-item i { font-size: 2.8rem; color: var(--accent); background: rgba(255,255,255,0.05); padding: 15px; border-radius: var(--radius-global); border: 1px solid rgba(168, 134, 85, 0.3);}

        /* ==========================================================================
           11. SERVICES & REST 
           ========================================================================== */
        .services-intro { padding-top: var(--section-padding-y); padding-bottom: 40px; background: var(--gray-50); text-align: center; border-bottom: 1px solid var(--gray-200); }
        
        .service-detail { padding: 80px 0; background: var(--white); }
        .service-detail.bg-alternate { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);}
        .service-detail:last-child { padding-bottom: var(--section-padding-y); }

        .service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .content-side { display: flex; flex-direction: column; gap: 40px; }
        .feature-cards { display: grid; grid-template-columns: 1fr; gap: 25px; }

        .service-gallery { display: flex; flex-direction: column; gap: 15px; height: 100%; min-height: 500px; }
        .service-gallery-main { width: 100%; flex: 1; min-height: 0; object-fit: cover; border-radius: var(--radius-global); box-shadow: var(--shadow-md); border: 4px solid var(--white); }
        .service-gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; height: 140px; flex-shrink: 0; }
        .service-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-global); box-shadow: var(--shadow-sm); transition: transform var(--transition-fast); border: 2px solid var(--white);}
        .service-gallery-thumbs img:hover { transform: scale(1.05); cursor: pointer; border-color: var(--accent);}

        .about-section { padding: var(--section-padding-y) 0; background: var(--white); position: relative; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .about-img { position: relative; z-index: 2; }
        .about-img img { width: 100%; height: 500px; object-fit: cover; box-shadow: var(--shadow-xl); position: relative; z-index: 2; border-radius: var(--radius-global); border: 4px solid var(--gray-50); }
        .about-experience { position: absolute; bottom: -25px; left: -25px; background: var(--white); padding: 25px 30px; border-radius: var(--radius-global); box-shadow: var(--shadow-xl); z-index: 3; display: flex; align-items: center; gap: 20px; border-left: 2px solid var(--accent); border-right: 2px solid var(--accent); }
        .about-experience i { font-size: 3rem; color: var(--brand); }
        .about-experience p { margin: 0; font-weight: 700; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 2px; line-height: 1.3; color: var(--brand-dark); font-family: 'Lato', sans-serif;}
        
        .stats-section { background: linear-gradient(rgba(10, 15, 11, 0.85), rgba(10, 15, 11, 0.85)), url('https://i0.wp.com/tamastanya.hu/wp-content/uploads/2025/01/2048-DSC-2365-1.jpg') fixed center center; background-size: cover; padding: var(--section-padding-y) 0; color: var(--white); position: relative; border-top: 2px solid var(--accent); border-bottom: 2px solid var(--accent);}
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; }
        .stat-item { padding: 20px; text-align: center; }
        .stat-item i { font-size: 3.5rem; color: var(--accent); margin-bottom: 20px; display: inline-block; animation: float 4s ease-in-out infinite; border-radius: var(--radius-global);}
        .stat-item h3 { font-size: 4.5rem; color: var(--white); margin-bottom: 5px; line-height: 1; text-shadow: 0 4px 15px rgba(0,0,0,0.9); font-weight: 700;}
        .stat-item p { color: rgba(255,255,255,0.9); font-size: 1rem; text-transform: uppercase; font-weight: 700; letter-spacing: 3px; margin: 0; text-shadow: 0 2px 8px rgba(0,0,0,0.9);}
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

        .materials-section { padding: var(--section-padding-y) 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
        .accordion-container { display: flex; height: 500px; gap: 15px; overflow: hidden; }
        .accordion-panel { flex: 1; position: relative; overflow: hidden; border-radius: var(--radius-global); transition: flex var(--transition-slow); cursor: pointer; box-shadow: var(--shadow-md); border: 2px solid transparent;}
        .accordion-panel::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 15, 11, 0.95) 0%, rgba(44, 62, 48, 0.4) 60%, transparent 100%); opacity: 0.6; transition: opacity var(--transition-normal); z-index: 1; }
        .accordion-panel:hover { flex: 4; box-shadow: var(--shadow-xl); border-color: var(--accent); }
        .accordion-panel:hover::before { opacity: 0.95; }
        .accordion-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); position: relative; z-index: 0; border-radius: var(--radius-global);}
        .accordion-panel:hover img { transform: scale(1.05); }
        .accordion-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; color: var(--white); opacity: 0; transition: opacity var(--transition-slow); transition-delay: 0.1s; z-index: 2; }
        .accordion-panel:hover .accordion-content { opacity: 1; }
        .accordion-content h4 { font-size: 2.2rem; margin-bottom: 10px; }
        .accordion-panel .vertical-title { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(270deg); transition: all var(--transition-slow); font-size: 1.8rem; font-family: 'Cormorant Garamond', serif; text-transform: uppercase; letter-spacing: 6px; color: var(--white); font-weight: 700; white-space: nowrap; pointer-events: none; z-index: 2; text-shadow: 0 4px 15px rgba(0,0,0,0.9); }
        .accordion-panel:hover .vertical-title { opacity: 0; transform: translate(-50%, -50%) rotate(270deg) scale(0.5); }

        .sticky-section { padding: var(--section-padding-y) 0; background: var(--white); position: relative; }
        .sticky-wrapper { display: flex; gap: 80px; align-items: flex-start; }
        .sticky-left { position: sticky; top: 150px; width: 40%; } 
        .sticky-right { width: 60%; display: flex; flex-direction: column; gap: 60px; }
        .scroll-card { background: var(--white); border-radius: var(--radius-global); overflow: hidden; box-shadow: var(--shadow-lg); transition: transform var(--transition-normal); border: 1px solid var(--gray-200); }
        .scroll-card:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); border-color: var(--accent); }
        .scroll-card img { width: 100%; height: 350px; object-fit: cover; border-radius: var(--radius-global) var(--radius-global) 0 0; }
        .scroll-card-content { padding: 40px; border-top: 1px solid var(--gray-100);}
        .scroll-card-content h3 { font-size: 2rem; color: var(--brand-dark); margin-bottom: 15px; }
        .scroll-feature-list { display: flex; gap: 15px; margin-top: 15px; font-weight: 700; color: var(--brand-dark); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em;}
        .scroll-feature-item i { color: var(--accent); margin-right: 5px; }

        .process-v1 { padding: var(--section-padding-y) 0; background: var(--brand-darkest); color: var(--white); border-top: 2px solid var(--accent); border-bottom: 2px solid var(--accent); }
        .process-grid-v1 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; text-align: center; }
        .process-step-v1 { position: relative; background: rgba(255,255,255,0.02); border: 1px solid rgba(168, 134, 85, 0.2); padding: 60px 30px 40px 30px; border-radius: var(--radius-global); transition: all var(--transition-normal); box-shadow: var(--shadow-lg); z-index: 2; backdrop-filter: blur(10px); }
        .process-step-v1:hover { transform: scale(1.02); border-color: var(--accent); background: rgba(255,255,255,0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
        .process-number-v1 { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; background: var(--brand); color: var(--white); border-radius: var(--radius-global); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; box-shadow: 0 0 0 4px rgba(44, 62, 48, 0.5); transition: all var(--transition-normal); border: 1px solid var(--accent); }
        .process-step-v1:hover .process-number-v1 { background: var(--accent); color: var(--white); transform: translateX(-50%) scale(1.1); box-shadow: 0 0 0 4px rgba(168, 134, 85, 0.3); border-color: var(--white);}
        .process-step-v1 i { font-size: 3.5rem; color: var(--accent); margin-bottom: 25px; display: block; opacity: 0.9; border-radius: var(--radius-global);}

        /* Testimonials */
        .testimonials { padding: var(--section-padding-y) 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
        .test-columns { display: flex; gap: 30px; justify-content: center; height: 600px; overflow: hidden; mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent); }
        .test-col { flex: 1; max-width: 350px; display: flex; flex-direction: column; }
        .test-col-inner { display: flex; flex-direction: column; gap: 30px; animation: scrollVertical 20s linear infinite; }
        .test-card { display: flex; flex-direction: column; justify-content: space-between; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-global); box-shadow: var(--shadow-md); padding: 35px; transition: transform 0.3s;}
        .test-card:hover { transform: scale(1.02); border-color: var(--accent); box-shadow: var(--shadow-xl);}
        .test-card p.quote { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; color: var(--gray-700); }
        .test-author-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 25px; border-top: 1px solid var(--gray-100); padding-top: 15px;}
        .test-author-info { display: flex; align-items: center; gap: 12px; }
        .test-avatar { width: 45px; height: 45px; border-radius: var(--radius-global); background: var(--brand-light); color: var(--brand-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; border: 1px solid var(--gray-200); }
        .test-name-role strong { display: block; font-size: 1.05rem; color: var(--brand-dark); font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1; text-transform: uppercase; letter-spacing: 0.05em;}
        @keyframes scrollVertical { from { transform: translateY(0); } to { transform: translateY(calc(-50% - 15px)); } }


        /* ==========================================================================
           DETAILED SERVICE SECTION (layout_2)
           ========================================================================== */
        .sd2-mobile-title { display: none; }
        .sd2-desktop-title { display: block; }
        .sd2-service-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: stretch;
        }
        .sd2-content-side { display: flex; flex-direction: column; gap: 40px; }
        .sd2-feature-cards { display: grid; grid-template-columns: 1fr; gap: 25px; }
        .sd2-feature-card {
            background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-global);
            box-shadow: var(--shadow-lg); padding: 35px; display: flex; gap: 25px; align-items: flex-start;
            position: relative; z-index: 1; overflow: hidden; transition: transform var(--transition-normal), box-shadow var(--transition-normal);
        }
        .sd2-feature-card::before {
            content: ''; position: absolute; right: -50px; top: -50px; width: 100px; height: 100px; border-radius: var(--radius-global);
            background: var(--brand-light); transform: scale(0) rotate(45deg); transition: transform var(--transition-normal); transform-origin: center; z-index: -1;
        }
        .sd2-feature-card:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); border-color: var(--accent);}
        .sd2-feature-card:hover::before { transform: scale(8) rotate(45deg); }
        .sd2-feature-card i { font-size: 3rem; color: var(--accent); background: var(--brand-light); padding: 15px; border-radius: var(--radius-global); flex-shrink: 0; border: 1px solid var(--gray-200);}
        .sd2-feature-card h4 { font-size: 1.6rem; margin-bottom: 10px; color: var(--brand-dark); }
        .sd2-feature-card p { margin: 0; font-size: 1.05rem; }
        .sd2-service-gallery { position: relative; width: 100%; height: 100%; }
        .sd2-slider-btn { display: none; }
        .sd2-gallery-track-wrapper { width: 100%; height: 100%; }
        .sd2-gallery-track {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: 1fr 140px;
            gap: 15px;
            width: 100%;
            height: 100%;
        }
        .sd2-gallery-item {
            position: relative;
            border-radius: var(--radius-global);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            background: var(--gray-200);
            height: 100%;
            border: 2px solid var(--white);
        }
        .sd2-gallery-item img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            transition: transform var(--transition-slow);
            border-radius: var(--radius-global);
        }
        .sd2-gallery-item:hover img { transform: scale(1.05); }
        .sd2-item-main { grid-column: span 3; box-shadow: var(--shadow-md); border: 4px solid var(--white); }
        .sd2-expand-btn {
            position: absolute; top: 15px; right: 15px;
            background: rgba(10, 15, 11, 0.65); color: var(--white);
            width: 40px; height: 40px; border-radius: var(--radius-global);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; cursor: pointer; backdrop-filter: blur(4px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, background 0.3s, transform 0.3s;
            z-index: 5;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .sd2-expand-btn:hover { background: var(--brand); transform: scale(1.1); border-color: var(--accent); }
        .sd2-gallery-item:hover .sd2-expand-btn { opacity: 1; pointer-events: auto; }
        
        @media (max-width: 992px) {
            .sd2-service-grid { grid-template-columns: 1fr; gap: 30px; align-items: start; }
            .sd2-mobile-title { display: block; }
            .sd2-desktop-title { display: none; }
            .sd2-gallery-track-wrapper { overflow: hidden; position: relative; width: 100%; padding: 10px 0; }
            .sd2-gallery-track { display: flex; gap: 15px; height: auto; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
            .sd2-gallery-item { flex: 0 0 calc(50% - 7.5px); height: 250px; }
            .sd2-item-main { height: 250px; }
            .sd2-expand-btn { opacity: 1; pointer-events: auto; }
            .sd2-slider-btn { display: flex; position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; border-radius: var(--radius-global); background: var(--white); color: var(--brand-dark); box-shadow: 0 5px 15px rgba(0,0,0,0.2); align-items: center; justify-content: center; font-size: 1.8rem; border: 1px solid var(--gray-200); cursor: pointer; z-index: 10; transition: all 0.2s; }
            .sd2-slider-btn:hover { color: var(--brand); background: var(--brand-light); transform: translateY(-50%) scale(1.05); border-color: var(--accent); }
            .sd2-prev-btn { left: -10px; }
            .sd2-next-btn { right: -10px; }
        }
        @media (max-width: 576px) {
            .sd2-feature-card { flex-direction: column; align-items: center; text-align: center; padding: 25px; }
            .sd2-gallery-item, .sd2-item-main { height: 200px; }
            .sd2-mobile-title { font-size: clamp(1.8rem, 8vw, 2.5rem); overflow-wrap: break-word; hyphens: auto; }
        }

        /* ==========================================================================
           18. PREMIUM MOTION GALLERIES (SHARED)
           ========================================================================== */
        .img-wrapper {
            border-radius: var(--radius-global); overflow: hidden;
            position: relative; background: var(--gray-50);
            transform: translateZ(0); box-shadow: var(--shadow-lg);
        }
        .img-wrapper img {
            width: 100%; height: 100%; object-fit: cover;
            will-change: transform; border-radius: inherit;
        }
        .img-expand {
            position: absolute; top: 15px; right: 15px; background: transparent;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.3s; cursor: pointer; z-index: 5;
        }
        .img-expand i {
            color: var(--brand-darkest); font-size: 1.5rem; transform: scale(0.5); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgba(253, 252, 249, 0.95); padding: 10px; border-radius: var(--radius-global); box-shadow: 0 4px 10px rgba(0,0,0,0.3); border: 1px solid var(--gray-200);
        }
        .img-wrapper:hover .img-expand { opacity: 1; }
        .img-wrapper:hover .img-expand i { transform: scale(1); }

        /* ==========================================================================
           MOTION GALLERY VARIANT 2 (CYLINDER)
           ========================================================================== */
        .gallery-motion-v2 { height: 300vh; background: var(--gray-50); position: relative; margin-bottom: var(--section-padding-y); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);}
        .v2-sticky {
            position: sticky; top: 0; height: 100vh; 
            display: flex; flex-direction: column; align-items: center; justify-content: center; 
            padding-top: 100px; box-sizing: border-box; 
            perspective: 1500px; overflow: visible; 
        }
        .v2-header { position: absolute; top: 15%; left: 50%; transform: translateX(-50%); width: 100%; z-index: 20; margin-bottom: 0 !important; }
        .v2-carousel { position: relative; width: 400px; height: 500px; transform-style: preserve-3d; will-change: transform; }
        .v2-item { position: absolute; inset: 0; border: 4px solid var(--white); box-shadow: 0 15px 40px rgba(0,0,0,0.2); border-radius: var(--radius-global); overflow: hidden; }

        /* ==========================================================================
           MOTION GALLERY VARIANT 5 (SPLIT GATE REVEAL)
           ========================================================================== */
        .gallery-motion-v5 { height: 300vh; background: var(--white); position: relative; margin-bottom: var(--section-padding-y); }
        .v5-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
        .v5-inner {
            position: absolute; top: 0; left: 0; width: 100%; height: 100vh; padding-top: 130px; box-sizing: border-box;
            display: grid; grid-template-columns: repeat(3, 26vw); grid-auto-rows: 25vh; gap: 2vw; 
            align-content: center; justify-content: center; will-change: transform, opacity; z-index: 1;
        }
        .v5-inner .img-wrapper { width: 100%; height: 100%; }
        .v5-gate-panel { position: absolute; top: 0; width: 50%; height: 100vh; overflow: hidden; z-index: 10; will-change: transform; background: var(--brand-darkest); }
        .v5-gate-left { left: 0; border-right: 2px solid var(--accent); }
        .v5-gate-right { right: 0; border-left: 2px solid var(--accent); }
        .v5-gate-panel img { position: absolute; width: 200%; height: 100vh; object-fit: cover; opacity: 1; z-index: 1; top: 0; border-radius: 0; max-width: none; }
        .v5-gate-left img { left: 0; object-position: center; }
        .v5-gate-right img { left: -100%; object-position: center; }
        .v5-header { position: absolute; top: calc(50% + 65px); left: 50%; transform: translate(-50%, -50%); z-index: 20; text-align: center; pointer-events: none; width: 100%; }
        .v5-header .section-title { color: var(--white); text-shadow: 0 4px 15px rgba(0,0,0,0.9); }
        .v5-header .section-subtitle { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.9); margin-bottom: 10px !important;}

        /* ==========================================================================
           LIGHTBOX SYSTEM
           ========================================================================== */
        .lightbox-overlay {
            position: fixed; inset: 0; background: rgba(10, 15, 11, 0.95); backdrop-filter: blur(10px);
            z-index: var(--z-lightbox); display: none; flex-direction: column; align-items: center; justify-content: center; perspective: 1200px;
        }
        .lightbox-overlay.active { display: flex; }
        .lb-close { position: absolute; top: 30px; right: 40px; color: var(--white); font-size: 3rem; cursor: pointer; z-index: 100; transition: transform 0.3s; }
        .lb-close:hover { transform: scale(1.1) rotate(90deg); color: var(--accent); }
        .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 3.5rem; cursor: pointer; z-index: 100; padding: 20px; transition: transform 0.2s, color 0.2s; }
        .lb-nav:hover { color: var(--accent); transform: translateY(-50%) scale(1.1); }
        .lb-prev { left: 20px; }
        .lb-next { right: 20px; }
        .lb-img-container { position: relative; width: 80vw; height: 80vh; display: flex; justify-content: center; align-items: center; transform-style: preserve-3d; }
        .lb-img { position: absolute; max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.8); border-radius: var(--radius-global); opacity: 0; border: 2px solid var(--accent);}
        .lb-img.active { opacity: 1; z-index: 10; }
        .lb-anim-v2.active, .lb-anim-v5.active { animation: fadeIn 0.4s ease-out forwards; }
        .lb-anim-v2.closing, .lb-anim-v5.closing { animation: fadeOut 0.4s ease-out forwards; }
        .lb-anim-v2 .lb-img.enter-next, .lb-anim-v5 .lb-img.enter-next { animation: subtleSlideInRight 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
        .lb-anim-v2 .lb-img.enter-prev, .lb-anim-v5 .lb-img.enter-prev { animation: subtleSlideInLeft 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
        .lb-anim-v2 .lb-img.exit-next, .lb-anim-v5 .lb-img.exit-next { animation: subtleSlideOutLeft 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
        .lb-anim-v2 .lb-img.exit-prev, .lb-anim-v5 .lb-img.exit-prev { animation: subtleSlideOutRight 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards; }

        @keyframes subtleSlideInRight { from { transform: translateX(50px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        @keyframes subtleSlideInLeft { from { transform: translateX(-50px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        @keyframes subtleSlideOutLeft { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-50px); opacity: 0; } }
        @keyframes subtleSlideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(50px); opacity: 0; } }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

        /* ==========================================================================
           20. CONTACT FORM REDESIGNED
           ========================================================================== */
        .contact-redesigned { padding: var(--section-padding-y) 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
        .contact-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 var(--section-padding-x); }
        .contact-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; }
        
        .contact-left { background: var(--brand-darkest); border-radius: var(--radius-global); padding: 50px 30px; color: var(--white); display: flex; flex-direction: column; justify-content: flex-start; border: 2px solid var(--brand); position: relative; overflow: hidden;}
        .contact-left::before { content: ''; position: absolute; inset: 0; background: url('https://i0.wp.com/tamastanya.hu/wp-content/uploads/2017/08/cropped-cropped-logo_small-1.png?fit=120%2C120&ssl=1') center/cover opacity: 0.05; z-index: 0; pointer-events: none;}
        .contact-left > * { position: relative; z-index: 1; }
        .contact-left h3 { color: var(--white); font-size: 2.5rem; margin-bottom: 20px; font-family: 'Cormorant Garamond', serif;}
        .contact-left p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.6; }
        
        .contact-info-block { background: rgba(255,255,255,0.05); border-radius: var(--radius-global); padding: 20px 25px; display: flex; align-items: center; gap: 20px; margin-bottom: 20px; transition: background 0.3s; border: 1px solid rgba(168, 134, 85, 0.2);}
        .contact-info-block:hover { background: rgba(255,255,255,0.1); border-color: var(--accent); }
        .icon-circle { width: 50px; height: 50px; border-radius: var(--radius-global); background: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent); flex-shrink: 0; border: 1px solid var(--brand-hover);}
        .contact-info-block small { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em;}
        .contact-info-block strong { display: block; font-size: 1.2rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--white); letter-spacing: 0.5px;}

        .contact-right { background: var(--white); border-radius: var(--radius-global); padding: 50px 40px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid var(--gray-200); }
        .contact-right label { display: block; font-size: 0.95rem; color: var(--brand-dark); font-weight: 700; margin-bottom: 12px; font-family: 'Lato', sans-serif; text-transform: uppercase; letter-spacing: 0.05em;}
        
        .service-btn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .service-btn { 
            width: 100%; height: 60px; border: 1px solid var(--gray-200); border-radius: var(--radius-global); 
            padding: 0 16px; text-align: left; cursor: pointer; transition: 0.3s; 
            display: flex; align-items: center; justify-content: flex-start; gap: 12px; 
            font-size: 0.95rem; font-weight: 700; color: var(--gray-700); font-family: 'Lato', sans-serif;
            background: var(--white); white-space: normal; line-height: 1.2;
        }
        .service-btn i { font-size: 1.4rem; color: var(--brand-dark); flex-shrink: 0;}
        .service-btn:hover { border-color: var(--accent); transform: scale(1.02); box-shadow: var(--shadow-sm);}
        .service-btn.active { border-color: var(--accent); background: rgba(168, 134, 85, 0.05); color: var(--brand-dark); }
        .service-btn.active i { color: var(--accent); }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
        .contact-right input, .contact-right textarea { 
            width: 100%; padding: 16px; border-radius: var(--radius-global); border: 1px solid var(--gray-200); background: var(--gray-50); 
            font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--text-dark); transition: border-color 0.3s, background 0.3s;
        }
        .contact-right input:focus, .contact-right textarea:focus { border-color: var(--accent); background: var(--white); outline: none; }
        .contact-right textarea { resize: vertical; min-height: 120px; margin-bottom: 25px; }

        .btn-submit { 
            width: 100%; background: var(--brand); color: var(--white); padding: 20px; border-radius: var(--radius-global); 
            font-size: 1.1rem; font-weight: 700; font-family: 'Lato', sans-serif; border: 1px solid var(--brand); cursor: pointer; 
            display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; box-shadow: var(--shadow-brand);
            text-transform: uppercase; letter-spacing: 0.1em;
        }
        .btn-submit:hover { background: var(--brand-hover); transform: scale(1.02); box-shadow: 0 15px 30px rgba(44, 62, 48, 0.4); border-color: var(--accent); }

        /* ==========================================================================
           21. PREMIUM FOOTER
           ========================================================================== */
        .footer { background: var(--brand-darkest); color: var(--white); padding: 80px 0 30px 0; position: relative; overflow: hidden; border-top: 4px solid var(--accent); }
        .footer p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-col h4 { font-size: 1.4rem; margin-bottom: 25px; color: var(--white); position: relative; padding-bottom: 15px; font-family: 'Cormorant Garamond', serif; letter-spacing: 0.05em;}
        .footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 1px; background: var(--accent); border-radius: 0; }
        .footer-links { display: flex; flex-direction: column; gap: 15px; font-size: 1.05rem; }
        .footer-links a { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 12px; }
        .footer-links a:hover { color: var(--accent); transform: translateX(5px); }
        .footer-links i { font-size: 1.2rem; color: var(--accent); }
        .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }

        /* ==========================================================================
           22. FLOATING WIDGETS
           ========================================================================== */
        .widget-phone { position: fixed; bottom: 110px; right: 30px; height: 60px; width: 60px; background: var(--brand-dark); color: var(--white); border-radius: var(--radius-global); display: flex; align-items: center; box-shadow: 0 10px 25px rgba(0,0,0,0.4); z-index: var(--z-fixed); overflow: hidden; transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background var(--transition-normal); cursor: pointer; border: 1px solid rgba(168, 134, 85, 0.3); }
        .widget-phone .icon-wrapper { min-width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent); }
        .widget-phone .text-wrapper { white-space: nowrap; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1.1rem; padding-right: 20px; opacity: 0; transition: opacity 0.3s; color: var(--white); }
        .widget-phone:hover { width: 220px; background: var(--brand-darkest); border-color: var(--accent); }
        .widget-phone:hover .text-wrapper { opacity: 1; transition-delay: 0.15s; }

        .widget-chat { position: fixed; bottom: 30px; right: 30px; height: 60px; width: 60px; background: var(--brand); color: var(--white); border-radius: var(--radius-global); box-shadow: var(--shadow-brand); z-index: var(--z-fixed); overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid var(--brand-hover); }
        .widget-chat .icon-wrapper { position: absolute; bottom: 0; right: 0; min-width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; cursor: pointer; z-index: 2; color: var(--accent);}
        .chat-window { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); color: var(--text-dark); display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.2s; border-radius: var(--radius-global); overflow: hidden; border: 1px solid var(--gray-200); }
        .chat-header { background: var(--brand-darkest); color: var(--white); padding: 35px; font-family: 'Cormorant Garamond', serif; border-bottom: 2px solid var(--accent); }
        .chat-header h4 { color: var(--white); font-size: 2.2rem; margin-bottom: 8px; }
        .chat-header p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin: 0; font-family: 'Lato', sans-serif;}
        .chat-body { padding: 35px; flex-grow: 1; display: flex; flex-direction: column; gap: 25px; }
        .chat-body label { font-size: 1rem !important; margin-bottom: 8px; display: block; font-weight: 700; color: var(--brand-dark); font-family: 'Lato', sans-serif; text-transform: uppercase; letter-spacing: 0.05em;}
        .chat-body input, .chat-body textarea { font-size: 1rem !important; padding: 18px !important; border-radius: var(--radius-global) !important; background: var(--gray-50); border: 1px solid var(--gray-200); width: 100%; font-family: 'Lato', sans-serif; box-sizing: border-box; }
        .chat-body input:focus, .chat-body textarea:focus { border-color: var(--accent); outline: none; background: var(--white); }
        .chat-body textarea { height: 140px; resize: none; }
        .chat-body button { font-size: 1.1rem !important; padding: 20px !important; border-radius: var(--radius-global) !important; width: 100%; margin-top: auto; border: 1px solid var(--brand); font-family: 'Lato', sans-serif; font-weight: 700; cursor: pointer; color: var(--white); background: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; transition: 0.3s;}
        .chat-body button:hover { background: var(--brand-hover); border-color: var(--accent); }
        .widget-chat:hover { width: 450px; height: 600px; box-shadow: var(--shadow-xl); background: var(--white); border-radius: var(--radius-global); }
        .widget-chat:hover .icon-wrapper { display: none; }
        .widget-chat:hover .chat-window { opacity: 1; pointer-events: all; transition-delay: 0.15s; }

        /* ==========================================================================
           23. MEDIA QUERIES
           ========================================================================== */
        @media (max-width: 1200px) {
            .hero-text h1 { font-size: 3.5rem; }
            .about-grid, .service-grid, .contact-grid { gap: 40px; }
            .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .contact-left, .contact-right { padding: 40px 30px; }
        }
        @media (max-width: 992px) {
            .top-bar-inner { flex-direction: column; gap: 10px; text-align: center; }
            .top-bar .d-flex { flex-direction: column; gap: 5px; }
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-text h1 { font-size: 3.2rem; }
            .hero-subtitle { margin: 0 auto 40px auto; }
            .hero-features { justify-content: center; }
            .about-grid, .service-grid, .contact-grid { grid-template-columns: 1fr; }
            .service-grid:nth-child(even) .content-side { order: -1; }
            .process-grid-v1 { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
            .test-columns { height: auto; mask-image: none; -webkit-mask-image: none; flex-wrap: wrap;}
            .test-col-inner { animation: none !important; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .accordion-container { flex-direction: column; height: auto; gap: 15px;}
            .accordion-panel { height: 150px; }
            .accordion-panel:hover { height: 350px; }
            .accordion-panel .vertical-title { transform: translate(-50%, -50%) rotate(0deg); letter-spacing: 2px;}
            .accordion-panel:hover .vertical-title { transform: translate(-50%, -50%) rotate(0deg) scale(0.5); }
            .sticky-wrapper { flex-direction: column; } 
            .sticky-left { position: relative; top: 0; width: 100%; text-align: center; margin-bottom: 30px;} 
            .sticky-right { width: 100%; }
            .service-btn-grid { grid-template-columns: repeat(2, 1fr); }
            .v5-inner { grid-template-columns: repeat(3, 30vw); grid-auto-rows: 20vh; }
            .v2-carousel { width: 300px; height: 400px; }
        }
        @media (max-width: 768px) {
            :root { --section-padding-y: 120px; }
            .nav-links, .nav-cta { display: none; }
            .mobile-menu-btn { display: block; }
            .trust-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; gap: 40px; }
            .form-row { grid-template-columns: 1fr; gap: 15px; margin-bottom: 15px;}
            .contact-left, .contact-right { padding: 30px 20px; }
            .v2-header { top: 10%; }
            .v5-header .section-title { font-size: 2.5rem; }
            .lb-img-container { width: 95vw; height: 80vh; }
            .v5-inner { grid-template-columns: repeat(3, 30vw); grid-auto-rows: 15vh; }
        }
        @media (max-width: 576px) {
            .hero-text h1 { font-size: 2.5rem; }
            .process-grid-v1 { grid-template-columns: 1fr; }
            .form-card { padding: 25px 20px; }
            .service-select-grid { grid-template-columns: 1fr; }
            .widget-chat:hover { width: calc(100vw - 40px); height: calc(100vh - 40px); right: 20px; bottom: 20px; }
            .chat-window { width: 100%; }
            .service-btn-grid { grid-template-columns: 1fr; }
            .v2-carousel { width: 250px; height: 350px; }
            .lb-nav { font-size: 2rem; padding: 10px; }
            .lb-close { top: 15px; right: 15px; font-size: 2rem; }
        }
    