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

        :root {
            --primary-color: #c9a87c;
            --secondary-color: #2c2c2c;
            --accent-color: #d4af7a;
            --light-bg: #f8f5f2;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #666666;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-svg {
            height: 50px;
            width: auto;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

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

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

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

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

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

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 50%, #f8f5f2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(201, 168, 124, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(201, 168, 124, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(201, 168, 124, 0.05) 0%, transparent 30%);
            background-size: 100% 100%;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a87c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

        /* Optional: Uncomment below and add your hero image to enable background photo */
        /*
        .hero {
            background-image: linear-gradient(rgba(248, 245, 242, 0.9), rgba(255, 255, 255, 0.95)), url('your-hero-image.jpg');
            background-size: cover;
            background-position: center;
        }
        */

        .hero-content {
            max-width: 1000px;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(201, 168, 124, 0.1);
            color: var(--primary-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(201, 168, 124, 0.3);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--text-light);
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.6;
        }

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

        .cta-button {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(201, 168, 124, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(201, 168, 124, 0.4);
            background: var(--accent-color);
        }

        .cta-button-secondary {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            box-shadow: none;
        }

        .cta-button-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Stats Section */
        .stats {
            padding: 4rem 2rem;
            background: var(--secondary-color);
            color: var(--white);
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .timeline {
            display: grid;
            gap: 3rem;
            margin-top: 4rem;
        }

        .timeline-item {
            background: var(--light-bg);
            padding: 2.5rem;
            border-radius: 20px;
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
        }

        .timeline-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .timeline-year {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .timeline-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Why Choose Us Section */
        .why-choose {
            padding: 6rem 2rem;
            background: var(--light-bg);
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            display: block;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-item p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .services-grid {
            max-width: 1400px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--light-bg);
            padding: 3rem 2rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            display: block;
        }

        .service-card h3 {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-features li::before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* Brands We Distribute Section */
        .distributed-brands {
            padding: 6rem 2rem;
            background: var(--light-bg);
        }

        .brands-showcase {
            max-width: 1200px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }

        .brand-item {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1;
            position: relative;
        }

        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .brand-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .brand-logo {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .brand-item:hover .brand-logo {
            filter: grayscale(0%);
        }

        /* Brands Section */
        .brands {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
            color: var(--white);
            text-align: center;
        }

        .brands-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .brands .section-title {
            color: var(--white);
        }

        .brands .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .brand-cta {
            background: var(--light-bg);
            padding: 4rem 2rem;
            border-radius: 30px;
            margin-top: 3rem;
            color: var(--text-dark);
        }

        .brand-cta h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .brand-cta p {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }

        .brand-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            text-align: left;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .benefit-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            color: var(--primary-color);
        }

        .benefit-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .benefit-text p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: var(--white);
        }

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

        .contact .section-title {
            color: var(--secondary-color);
        }

        .contact-text {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .contact-method {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-method-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            display: block;
        }

        .contact-method h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }

        .contact-method p {
            color: var(--text-light);
        }

        .contact-button {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 1rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 2rem;
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 168, 124, 0.4);
            background: var(--accent-color);
        }

        /* Contact Form */
        .contact-form-container {
            max-width: 700px;
            margin: 3rem auto 0;
            background: var(--light-bg);
            padding: 3rem;
            border-radius: 20px;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 0.95rem;
        }

        .form-input,
        .form-textarea {
            padding: 1rem;
            border: 2px solid transparent;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.1);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit {
            background: var(--primary-color);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 168, 124, 0.4);
            background: var(--accent-color);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-form-container {
                padding: 2rem;
            }
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: var(--white);
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .footer-section p,
        .footer-section li {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

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

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .copyright {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: left 0.3s ease;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

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

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

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

            .hero {
                padding: 4rem 1.5rem;
                min-height: 80vh;
            }

            .stats-container {
                gap: 2rem;
            }

            .about, .services, .brands, .contact, .why-choose {
                padding: 4rem 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .timeline-item {
                padding: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .brand-benefits {
                grid-template-columns: 1fr;
            }
        }

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

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }
