﻿        /* ========================= THEME ========================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #004849;
            --primary-light: #F9F8F6;
            --accent-gold: #C5A065;
            --text-body: #4a4a4a;

            --font-head: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;

            --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            --container-padding: 6vw;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-body);
            background-color: var(--primary-light);
            overflow-x: hidden;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            width: 100%;
            height: auto;
            display: block;
        }

        h1,
        h2,
        h3 {
            font-family: var(--font-head);
            color: var(--primary-dark);
            font-weight: 400;
            font-style: italic;
        }

        p {
            font-family: var(--font-body);
        }

        .btn-luxury {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.15rem 2.5rem;
            min-width: 280px;
            border: 1px solid var(--primary-dark);
            color: var(--primary-dark);
            text-transform: uppercase;
            font-family: var(--font-body);
            font-size: 0.8rem;
            letter-spacing: 2px;
            font-weight: 600;
            background: transparent;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center;
        }

        .btn-luxury.small {
            min-width: 200px;
            padding: 0.9rem 1.8rem;
            font-size: 0.7rem;
        }

        .btn-luxury.glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
        }

        .btn-luxury.glass:hover {
            color: var(--primary-dark);
            border-color: #fff;
        }

        .btn-luxury.glass::before {
            background: #fff;
        }

        .btn-luxury::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            transition: var(--transition);
            z-index: -1;
        }

        .btn-luxury:hover {
            color: #fff;
            box-shadow: 0 10px 30px rgba(0, 72, 73, 0.2);
            transform: translateY(-3px);
        }

        .btn-luxury:hover::before {
            left: 0;
        }

        .btn-luxury.light {
            border-color: #fff;
            color: #fff;
        }

        .btn-luxury.light::before {
            background: #fff;
        }

        .btn-luxury.light:hover {
            color: var(--primary-dark);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .btn-luxury.gold {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            color: #fff;
        }

        .btn-luxury.gold::before {
            background: #fff;
        }

        .btn-luxury.gold:hover {
            color: var(--primary-dark);
            box-shadow: 0 10px 30px rgba(197, 160, 101, 0.3);
        }

        /* Shine Effect */
        .btn-luxury::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20%;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(30deg);
            transition: none;
            opacity: 0;
            pointer-events: none;
        }

        .btn-luxury:hover::after {
            animation: shine 0.8s ease;
        }

        @keyframes shine {
            0% {
                left: -60%;
                opacity: 0;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                left: 130%;
                opacity: 0;
            }
        }

        /* --- BROCHURE FORM MODAL --- */
        .brochure-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .brochure-overlay.active {
            display: flex;
            opacity: 1;
        }

        .brochure-container {
            background: #fff;
            padding: 3rem;
            width: 90%;
            max-width: 520px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .brochure-container h2 {
            margin-bottom: 2rem;
            font-style: italic;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            font-family: var(--font-body);
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent-gold);
        }

        #brochure-success {
            display: none;
            text-align: center;
        }

        #brochure-success p {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 2rem;
        }

        /* --- NAVIGATION --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2.5rem var(--container-padding);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
            color: #fff;
            transition: background 0.4s ease, padding 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            color: var(--primary-dark);
            padding: 1rem var(--container-padding);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-family: var(--font-head);
            font-size: 2rem;
            font-weight: 600;
            cursor: pointer;
            z-index: 1001;
            transition: var(--transition);
        }

        nav ul {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        nav a {
            font-family: var(--font-body);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background: var(--accent-gold);
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* --- DROPDOWN --- */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 850px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            z-index: 1100;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            padding: 2.5rem;
            border-top: 3px solid var(--accent-gold);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            gap: 2.5rem;
            pointer-events: none;
        }

        @media (min-width: 1025px) {
            .dropdown:hover .dropdown-content {
                display: flex;
                opacity: 1;
                transform: translateX(-50%) translateY(0);
                pointer-events: auto;
            }
        }

        .dropdown-column {
            flex: 1;
            min-width: 240px;
        }

        .dropdown-column h4 {
            color: var(--primary-dark);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid #eee;
            font-family: var(--font-body);
        }

        .dropdown-column a {
            color: #666;
            padding: 8px 0;
            text-decoration: none;
            display: block;
            font-size: 0.8rem;
            font-weight: 400;
            transition: all 0.3s ease;
            border-bottom: none !important;
            text-transform: none !important;
            letter-spacing: 0 !important;
        }

        .dropdown-column a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
            background: transparent !important;
            padding-left: 0 !important;
        }

        /* Adjustments for mobile */
        @media (max-width: 1024px) {
            .dropdown-content {
                min-width: 100%;
                left: 0;
                transform: none;
                flex-direction: column;
                padding: 1.5rem;
                gap: 1.5rem;
                position: static;
                box-shadow: none;
                border: none;
                display: none;
                opacity: 1;
            }

            .dropdown.active .dropdown-content {
                display: flex;
                text-align: center;
                align-items: center;
            }

            .dropdown-column {
                min-width: 100%;
                text-align: center;
            }

            .dropdown-column h4 {
                cursor: pointer;
                text-align: center;
                border-bottom: 1px solid #eee;
                margin: 0.5rem 0 0;
                padding: 1rem 0;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            .dropdown-column a {
                display: none !important;
            }

            .dropdown-column.active a {
                display: block !important;
            }
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background: currentColor;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* --- MOBILE NAV CTA --- */
        .mobile-nav-cta {
            display: none;
            background: var(--accent-gold);
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 1005;
            transition: var(--transition);
            white-space: nowrap;
        }

        header.scrolled .mobile-nav-cta {
            background: var(--primary-dark);
        }

        @media (max-width: 1024px) {
            .mobile-nav-cta {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: auto;
                margin-right: 20px;
            }

            nav {
                display: contents;
            }
        }

        /* --- WHATSAPP FLOATING BUTTON --- */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #25d366;
            color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            display: none;
            align-items: center;
            gap: 10px;
            z-index: 1000;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            transform: scale(1.05);
            background: #20ba5a;
        }

        @media (max-width: 1024px) {
            .whatsapp-float {
                display: flex;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: #fff !important;
                padding: 100px 30px;
                gap: 2rem;
                z-index: 1000;
                color: var(--primary-dark) !important;
                overflow-y: auto;
                align-items: center;
                text-align: center;
            }

            nav ul.active {
                display: flex;
            }

            nav a {
                font-size: 1.2rem;
            }

            .dropdown-content {
                position: static;
                min-width: 100%;
                transform: none;
                opacity: 1;
                pointer-events: auto;
                background: transparent;
                box-shadow: none;
                border: none;
                padding: 10px 0 10px 20px;
            }

            .dropdown-column h4 {
                font-size: 0.8rem;
                margin-top: 1rem;
            }
        }

        /* --- HERO SECTION --- */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: center;
            color: #fff;
            background: var(--primary-dark);
            padding: 60px 0;
        }

        .hero-bg,
        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1.5s ease-out forwards 0.5s;
            max-width: 1400px;
            padding: 0 var(--container-padding);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            text-align: left;
        }

        .hero-text {
            flex: 1;
            max-width: 700px;
        }

        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #fff;
            letter-spacing: 1px;
            font-weight: 400;
            font-style: italic;
        }

        .hero h1 span {
            display: block;
            font-family: var(--font-body);
            font-style: normal;
            font-size: 0.9rem;
            letter-spacing: 6px;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--accent-gold);
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 650px;
            margin-left: 0;
            margin-right: auto;
            font-weight: 300;
        }

        /* --- INTRO SECTION --- */
        .intro-section {
            padding: 4rem var(--container-padding);
            text-align: center;
            background: #fff;
        }

        .intro-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .intro-container h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .intro-container p {
            font-size: 1.1rem;
            color: #666;
            line-height: 2;
            font-weight: 300;
            margin-bottom: 0;
        }

        .intro-divider {
            width: 1px;
            height: 60px;
            background: var(--accent-gold);
            margin: 0 auto 2rem auto;
        }

        /* --- SECTION PADDING + HEADERS --- */
        .section-padding {
            padding: 4rem var(--container-padding);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 3rem;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .section-header .divider {
            width: 60px;
            height: 1px;
            background: var(--accent-gold);
            margin: 0 auto;
        }

        /* --- PRODUCT GRID --- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 72, 73, 0.15);
        }

        .product-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
        }

        .product-card h3 {
            font-size: 0.95rem;
            margin: 15px 15px 8px 15px;
            color: var(--primary-dark);
            font-weight: 600;
            line-height: 1.3;
        }

        .product-card p {
            font-size: 0.75rem;
            color: #666;
            margin: 0 15px 15px 15px;
            line-height: 1.5;
            flex-grow: 1;
        }

        .product-card .btn-luxury {
            margin: 0 15px 15px 15px;
            padding: 10px 16px;
            font-size: 0.75rem;
            min-width: unset;
            width: calc(100% - 30px);
        }

        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- SOLUTION ICON GRID --- */
        .solution-icon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 20px;
        }

        .solution-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            padding: 35px 25px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(0, 72, 73, 0.08);
            text-decoration: none;
        }

        .solution-icon-item:hover {
            background: #fff;
            box-shadow: 0 15px 45px rgba(0, 72, 73, 0.12);
            transform: translateY(-8px);
            border-color: rgba(197, 160, 101, 0.2);
        }

        .solution-icon-item svg {
            width: 70px;
            height: 70px;
            fill: var(--primary-dark);
            stroke: var(--primary-dark);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 2px 8px rgba(0, 72, 73, 0.1));
        }

        .solution-icon-item:hover svg {
            fill: var(--accent-gold);
            stroke: var(--accent-gold);
            transform: scale(1.15);
            filter: drop-shadow(0 4px 12px rgba(197, 160, 101, 0.3));
        }

        .solution-icon-item span {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            color: var(--primary-dark);
            font-family: var(--font-body);
            transition: color 0.3s ease;
        }

        .solution-icon-item:hover span {
            color: var(--accent-gold);
        }

        @media (max-width: 768px) {
            .solution-icon-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 30px;
            }

            .solution-icon-item {
                padding: 25px 20px;
            }

            .solution-icon-item svg {
                width: 55px;
                height: 55px;
            }
        }

        /* --- VIDEO GRID SECTION --- */
        .video-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .video-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .video-card.hidden-video {
            display: none !important;
        }

        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 72, 73, 0.15);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-info {
            padding: 20px;
        }

        .video-info .kicker {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .video-info h3 {
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            font-style: italic;
            color: var(--primary-dark);
            line-height: 1.3;
        }

        .video-info p {
            color: #666;
            line-height: 1.6;
            font-size: 0.8rem;
        }

        @media (max-width: 1024px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .video-info {
                padding: 25px;
            }

            .video-info h3 {
                font-size: 1.5rem;
            }

            .video-info p {
                font-size: 0.95rem;
            }
        }

        /* --- LOGO CAROUSEL --- */
        .logo-carousel-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 2rem 0;
            position: relative;
        }

        .logo-carousel-wrapper::before,
        .logo-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .logo-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #f8f8f8, transparent);
        }

        .logo-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #f8f8f8, transparent);
        }

        .logo-carousel {
            display: flex;
            gap: 60px;
            animation: scroll 30s linear infinite;
            width: fit-content;
        }

        .logo-carousel:hover {
            animation-play-state: paused;
        }

        .logo-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 30px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            min-width: 200px;
            height: 100px;
        }

        .logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 72, 73, 0.12);
        }

        .logo-item img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .logo-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .logo-carousel {
                gap: 40px;
                animation: scroll 20s linear infinite;
            }

            .logo-item {
                min-width: 150px;
                height: 80px;
                padding: 15px 20px;
            }

            .logo-item img {
                max-height: 50px;
            }
        }

        /* --- SCHEDULE A VISIT SECTION --- */
        .visit-container-centered {
            max-width: 900px;
            margin: 3rem auto 0 auto;
        }

        .experience-center-info-centered {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #005a5c 100%);
            padding: 50px;
            border-radius: 20px;
            color: #fff;
            text-align: center;
        }

        .experience-center-info-centered h3 {
            font-size: 2.2rem;
            margin-bottom: 3rem;
            font-style: italic;
            color: var(--accent-gold);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
            text-align: left;
        }

        .info-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .info-item svg {
            flex-shrink: 0;
            color: var(--accent-gold);
            margin-top: 3px;
        }

        .info-item strong {
            display: block;
            color: var(--accent-gold);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .info-item p {
            color: #e0e0e0;
            line-height: 1.6;
            margin: 0;
        }

        .action-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .action-buttons .btn-luxury {
            min-width: 250px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* --- APPOINTMENT MODAL --- */
        .appointment-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .appointment-modal-content {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            line-height: 1;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--primary-dark);
        }

        .appointment-modal-content h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-style: italic;
            color: var(--primary-dark);
            padding-right: 30px;
        }

        .appointment-form .form-group {
            margin-bottom: 20px;
        }

        .appointment-form label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .appointment-form input,
        .appointment-form select,
        .appointment-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: var(--font-body);
            transition: all 0.3s ease;
            background: #fff;
        }

        .appointment-form input:focus,
        .appointment-form select:focus,
        .appointment-form textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.1);
        }

        .appointment-form textarea {
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 968px) {
            .info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .action-buttons {
                flex-direction: column;
            }

            .action-buttons .btn-luxury {
                width: 100%;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .experience-center-info-centered {
                padding: 30px;
            }

            .appointment-modal-content {
                padding: 30px;
            }
        }

        /* --- PROCESS SECTION (Legacy) --- */
        .process-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .process-step {
            background: #fff;
            border: 1px solid #eee;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .process-step .kicker {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            font-style: italic;
        }

        .process-step p {
            color: #666;
            font-weight: 300;
        }

        /* --- VIDEO SHOWCASE SECTION --- */
        .social-gallery {
            background: #fdfdfd;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 3rem auto 0;
            padding: 0 20px;
        }

        .video-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: var(--transition);
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 177.78%;
            /* 9:16 Aspect Ratio */
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-desc {
            padding: 1.5rem;
            text-align: center;
            font-size: 0.95rem;
            color: #555;
            font-family: var(--font-body);
            font-weight: 400;
            background: #fff;
            width: 100%;
            border-top: 1px solid #eee;
        }

        @media (max-width: 992px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .video-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
        }

        /* --- FEATURED PRODUCTS CAROUSEL --- */
        .featured-section {
            padding: 5rem var(--container-padding);
            background: #fff;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .carousel-track-container {
            overflow: hidden;
            border-radius: 18px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            flex-direction: column;
        }

        .carousel-image {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        .carousel-info-box {
            background: #fff;
            padding: 3rem;
            text-align: center;
            border-top: 1px solid #f5f5f5;
        }

        .carousel-info-box h3 {
            font-size: 2rem;
            margin-bottom: 1.2rem;
            color: var(--primary-dark);
            font-style: italic;
        }

        .carousel-info-box p {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            font-weight: 300;
        }

        /* Carousel Controls */
        .carousel-button {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            background: #fff;
            color: var(--primary-dark);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            font-size: 1.2rem;
        }

        .carousel-button:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-button.prev {
            left: -28px;
        }

        .carousel-button.next {
            right: -28px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 2.5rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e0e0e0;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
        }

        .carousel-dot.active {
            background: var(--accent-gold);
            transform: scale(1.5);
            width: 20px;
            border-radius: 10px;
        }

        @media (max-width: 1100px) {
            .carousel-button {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }

            .carousel-button.prev {
                left: 15px;
            }

            .carousel-button.next {
                right: 15px;
            }

            .carousel-info-box {
                padding: 2rem 1.5rem;
            }

            .carousel-info-box h3 {
                font-size: 1.6rem;
            }
        }

        /* --- STATS SECTION --- */
        .stats-section {
            padding: 60px var(--container-padding);
            background: #fff;
            text-align: center;
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            gap: 40px;
        }

        .stat-item {
            flex: 1;
            min-width: 180px;
            padding: 20px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 15px;
            font-family: var(--font-body);
        }

        .stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #555;
            font-weight: 600;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .stat-number {
                font-size: 2.8rem;
            }

            .stats-container {
                gap: 20px;
            }

            .stat-item {
                min-width: 140px;
                padding: 10px;
            }
        }

        footer {
            background: var(--primary-dark);
            color: #fff;
            padding: 4rem var(--container-padding);
            font-size: 0.9rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 4rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 3rem;
            margin-bottom: 2rem;
        }

        .footer-col {
            flex: 1;
            min-width: 200px;
        }

        .footer-logo {
            font-family: var(--font-head);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #fff;
            opacity: 0.9;
        }

        .footer h4 {
            color: var(--accent-gold) !important;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            letter-spacing: 2px;
            font-family: var(--font-head);
        }

        .footer ul li {
            margin-bottom: 0.8rem;
            color: #999;
            cursor: pointer;
            transition: 0.3s;
            font-family: var(--font-body);
        }

        .footer ul li:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            transition: 0.3s;
        }

        .social-link:hover {
            background: #fff;
            color: var(--accent-gold);
        }

        .social-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* Hero form card */
        .quote-card {
            width: 100%;
            max-width: 480px;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 18px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
            text-align: left;
            flex-shrink: 0;
        }

        .quote-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.4rem;
            color: var(--primary-dark);
        }

        .quote-sub {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .quote-form {
            display: grid;
            gap: 1rem;
        }

        .field label {
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            color: #777;
            margin-bottom: 8px;
        }

        .field input,
        .field select {
            width: 100%;
            padding: 1rem;
            border: 1px solid #e2e2e2;
            background: #fafafa;
            outline: none;
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: border-color 0.3s;
            text-align: center;
        }

        .field input:focus,
        .field select:focus {
            border-color: var(--accent-gold);
            background: #fff;
        }

        .quote-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding-top: 1.1rem;
            padding-bottom: 1.1rem;
            border-radius: 18px;
        }

        .quote-btn .arrow {
            font-size: 1.1rem;
            transform: translateY(-1px);
        }

        /* Intl Tel Input styling */
        .iti {
            width: 100%;
        }

        .iti input {
            width: 100% !important;
            padding: 1rem !important;
            border: 1px solid #e2e2e2 !important;
            background: #fafafa !important;
            outline: none !important;
            font-family: var(--font-body) !important;
            font-size: 0.95rem !important;
            transition: border-color 0.3s !important;
            text-align: center !important;
        }

        .iti input:focus {
            border-color: var(--accent-gold) !important;
            background: #fff !important;
        }

        .iti__country-list {
            background: #333 !important;
            color: #fff !important;
            border: 1px solid #555 !important;
            width: 100% !important;
            left: 0 !important;
            right: 0 !important;
        }

        .iti__country {
            color: #fff !important;
            padding: 8px 12px !important;
        }

        .iti__country:hover {
            background: var(--accent-gold) !important;
            color: #000 !important;
        }

        .iti__flag-container {
            background: #fafafa !important;
            border-right: 1px solid #e2e2e2 !important;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            .product-card {
                width: 45%;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            header {
                padding: 1.5rem 5vw;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .intro-section {
                padding: 4rem 5vw;
            }

            .section-padding {
                padding: 4rem 5vw;
            }

            .product-grid {
                flex-direction: column;
                align-items: center;
            }

            .product-card {
                width: 100%;
                max-width: 400px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .hamburger {
                display: flex;
            }

            nav ul {
                display: none;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
                padding-top: 60px;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero h1,
            .hero p {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .quote-card {
                margin: 0 auto;
            }
        }

        /* --- ADDITIONAL SHUTTER PAGE STYLES --- */
        .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .intro-box {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 4rem;
            line-height: 2;
        }

        .feature-card {
            background: #fff;
            padding: 4rem;
            border-radius: 24px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
            margin-bottom: 4rem;
            transition: var(--transition);
            border: 1px solid rgba(0, 72, 73, 0.03);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 72, 73, 0.1);
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
        }

        .benefit-item svg {
            color: var(--accent-gold);
            flex-shrink: 0;
            margin-top: 5px;
        }

        .motor-types {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 3rem;
            text-align: center;
        }

        .motor-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .motor-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-weight: 700;
            border: 1px solid var(--accent-gold);
            transition: var(--transition);
        }

        .motor-item:hover .motor-circle {
            background: var(--accent-gold);
            color: #fff;
            transform: scale(1.1);
        }

        .automation-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 4rem;
        }

        .automation-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
            padding: 2.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: all 0.4s ease;
            backdrop-filter: blur(5px);
        }

        .automation-item:hover {
            background: #fff;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .automation-item:hover h4,
        .automation-item:hover p {
            color: var(--primary-dark) !important;
        }

        .automation-icon {
            width: 50px;
            height: 50px;
            background: rgba(197, 160, 101, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            flex-shrink: 0;
            transition: var(--transition);
        }

        .automation-item:hover .automation-icon {
            background: var(--primary-dark);
            color: #fff;
        }

        /* --- FAQ --- */
        .faq-section {
            background: #fdfdfd;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            background: #fff;
            border: 1px solid #eee;
        }

        .faq-question {
            padding: 1.8rem 2.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-head);
            font-size: 1.3rem;
            color: var(--primary-dark);
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--primary-light);
            color: var(--accent-gold);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            color: #666;
            padding: 0 2.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 1.8rem;
        }

        .plus-icon {
            width: 20px;
            height: 20px;
            position: relative;
            color: currentColor;
        }

        .plus-icon::before,
        .plus-icon::after {
            content: '';
            position: absolute;
            background: currentColor;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: var(--transition);
        }

        .plus-icon::before {
            width: 100%;
            height: 2px;
        }

        .plus-icon::after {
            width: 2px;
            height: 100%;
        }

        .faq-item.active .plus-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        /* --- CATEGORIES SECTION --- */
        .categories-container {
            margin-top: 4rem;
            position: relative;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .category-card {
            background: #fff;
            border-radius: 20px;
            border: 1px solid #eee;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            z-index: 10;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .category-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .category-card.active {
            border-color: var(--accent-gold);
            background: #fff;
        }

        .category-main-view {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
        }

        .category-card-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-bottom: 3px solid transparent;
            transition: var(--transition);
        }

        .category-card.active .category-card-img,
        .category-card:hover .category-card-img {
            border-bottom-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .category-info-box {
            padding: 1.5rem;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #fff;
        }

        .category-card h3 {
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        .view-details-hint {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-gold);
            font-weight: 700;
            margin-top: 1rem;
            transition: color 0.3s ease;
        }

        .category-card:hover .view-details-hint {
            color: var(--primary-dark);
        }

        /* Expansion Panel */
        .expansion-panel {
            grid-column: 1 / -1;
            display: none;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: #fdfdfd;
            margin-top: 25px;
            padding: 5rem 10%;
            border-top: 1px solid rgba(0, 72, 73, 0.05);
            border-bottom: 1px solid rgba(0, 72, 73, 0.05);
            animation: fadeIn 0.5s ease forwards;
            box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.02);
            z-index: 5;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .expansion-panel.active {
            display: block;
        }

        .sub-category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
            justify-items: center;
        }

        .sub-item {
            display: flex;
            flex-direction: column;
            text-align: center;
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #eee;
            transition: all 0.4s ease;
            cursor: pointer;
            width: 100%;
        }

        .sub-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--accent-gold);
        }

        .sub-item-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .sub-item:hover .sub-item-img {
            transform: scale(1.1);
        }

        .sub-item-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sub-item h4 {
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .sub-item:hover h4 {
            color: var(--accent-gold);
        }

        .sub-item p {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
            font-weight: 300;
        }

        /* --- IMAGE SLIDER MODAL --- */
        .slider-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9000;
            justify-content: center;
            align-items: center;
        }

        .slider-modal.active {
            display: flex;
        }

        .slider-container {
            width: 90%;
            max-width: 1000px;
            position: relative;
        }

        .slider-img {
            width: 100%;
            height: 70vh;
            object-fit: contain;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .slider-close {
            position: fixed;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 3.5rem;
            cursor: pointer;
            line-height: 1;
            z-index: 10000;
            transition: var(--transition);
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            opacity: 0.7;
        }

        .slider-close:hover {
            opacity: 1;
            transform: scale(1.1) rotate(90deg);
            color: var(--accent-gold);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            cursor: pointer;
            border-radius: 50%;
            user-select: none;
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            z-index: 10000;
        }

        .slider-nav:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 0 30px rgba(197, 160, 101, 0.4);
        }

        .slider-nav svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .slider-prev:hover svg {
            transform: translateX(-3px);
        }

        .slider-next:hover svg {
            transform: translateX(3px);
        }

        .slider-prev {
            left: -100px;
        }

        .slider-next {
            right: -100px;
        }

        @media (max-width: 1200px) {
            .slider-prev {
                left: 20px;
            }

            .slider-next {
                right: 20px;
            }

            .slider-nav {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .automation-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: 1fr;
            }

            .automation-grid {
                grid-template-columns: 1fr;
            }
        }