   /* --- Desktop Navigation --- */


a{
	text-decoration: none;
}
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

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

        .nav-item {
            position: relative;
        }

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

        .dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dropdown-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 0;
            padding: 0;
            cursor: pointer;
        }

        .dropdown-caret {
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid var(--text-main);
            transition: transform 0.2s ease, border-top-color 0.2s ease;
        }

        .nav-item-dropdown:hover .dropdown-caret,
        .nav-item-dropdown:focus-within .dropdown-caret,
        .nav-item-dropdown.open .dropdown-caret {
            border-top-color: var(--cyan);
        }

        .nav-item-dropdown.open .dropdown-caret {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 14px);
            left: 0;
            min-width: 220px;
            list-style: none;
            margin: 0;
            padding: 10px 0;
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 8px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.12);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
            z-index: 1002;
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 18px;
            white-space: nowrap;
        }

        .dropdown-menu a::after {
            display: none;
        }

        .nav-item-dropdown:hover .dropdown-menu,
        .nav-item-dropdown:focus-within .dropdown-menu,
        .nav-item-dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .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: white;
            font-weight: 700;
            border-radius: 4px;
            font-size: 0.85rem;
            border-bottom: 3px solid var(--magenta);
			text-decoration: none !important;
        }

        .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%; }


  /* --- Header --- */
        header {
            background-color: var(--white);
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .brand img {
            max-height: 60px;
            width: auto;
            display: block;
        }



  @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-item { width: 100%; }
            .dropdown-trigger { width: 100%; gap: 0; }
            .dropdown-trigger > a { flex: 1; }
            .dropdown-toggle {
                padding: 20px;
                border-bottom: 1px solid #f0f0f0;
            }
            .dropdown-menu {
                position: static;
                min-width: 0;
                padding: 0;
                border: 0;
                border-radius: 0;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: none;
                transition: max-height 0.25s ease;
            }
            .nav-item-dropdown.open .dropdown-menu {
                max-height: 240px;
            }
            .dropdown-menu a {
                padding: 16px 32px;
                background: #fafafa;
                border-bottom: 1px solid #f0f0f0;
            }
            .nav-links a { display: block; padding: 20px; border-bottom: 1px solid #f0f0f0; width: 100%; }
            .header-cta { margin-top: 20px; display: inline-block; width: 80%; }
	  
	  
}
