* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-accent-blue: #26a0da;
            --text-dark: #333333;
            --text-light: #F0F0F0;
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        /* CUSTOM GRADIENT NAVBAR */
        .custom-gradient-bg {
            background: linear-gradient(to right, #26a0da, #314755);
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Logo Section */
        .logo-area {
            display: flex;
            flex-shrink: 0;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-area img {
            width: 52px;
            height: 52px;
        }

        .logo-text h1 {
            font-size: 1.875rem;
            font-weight: 700;
            letter-spacing: 0.4px;
            color: white;
            margin: 0;
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin: -0.25rem 0 0 0;
            line-height: 1.2;
        }

        /* Utility Bar */
        .utility-bar {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #e5e7eb;
        }

        .enquire-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: var(--primary-accent-blue);
            color: white;
            font-size: 0.875rem;
            font-weight: 600;
            border: none;
            border-radius: 0.375rem;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .enquire-btn:hover {
            background-color: #1e88d4;
            transform: translateY(-2px);
        }

        .social-icons {
            display: flex;
            gap: 0.75rem;
            color: #d1d5db;
        }

        .social-icons a {
            color: #d1d5db;
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }

        .social-icons a:hover {
            color: var(--primary-accent-blue);
        }

        .social-icons i {
            width: 20px;
            height: 20px;
        }

        /* Language Selector */
        .language-selector {
            position: relative;
        }

        .language-selector select {
            appearance: none;
            display: block;
            width: 100%;
            background-color: white;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            padding: 0.5rem 2rem 0.5rem 0.75rem;
            font-size: 0.875rem;
            color: #1f2937;
            cursor: pointer;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .language-selector select:focus {
            outline: none;
            border-color: var(--primary-accent-blue);
            box-shadow: 0 0 0 3px rgba(38, 160, 218, 0.1);
        }

        .language-selector i {
            position: absolute;
            right: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #6b7280;
            width: 16px;
            height: 16px;
        }

        .search-icon {
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }

        .search-icon:hover {
            color: var(--primary-accent-blue);
        }

        .search-icon i {
            width: 20px;
            height: 20px;
        }

        /* Navigation Links */
        .nav-links-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 1.5rem;
            list-style: none;
            margin: 0;
            padding: 0.5rem 0;
            overflow-x: auto;
            white-space: nowrap;
        }

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 400;
            transition: color 0.2s;
        }

        .nav-link-dark {
            color: var(--text-light);
            transition: color 0.2s;
        }

        .nav-link-dark:hover {
            color: var(--primary-accent-blue);
        }

        .nav-link.active {
            color: var(--text-light);
            border-bottom: 2px solid var(--primary-accent-blue);
            padding-bottom: 4px;
            font-weight: 500;
        }

        /* NAVBAR - mobile responsive styles (shared) */
.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: inherit;
    padding: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.nav-links-container {
    display: flex;
    gap: 18px;
    list-style: none;
    align-items: center;
}

/* Mobile behavior */
@media (max-width: 880px) {
    .navbar-toggle { display: inline-flex; }

    .nav-links-container {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 80px 18px;
        gap: 18px;
        transform: translateX(110%);
        transition: transform .28s cubic-bezier(.2,.9,.25,1);
        box-shadow: -12px 0 30px rgba(0,0,0,0.12);
        z-index: 9998;
        overflow-y: auto;
    }

    .nav-links-container.open {
        transform: translateX(0);
    }

    .nav-links-container li { width: 100%; }
    .nav-links-container a {
        display: block;
        padding: 12px 14px;
        border-radius: 8px;
        color: #111;
        background: transparent;
        font-weight: 600;
    }
    .nav-links-container a:hover { background: rgba(0,0,0,0.04); }

    /* When menu open prevent background scroll (toggle class on body via JS recommended) */
    body.menu-open { overflow: hidden; }

    /* Small visual for active link */
    .nav-links-container a.active { background: rgba(59,130,246,0.12); color: #0b5ed7; }
}

/* Small hamburger -> cross animation */
.navbar-toggle .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform .2s, opacity .2s;
    position: relative;
}
.navbar-toggle .bar::before,
.navbar-toggle .bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform .2s, top .2s, bottom .2s;
}
.navbar-toggle .bar::before { top: -6px; }
.navbar-toggle .bar::after { bottom: -6px; }
.navbar-toggle.open .bar { background: transparent; }
.navbar-toggle.open .bar::before { transform: rotate(45deg); top: 0; }
.navbar-toggle.open .bar::after { transform: rotate(-45deg); bottom: 0; }

        /* FOOTER */
        .footer-cont {
            font-family: 'Roboto', sans-serif;
            background-color: #1a1a1a;
            color: #f0f0f0;
            margin-top: 50px;
        }

        .footer-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 50px 20px;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-map-section {
            flex: 1;
            display: flex;
            justify-content: center;
            min-width: 300px;
            max-width: 500px;
        }

        .map-container {
            width: 100%;
            height: 400px;
            background-color: #333;
            border-radius: 8px;
            overflow: hidden;
        }

        .footer-contact-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 25px;
            padding-left: 40px;
            border-left: 1px solid #444;
            max-width: 400px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: #f0f0f0;
            font-size: 1em;
            line-height: 1.5;
        }

        .contact-item i {
            color: #cc0000;
            font-size: 1.2em;
            margin-top: 3px;
        }

        .contact-item a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #cc0000;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-text .phone {
            font-size: 1.1em;
            font-weight: 500;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #111;
            border-top: 1px solid #333;
            margin-top: 50px;
        }

        .social-icons-footer a {
            color: #f0f0f0;
            font-size: 1.2em;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-icons-footer a:hover {
            color: #cc0000;
        }

        .copyright {
            font-size: 0.9em;
            color: #aaa;
        }

        .scroll-to-top {
            background-color: #cc0000;
            color: #fff;
            padding: 10px 12px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 1.1em;
            transition: background-color 0.3s ease;
        }

        .scroll-to-top:hover {
            background-color: #ff3333;
        }

        /* Tab Button Styles */
        .tab-button {
            padding: 12px 20px;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .tab-button:hover {
            color: var(--primary-accent-blue);
        }

        .tab-button.active {
            color: white;
            background-color: var(--primary-accent-blue);
            border-bottom: 2px solid var(--primary-accent-blue);
        }

        .color-card {
            position: relative;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .color-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        }

        .color-card img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .color-card-text {
            opacity: 0;
            transition: opacity 0.3s ease;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 600;
            font-size: 0.875rem;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 0.5rem;
            color: white;
        }

        .color-card:hover .color-card-text {
            opacity: 1;
        }

        .tab-content.hidden {
            display: none;
        }

        /* shared reveal / stagger utilities */
        .reveal {
            opacity: 0;
            transform: translateY(22px) scale(.995);
            transition: opacity .72s cubic-bezier(.2,.9,.25,1), transform .72s cubic-bezier(.2,.9,.25,1);
            will-change: transform, opacity;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        /* directional reveal variants */
        .reveal.fade-left { transform: translateX(-18px) translateY(12px) scale(.995); }
        .reveal.fade-right { transform: translateX(18px) translateY(12px) scale(.995); }
        .reveal.fade-left.visible,
        .reveal.fade-right.visible { transform: none; }

        /* stagger children */
        .stagger-child {
            opacity: 0;
            transform: translateY(8px);
            transition: opacity .56s ease, transform .56s ease;
            will-change: transform, opacity;
        }
        .reveal.visible .stagger-child,
        .stagger-child.visible {
            opacity: 1;
            transform: none;
        }

        /* Micro polish: subtle lift on hover for revealed containers */
        .reveal:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            transition: transform .36s ease;
        }

        /* Respect reduced motion via media query */
        @media (prefers-reduced-motion: reduce) {
            .reveal, .stagger-child { transition: none !important; transform: none !important; opacity: 1 !important; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .header-container {
                flex-direction: column;
            }

            .utility-bar {
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.75rem;
            }

            .nav-links-container {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .logo-text h1 {
                font-size: 1.5rem;
            }

            .logo-text p {
                font-size: 0.875rem;
            }

            .utility-bar {
                flex-direction: column;
                gap: 0.5rem;
            }

            .contact-info {
                font-size: 0.75rem;
            }

            .enquire-btn {
                font-size: 0.75rem;
                padding: 0.375rem 0.75rem;
            }

            .nav-links-container {
                gap: 1rem;
                font-size: 0.75rem;
            }

            .footer-container {
                flex-direction: column;
                gap: 20px;
            }

            .footer-contact-info {
                padding-left: 0;
                border-left: none;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
            }
        }