   /* --- Desktop Navigation --- */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: var(--text-main);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--cyan);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--cyan);
            transition: width 0.3s;
        }

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

        .header-cta {
            padding: 12px 30px;
            background-color: var(--key);
            color: var(--white);
            font-weight: 700;
            border-radius: 4px;
            font-size: 0.85rem;
            border-bottom: 3px solid var(--magenta);
        }

        .header-cta:hover {
            background-color: var(--magenta);
            border-bottom-color: var(--key);
        }

        /* --- Hamburger Menu (Mobile) --- */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
            z-index: 1001;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            background-color: var(--key);
        }

  /* --- Footer --- */
        footer {
            background-color: var(--key);
            color: var(--white);
            padding: 80px 5% 0;
            font-size: 0.9rem;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo img {
            max-height: 50px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }

        .footer-col h4 {
            color: var(--cyan);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 12px;
        }

        .footer-col a {
            color: #aaa;
        }

        .footer-col a:hover {
            color: var(--yellow);
        }

        .location-block {
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        .copyright {
            text-align: center;
            color: #777;
            padding: 20px;
            background: #111;
            margin: 0 -5.5%;
        }
        
        .cmyk-dots {
            display: flex;
            gap: 5px;
            justify-content: center;
            margin-bottom: 10px;
        }
        .dot { width: 8px; height: 8px; border-radius: 50%; }


  @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-menu {
                position: fixed; left: -100%; top: 94px; gap: 0;
                flex-direction: column; background-color: var(--white);
                width: 100%; text-align: center; transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1); padding-bottom: 30px;
                border-top: 1px solid #eee;
            }
            .nav-menu.active { left: 0; }
            .nav-links { flex-direction: column; width: 100%; gap: 0; }
            .nav-links a { display: block; padding: 20px; border-bottom: 1px solid #f0f0f0; width: 100%; }
            .header-cta { margin-top: 20px; display: inline-block; width: 80%; }
	  
	  
}