        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Brand Colors - Official GISTEX Palette */
            --brand-red: #881012;
            --dark-maroon: #510608;
            --brand-beige: #e8c999;
            --navy-blue: #0d264b;
            --brand-green: #083c12;
            --brand-light-blue: #318ab0;
            --brand-orange: #ffa815;
            --brand-gray: #a7abaf;
            --whatsapp-green: #25D366;

            /* Base Colors */
            --primary: #ffffff;
            --black: #000000;

            /* Text Colors */
            --text: #0d264b;
            --text-secondary: #666666;
            --text-muted: #999999;
            --accent: #881012;

            /* Utility */
            --light-gray: rgba(232, 201, 153, 0.15);
            --border: #e8c999;

            /* Shadow Scale */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
            --shadow-brand: 0 6px 20px rgba(136, 16, 18, 0.25);

            /* Border Radius Scale */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-pill: 20px;
        }

        /* Smooth Scroll Behavior */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Sans 3', sans-serif;
            color: var(--text);
            background: var(--primary);
            overflow-x: hidden;
        }

        /* Headers use Gotham-like font (Montserrat) */
        h1, h2, h3, h4, h5, h6,
        .hero-title, .section-title, .excellence-title,
        .sustainability-title, .cta-title, .founder-title,
        .market-title, .achievements-title {
            font-family: 'Montserrat', sans-serif;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 5%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .logo {
            height: 45px;
            width: auto;
        }

        .logo img {
            height: 100%;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--navy-blue);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

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

        .lang-switcher {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            border: 1px solid var(--black);
            border-radius: var(--radius-pill);
            padding: 0.4rem 0.8rem;
            background: rgba(255, 255, 255, 0.8);
        }

        .lang-option {
            color: var(--black);
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        .lang-option:hover {
            color: var(--text-secondary);
        }

        .lang-option.active {
            color: var(--primary);
            background: var(--black);
        }

        .lang-divider {
            color: var(--black);
            font-size: 0.7rem;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--navy-blue);
            transition: all 0.3s;
            border-radius: 3px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.85);
                backdrop-filter: blur(20px) saturate(180%);
                -webkit-backdrop-filter: blur(20px) saturate(180%);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }
        }

        /* Focus styles for accessibility */
        a:focus,
        button:focus,
        .lang-option:focus,
        .mobile-menu-toggle:focus {
            outline: 2px solid var(--brand-red);
            outline-offset: 2px;
        }

        /* Skip to content link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--brand-red);
            color: white;
            padding: 0.5rem 1rem;
            text-decoration: none;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Hero Section with Video */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 5% 4rem;
            background: var(--primary);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 201, 153, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 2;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 10%;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(136, 16, 18, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 2;
            pointer-events: none;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.15;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 2rem;
            color: var(--text);
            letter-spacing: -2px;
        }

        .hero-title strong {
            font-weight: 600;
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            border: 1px solid var(--black);
            background: transparent;
            color: var(--black);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            border-radius: var(--radius-sm);
            font-weight: 600;
        }

        .btn:hover {
            background: var(--brand-red);
            color: var(--primary);
            border-color: var(--brand-red);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(136, 16, 18, 0.25);
        }

        .btn-primary {
            background: var(--black);
            color: var(--primary);
            border-color: var(--black);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            background: var(--brand-red);
            border-color: var(--brand-red);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(136, 16, 18, 0.35);
        }

        /* Trust Bar */
        .trust-bar {
            padding: 4rem 5%;
            text-align: center;
            border-bottom: 1px solid var(--brand-beige);
            background: rgba(232, 201, 153, 0.08);
        }

        .trust-item {
            text-align: center;
            display: inline-block;
            padding: 1rem 2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 0 2rem;
        }

        .trust-item:hover .trust-number {
            color: var(--brand-red);
        }

        .trust-number {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .trust-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 400;
            transition: all 0.3s ease;
        }

        /* Collections Section */
        .collections {
            padding: 6rem 5%;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        /* Arc decorative elements from Brand Guidelines */
        .collections::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -150px;
            width: 300px;
            height: 300px;
            background: radial-gradient(ellipse at bottom right, rgba(232, 201, 153, 0.3) 0%, rgba(232, 201, 153, 0.1) 50%, transparent 70%);
            border-radius: 0 0 100% 0;
            z-index: 0;
            pointer-events: none;
        }

        .collections::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -150px;
            width: 300px;
            height: 300px;
            background: radial-gradient(ellipse at top left, rgba(136, 16, 18, 0.1) 0%, rgba(136, 16, 18, 0.05) 50%, transparent 70%);
            border-radius: 100% 0 0 0;
            z-index: 0;
            pointer-events: none;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 4rem;
            color: var(--text);
            letter-spacing: -1px;
            position: relative;
            z-index: 1;
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .collection-card {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .collection-card:hover {
            transform: translateY(-8px);
        }

        .collection-image {
            width: 100%;
            height: 500px;
            background-size: cover;
            background-position: center;
            border-radius: 4px;
            transition: transform 0.5s ease, box-shadow 0.3s ease;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .collection-card:nth-child(1) .collection-image {
            background-image: url('https://gistexgroup.suruhai.com/images/gistex-satin-pink-luxury.jpg');
        }

        .collection-card:nth-child(2) .collection-image {
            background-image: url('https://gistexgroup.suruhai.com/images/gistex-acetate-blue-drape.jpg');
        }

        .collection-card:nth-child(3) .collection-image {
            background-image: url('https://gistexgroup.suruhai.com/images/gistex-crepe-textured-matte.jpg');
        }

        .collection-card:hover .collection-image {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .collection-name {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .collection-cta {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        /* Excellence Section */
        .excellence {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            padding: 6rem 5%;
            background: rgba(232, 201, 153, 0.12);
            position: relative;
            overflow: hidden;
        }

        /* Circular gradient elements - Brand Guidelines */
        .excellence::before {
            content: '';
            position: absolute;
            top: -100px;
            right: 10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(232, 201, 153, 0.5) 0%, rgba(136, 16, 18, 0.15) 50%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }

        .excellence::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(136, 16, 18, 0.08) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }

        .excellence-image {
            background-image: url('https://gistexgroup.suruhai.com/images/gistex-textile-factory-weaving.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            border-radius: 4px;
        }

        .excellence-content {
            max-width: 500px;
            position: relative;
            z-index: 10;
        }

        .excellence-title {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            color: var(--text);
        }

        .excellence-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .excellence-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .excellence-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .excellence-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        /* Sustainability Banner */
        .sustainability {
            background: var(--primary);
            padding: 8rem 5%;
            text-align: center;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .sustainability::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(232, 201, 153, 0.2) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }

        .sustainability::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: 15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(136, 16, 18, 0.08) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }

        .sustainability-content {
            position: relative;
            z-index: 10;
        }

        .sustainability-title {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 2rem;
            letter-spacing: -1px;
            color: var(--text);
        }

        .sustainability-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .sustainability-features span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* CTA Section */
        .cta {
            padding: 8rem 5%;
            text-align: center;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        /* Layered circular gradients - Brand Guidelines */
        .cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle,
                rgba(232, 201, 153, 0.25) 0%,
                rgba(136, 16, 18, 0.08) 40%,
                transparent 70%);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }

        .cta::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle,
                rgba(136, 16, 18, 0.12) 20%,
                transparent 70%);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }

        .cta-title, .cta-subtitle, .cta-buttons {
            position: relative;
            z-index: 10;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            color: var(--text);
        }

        .cta-subtitle {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 3rem;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 4rem 5%;
            background: var(--primary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            color: var(--text);
        }

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

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
            font-weight: 400;
        }

        .footer-section a:hover {
            color: var(--brand-red);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(232, 201, 153, 0.2);
            border: 1px solid var(--brand-beige);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-button svg {
            width: 20px;
            height: 20px;
            fill: var(--text);
            transition: all 0.3s;
        }

        .social-button:hover {
            background: var(--brand-red);
            border-color: var(--brand-red);
            transform: translateY(-2px);
        }

        .social-button:hover svg {
            fill: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 300;
        }

        .footer-bottom-left {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-bottom-right {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .footer-bottom-right a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-bottom-right a:hover {
            color: var(--brand-red);
        }

        /* Founder Message Section */
        .founder-message {
            padding: 8rem 5%;
            background: rgba(232, 201, 153, 0.12);
            position: relative;
            overflow: hidden;
        }

        .founder-message::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(232, 201, 153, 0.3) 25%,
                rgba(136, 16, 18, 0.1) 50%,
                rgba(232, 201, 153, 0.3) 75%,
                transparent 100%);
            opacity: 0.4;
            z-index: 1;
            pointer-events: none;
        }

        .founder-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .founder-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--text);
            margin-bottom: 3rem;
            letter-spacing: -1px;
        }

        .founder-card {
            background: var(--primary);
            padding: 4rem;
            border-radius: 4px;
            border: 1px solid var(--border);
            position: relative;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 3rem;
            align-items: center;
            text-align: left;
        }

        .founder-image-container {
            position: relative;
        }

        .founder-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 4px;
            border: none;
        }

        .founder-text {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .founder-quote {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--text);
            font-style: italic;
            position: relative;
            font-weight: 300;
        }

        .founder-info {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .founder-name {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text);
        }

        .founder-position {
            font-size: 0.9rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .founder-subtext {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            font-weight: 300;
        }

        /* Our Market Section */
        .market-section {
            padding: 8rem 5%;
            background: var(--primary);
            position: relative;
            border-top: 1px solid var(--border);
        }

        .market-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .market-title {
            font-size: 2.5rem;
            font-weight: 300;
            text-align: center;
            color: var(--text);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .market-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            font-weight: 300;
        }

        .market-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .market-map-container {
            position: relative;
            background: rgba(232, 201, 153, 0.12);
            padding: 2rem;
            border-radius: 4px;
            border: 1px solid var(--border);
        }

        .market-map {
            width: 100%;
            height: auto;
            filter: grayscale(100%) brightness(1.1);
            opacity: 0.7;
        }

        .market-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .market-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .market-stat-card {
            background: var(--primary);
            padding: 2rem;
            border-radius: 4px;
            text-align: center;
            border: 1px solid var(--border);
            transition: transform 0.3s ease;
        }

        .market-stat-card:hover {
            transform: translateY(-2px);
            border-color: var(--accent);
        }

        .market-stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .market-stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .market-intro {
            max-width: 900px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .market-description-intro {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .client-categories {
            width: 100%;
        }

        .client-categories-title {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 2rem;
            text-align: center;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .client-category-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .client-category-card {
            background: var(--primary);
            padding: 1.8rem;
            border-radius: var(--radius-sm);
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .client-category-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 8px 24px rgba(136, 16, 18, 0.15);
        }

        .client-category-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
            line-height: 1;
            filter: grayscale(20%);
        }

        .client-category-content {
            flex: 1;
        }

        .client-category-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.6rem;
            line-height: 1.3;
        }

        .client-category-regions {
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 0.3px;
            line-height: 1.6;
        }

        .client-category-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 300;
            font-style: italic;
            line-height: 1.6;
        }

        /* Featured Client Category Card */
        .client-category-card-featured {
            background: linear-gradient(135deg, rgba(136, 16, 18, 0.08) 0%, rgba(232, 201, 153, 0.12) 100%);
            border: 2px solid var(--accent);
            box-shadow: 0 4px 16px rgba(136, 16, 18, 0.12);
        }

        .client-category-card-featured:hover {
            box-shadow: 0 8px 32px rgba(136, 16, 18, 0.2);
        }

        /* Map Statistics Badges */
        .map-stat-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(136, 16, 18, 0.2);
            border-radius: var(--radius-md);
            padding: 0.8rem 1.2rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .map-stat-badge:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }

        .map-stat-top-left {
            top: 1.5rem;
            left: 1.5rem;
        }

        .map-stat-top-right {
            top: 1.5rem;
            right: 1.5rem;
        }

        .map-stat-bottom-left {
            bottom: 1.5rem;
            left: 1.5rem;
        }

        .map-stat-bottom-right {
            bottom: 1.5rem;
            right: 1.5rem;
        }

        .map-stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .map-stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .market-regions {
            background: rgba(232, 201, 153, 0.12);
            padding: 2rem;
            border-radius: 4px;
            border: 1px solid var(--border);
        }

        .market-regions h3 {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .market-region-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .market-region-tag {
            padding: 0.6rem 1.2rem;
            background: var(--primary);
            color: var(--text);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 400;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .market-region-tag:hover {
            background: var(--text);
            color: var(--primary);
            border-color: var(--text);
        }

        .market-regions-title {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .market-description {
            margin-top: 1.5rem;
            line-height: 1.8;
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 300;
        }

        /* Achievements Section */
        .achievements-section {
            padding: 8rem 5%;
            background: rgba(232, 201, 153, 0.12);
            border-top: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .achievements-section::before {
            content: '';
            position: absolute;
            top: 20%;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(136, 16, 18, 0.08) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
        }

        .achievements-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .achievements-title {
            font-size: 2.5rem;
            font-weight: 300;
            text-align: center;
            color: var(--text);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .achievements-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            font-weight: 300;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .achievement-card {
            background: var(--primary);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 2rem;
            display: flex;
            gap: 2rem;
            transition: all 0.3s ease;
            align-items: center;
        }

        .achievement-card:hover {
            transform: translateY(-2px);
            border-color: var(--accent);
        }

        .achievement-image-container {
            flex-shrink: 0;
            width: 180px;
            height: 240px;
            background: white;
            border-radius: 4px;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
        }

        .achievement-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .achievement-info {
            flex: 1;
        }

        .achievement-name {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .achievement-year {
            font-size: 0.85rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .achievement-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
            font-weight: 300;
        }

        .achievement-highlight {
            background: var(--primary);
            padding: 2.5rem 3rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 2rem;
            border: 1px solid var(--border);
        }

        .highlight-icon {
            font-size: 4rem;
            line-height: 1;
        }

        .highlight-content h3 {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .highlight-content p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin: 0;
            font-weight: 300;
        }

        /* ============================================
           PAGE HERO STYLES
           ============================================ */

        /* Product Button */
        .product-btn {
            display: inline-block;
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--accent), var(--dark-maroon));
            color: var(--primary);
            font-family: "Montserrat", sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            border-radius: var(--radius-sm);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .product-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(136, 16, 18, 0.3);
            opacity: 0.9;
        }

        /* Page Hero */
        .page-hero {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 120px 20px 80px;
            text-align: center;
            color: white;
            position: relative;
        }

        .page-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(136, 16, 18, 0.4) 0%, rgba(102, 13, 14, 0.5) 100%);
            z-index: 1;
        }

        .page-hero > * {
            position: relative;
            z-index: 2;
        }

        /* ============================================
           ANIMATIONS - Fade In On Scroll
           ============================================ */

        /* Keyframes for fade-in animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Base state - hidden until scrolled into view */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        /* Visible state when in viewport */
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            .animate-on-scroll {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* ============================================
           TIER 2 ANIMATIONS - Advanced Effects
           ============================================ */

        /* Stagger animation for collection cards */
        .collection-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .collection-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays for cards */
        .collection-card:nth-child(1) {
            transition-delay: 0.1s;
        }

        .collection-card:nth-child(2) {
            transition-delay: 0.2s;
        }

        .collection-card:nth-child(3) {
            transition-delay: 0.3s;
        }

        /* Hero section stagger animations */
        .hero-subtitle,
        .hero-title,
        .hero-description,
        .hero-buttons {
            opacity: 0;
            transform: translateY(20px);
            animation: heroFadeIn 0.8s ease forwards;
        }

        .hero-subtitle {
            animation-delay: 0.2s;
        }

        .hero-title {
            animation-delay: 0.4s;
        }

        .hero-description {
            animation-delay: 0.6s;
        }

        .hero-buttons {
            animation-delay: 0.8s;
        }

        @keyframes heroFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Pulse animation for contact widget */
        @keyframes pulse {
            0% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            }
            50% {
                box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
                transform: scale(1.05);
            }
            100% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            }
        }

        .contact-button.pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Number counter animation effect */
        .trust-number,
        .market-stat-number {
            font-variant-numeric: tabular-nums;
        }

        @media (prefers-reduced-motion: reduce) {
            .collection-card,
            .hero-subtitle,
            .hero-title,
            .hero-description,
            .hero-buttons {
                opacity: 1;
                transform: none;
                animation: none;
                transition: none;
            }

            .contact-button.pulse {
                animation: none;
            }
        }

        /* Contact Widget */
        .contact-widget {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--whatsapp-green);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
        }

        .contact-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
            background: var(--brand-green);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .collection-grid {
                grid-template-columns: 1fr;
            }

            .excellence {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-right {
                flex-direction: column;
                gap: 1rem;
            }

            .trust-bar {
                flex-direction: column;
            }

            .nav-links {
                display: none;
            }

            .logo {
                height: 35px;
            }

            .logo-subtitle {
                font-size: 0.55rem;
            }

            .lang-switcher {
                padding: 0.3rem 0.6rem;
            }

            .lang-option {
                font-size: 0.65rem;
                padding: 0.15rem 0.35rem;
            }

            .founder-title {
                font-size: 2rem;
            }

            .founder-quote {
                font-size: 1.2rem;
            }

            .founder-card {
                padding: 2rem;
                grid-template-columns: 1fr;
                text-align: center;
            }

            .founder-image {
                height: 250px;
            }

            .founder-quote::before {
                font-size: 3rem;
                top: -1rem;
            }

            .market-title {
                font-size: 2rem;
            }

            .market-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .market-map-container {
                padding: 2rem;
            }

            .market-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .market-stat-number {
                font-size: 2.5rem;
            }

            .market-regions-title {
                font-size: 1.5rem;
            }

            .market-region-tag {
                font-size: 0.85rem;
                padding: 0.6rem 1.2rem;
            }

            .achievements-title {
                font-size: 2rem;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .achievement-card {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .achievement-image-container {
                width: 160px;
                height: 200px;
            }

            .achievement-name {
                font-size: 1.3rem;
            }

            .achievement-highlight {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }

            .highlight-content h3 {
                font-size: 1.5rem;
            }

            .highlight-content p {
                font-size: 1rem;
            }
        }
