       /* --- IPARI / B2B DESIGN SYSTEM --- */
        
        :root {
            --primary: #0052cc;
            /* Mérnöki kék */
            --primary-hover: #0041a3;
            --dark: #0f172a;
            /* Mély pala/fekete */
            --light: #f8fafc;
            /* Világos háttér */
            --accent: #f59e0b;
            /* Ipari sárga */
            --text-main: #334155;
            /* Jól olvasható sötétszürke */
            --text-muted: #64748b;
            /* Másodlagos szövegszín */
            --card-bg: #ffffff;
            --radius: 8px;
            --transition: all 0.25s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--text-main);
            line-height: 1.7;
            cursor: default;
        }
        
        a,
        button,
        .chip-btn,
        .btn,
        .cta-nav,
        .menu-toggle {
            cursor: pointer;
        }
        
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* --- FIX FEJLÉC --- */
        
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(72, 103, 128, 0.70);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            height: 100%;
            text-decoration: none;
	    filter: drop-shadow(0px 0px 30px rgba(255, 255, 255, 0.3));
        }
        
        .logo img {
            height: 45px;
            width: auto;
            display: block;
        }
        
        .nav-menu ul {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 6px;
        }
        
        .nav-menu a {
            font-size: 17px;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
            color: #ffffff;
            text-decoration: none;
            padding: 14px 18px;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
        }
        /* Kiemelt gomb a menüben */
        
        .nav-menu .cta-nav {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            margin-left: 10px;
        }
        
        .nav-menu .cta-nav:hover {
            background: rgba(255, 255, 255, 0.20);
            color: #ffffff;
        }
        /* Mobil hamburger gomb - a kiemelt gomb színére állítva */
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 40px;
            height: 36px;
            background: #ccff00;
            /* Megegyezik a cta-nav színével */
            border: none;
            cursor: pointer;
            border-radius: var(--radius);
            padding: 10px;
            /* Belvilág, hogy a csíkok szépen mutassanak */
            transition: var(--transition);
        }
        
        .menu-toggle span {
            width: 100%;
            height: 2.5px;
            background-color: #0f172a;
            /* Sötét csíkok a citromsárga gombon */
            border-radius: 2px;
            transition: var(--transition);
        }
        /* Hamburger gomb interakciók */
        
        .menu-toggle:hover {
            background: #ffffff;
        }
        
        .menu-toggle:hover span {
            background-color: #486780;
        }
        /* --- HERO SZEKCIÓ --- */
        
        .hero {
            padding: 180px 0 100px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(0, 82, 204, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }
        
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #f8fafc;
            font-size: 13px;
            font-weight: 500;
            border-radius: 30px;
            margin-bottom: 24px;
        }
        
        .badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }
        
        .hero p {
            font-size: 1.15rem;
            color: #cbd5e1;
            max-width: 650px;
            margin-bottom: 36px;
        }
        
        .hero-image-box img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        /* --- GOMBOK --- */
        
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
        }
        
        .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }
        /* --- ALAP SZEKCIÓ BEÁLLÍTÁSOK --- */
        
        section {
            padding: 90px 0;
        }
        
        .section-header {
            max-width: 900px;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        
        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            text-align: justify;
        }
        /* --- GRID RENDSZEREK --- */
        
        .main-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        
        .activity-card {
            background: var(--card-bg);
            padding: 32px;
            border-radius: var(--radius);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }
        
        .activity-card:hover {
            transform: translateY(-4px);
            background-color: #d1d3d7;
            box-shadow: 0 12px 20px rgba(15, 23, 42, 0.04);
            border-color: var(--primary);
        }
        
        .activity-card .num {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 16px;
            display: block;
        }
        
        .activity-card h3 {
            font-size: 18px;
            color: var(--dark);
            font-weight: 700;
        }
        
        .bg-white {
            background-color: #ffffff;
        }
        
        .avz-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: flex-start;
        }
        /* --- DINAMIKUS TÁBLÁZAT ÉS TABS RENDSZER --- */
        
        .fesztav-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
            margin-bottom: 35px;
        }
        
        .chip-btn {
            padding: 12px 24px;
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            font-weight: 600;
            color: var(--text-main);
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .chip-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(0, 82, 204, 0.02);
        }
        
        .chip-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
        }
        
        .tab-content {
            display: none;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
            animation: fadeIn 0.4s ease-in-out;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .tab-intro-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--text-main);
            line-height: 1.6;
        }
        
        .sub-title-bar {
            background: var(--dark);
            color: white;
            padding: 8px 20px;
            font-weight: 700;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            border-radius: 4px;
            margin-bottom: 20px;
            margin-top: 10px;
        }
        
        .sub-title-bar.orange {
            background: #ea580c;
        }
        
        .jaratos-table {
            width: 100%;
            max-width: 600px;
            border-collapse: collapse;
            margin-bottom: 40px;
        }
        
        .jaratos-table td {
            padding: 5px 20px;
            border: 1px solid #cbd5e1;
            font-size: 15px;
        }
        
        .jaratos-table td:first-child {
            background: #f8fafc;
            font-weight: 600;
            color: var(--dark);
            width: 50%;
        }
        
        .jaratos-table td:last-child {
            font-weight: 500;
        }
        
        .family-code {
            font-style: italic;
            color: var(--text-muted);
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            margin-bottom: 40px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
            font-size: 14px;
            min-width: 650px;
        }
        
        .price-table th {
            background: #f1f5f9;
            color: var(--dark);
            font-weight: 700;
            padding: 14px;
            border-bottom: 2px solid #cbd5e1;
            border-right: 1px solid #cbd5e1;
        }
        
        .price-table td {
            padding: 5px 14px;
            border-bottom: 1px solid #e2e8f0;
            border-right: 1px solid #e2e8f0;
            color: var(--text-main);
        }
        
        .price-table tr:nth-child(even) {
            background: #f8fafc;
        }
        
        .price-table tr:hover {
            background: linear-gradient( 90deg, rgba(0, 82, 204, 0.08) 0%, rgba(0, 82, 204, 0.30) 100%);
        }
        
        .price-table td.price-bold {
            font-weight: 700;
            color: var(--dark);
            text-align: right;
            padding-right: 25px;
        }
        
        .price-includes-list {
            list-style: none;
            margin-bottom: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 12px;
        }
        
        .price-includes-list li {
            position: relative;
            padding-left: 28px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
        }
        
        .price-includes-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 16px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='%230052cc'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }
        
        .info-box-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 35px;
            margin-bottom: 35px;
        }
        
        .szeles {
            background: #f8fafc;
            border-top: 4px solid #cbd5e1;
            padding: 20px;
            border-radius: var(--radius);
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
        }
        
        .szeles b {
            color: var(--dark);
            font-size: 15px;
            display: block;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .vazlat-wrapper {
            margin-top: 40px;
            border-top: 1px solid #e2e8f0;
            padding-top: 40px;
        }
        
        .vazlatikep {
            max-width: 100%;
            height: auto;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            display: block;
        }
        
        .frissitve {
            font-size: 13px;
            color: var(--text-muted);
            font-style: italic;
            margin-top: 15px;
            text-align: right;
        }
        /* --- TANÚSÍTVÁNYOK --- */
        
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .cert-card {
            background: var(--card-bg);
            padding: 40px 32px;
            border-radius: var(--radius);
            border-top: 4px solid var(--primary);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        }
        
        .cert-card h3 {
            font-size: 19px;
            color: var(--dark);
            margin-bottom: 14px;
        }
        
        .cert-card p {
            font-size: 14px;
            color: var(--text-muted);
        }
        /* --- MŰSZAKI TÁMOGATÁS --- */
        
        .support-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .support-box {
            background: #ffffff;
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid #e2e8f0;
        }
        
        .support-box h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .custom-list {
            list-style: none;
        }
        
        .custom-list li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 12px;
            font-size: 15px;
        }
        
        .custom-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .note-box {
            background: #fffbeb;
            border: 1px solid #fef3c7;
            padding: 20px;
            border-radius: var(--radius);
            margin-top: 30px;
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .note-box p {
            font-size: 14px;
            color: #b45309;
        }
        /* --- MODERN FAT FOOTER --- */
        /* --- FULL WIDTH IMAGE FOOTER --- */
        
        .site-footer {
            position: relative;
            padding: 90px 0 30px;
            overflow: hidden;
            background-image: url('https://acelvaz.hu/img/footer_bg.jpg');
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
        /* Sötét overlay a kép fölött */
        
        .site-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(11, 15, 25, 0.82);
            z-index: 1;
        }
        /* Tartalom az overlay fölött */
        
        .site-footer .container {
            position: relative;
            z-index: 2;
        }
        /* Footer rács */
        
        .footer-top-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding-bottom: 50px;
        }
        
        .footer-map-column {
            grid-column: 1 / -1;
        }
        /* Glassmorphism panelek */
        
        .footer-col {
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.3s ease;
        }
        
        .footer-col:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .footer-col h3,
        .footer-col h4 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .footer-col .footer-about-logo {
            display: block;
            margin-bottom: 20px;
        }
        
        .footer-col .footer-about-logo img {
            height: 50px;
            width: auto;
            display: block;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
        }
        
        .footer-col p {
            color: #f1f5f9;
            line-height: 1.7;
            font-size: 14px;
        }
        
        .footer-contacts {
            list-style: none;
        }
        
        .footer-contacts li {
            color: #f1f5f9;
            font-size: 14px;
            margin-bottom: 14px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }
        
        .footer-contacts span.icon {
            color: #ccff00;
            font-weight: bold;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #f1f5f9;
            text-decoration: none;
            transition: 0.3s;
        }
        
        .footer-links a:hover {
            color: #ccff00;
            padding-left: 6px;
        }
        
        .footer-map-container {
            width: 100%;
            height: 180px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .footer-map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .footer-map-column .footer-map-container {
            height: 550px;
        }
        
        .copyright {
            position: relative;
            z-index: 2;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
        }
        /* --- RESPONSIVE MEDIA QUERIES --- */
        
        @media (max-width: 1200px) {
            .footer-top-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 992px) {
            .hero-grid,
            .avz-layout,
            .support-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-image-box img {
                height: 320px;
            }
            .cert-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .info-box-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 84px;
                left: 0;
                width: 100%;
                background: #486780;
                height: 0;
                overflow: hidden;
                transition: height 0.35s ease-in-out;
            }
            .nav-menu.active {
                height: 420px;
            }
            .nav-menu ul {
                flex-direction: column;
                padding: 24px;
                align-items: stretch;
                gap: 8px;
            }
            .nav-menu a {
                display: block;
                padding: 12px;
            }
            .nav-menu .cta-nav {
                margin-left: 0;
                text-align: center;
                margin-top: 10px;
            }
            /* Hamburger animációk nyitott állapotban */
            .menu-toggle.active {
                background: #ffffff;
            }
            .menu-toggle.active span {
                background-color: #486780;
            }
            .menu-toggle.active span:nth-child(1) {
                transform: translateY(6.5px) rotate(45deg);
            }
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-6.5px) rotate(-45deg);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .footer-top-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .tab-content {
                padding: 20px;
            }
        }
        
        #rolunk {
            background-image: linear-gradient(rgba(11, 15, 25, 0.70), rgba(11, 15, 25, 0.70)), url('https://acelvaz.hu/img/rolunk-hatter.jpg');
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: #ffffff;
        }
        
        #minosegpolitika {
            background-image: linear-gradient(rgba(11, 15, 25, 0.80), rgba(11, 15, 25, 0.80)), url('https://acelvaz.hu/img/tanusitvanyok-hatter.jpg');
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: #ffffff;
        }
        
        #rolunk h2,
        #rolunk h3,
        #rolunk p,
        #rolunk .num,
        #minosegpolitika h2,
        #minosegpolitika h3,
        #minosegpolitika p {
            color: #ffffff;
        }
        
        #rolunk .activity-card,
        #minosegpolitika .cert-card {
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        #rolunk .activity-card h3,
        #rolunk .activity-card p,
        #minosegpolitika .cert-card h3,
        #minosegpolitika .cert-card p {
            color: #ffffff;
        }
        
        .footer-contact-form {
            max-width: 900px;
            margin: 30px auto 0;
            padding: 40px;
        }
        
        .footer-contact-form h3 {
            color: #ffffff;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .footer-contact-form p {
            color: rgba(255, 255, 255, 0.85);
            text-align: center;
            margin-bottom: 30px;
        }
        
        .footer-contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .footer-contact-form label {
            display: block;
            color: #ffffff;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .footer-contact-form input,
        .footer-contact-form textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            box-sizing: border-box;
            transition: .25s ease;
        }
        
        .footer-contact-form input:focus,
        .footer-contact-form textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.12);
        }
        
        .footer-contact-form textarea {
            resize: vertical;
        }
        
        .gdpr-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 20px 0;
        }
        
        .gdpr-row input {
            width: auto;
            margin-top: 3px;
        }
        
        .gdpr-row label {
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .gdpr-row a {
            color: #ffffff;
            text-decoration: underline;
        }
        
        .footer-contact-form button {
            width: 100%;
            padding: 16px;
            background: #486780;
            color: #ffffff;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: .25s ease;
        }
        
        .footer-contact-form button:hover {
            background: #5f8099;
        }
        
        .success {
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.30);
            color: #d1fae5;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .error {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.30);
            color: #fecaca;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        #successMessage,
        #errorMessage {
            text-align: center;
            border-radius: 4px;
            font-size: 15px;
        }
        
        #successMessage strong,
        #errorMessage strong {
            display: block;
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .gallery-showcase {
            padding: 90px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
        }
        
        .gallery-showcase .section-header h2 {
            color: #fff;
        }
        
        .gallery-showcase .section-header p {
            color: rgba(255, 255, 255, .8);
        }
        
        .gallery-showcase .chip-btn {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            color: #fff;
        }
        
        .gallery-showcase .chip-btn:hover {
            background: rgba(255, 255, 255, .12);
        }
        
        .gallery-showcase .chip-btn.active {
            background: var(--primary)!important;
            border-color: var(--primary)!important;
            color: #fff !important;
        }
        
        .gallery-tab {
            display: none;
        }
        
        .gallery-tab.active {
            display: block;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 32px;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, .1);
            transition: var(--transition);
        }
        
        .gallery-item:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }
        
        .gallery-item img {
            display: block;
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: .4s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        @media(max-width:900px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media(max-width:640px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .gallery-item img {
                height: 220px;
            }
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 32px;
        }
        
        .gallery-item img {
            display: block;
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: .4s;
        }
        
        @media(max-width:900px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media(max-width:640px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .gallery-item img {
                height: 220px;
            }
        }
