:root {
            --primary: #333333;
            --primary-dark: #1a1a1a;
            --primary-light: #555555;
            --secondary: #cccccc;
            --gold: #d4af37;
            --gold-light: #e6c875;
            --light: #fff9fb;
            --dark: #2c1a1d;
            --text: #333333;
            --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
            --glass: rgba(255, 255, 255, 0.85);
            --diamond: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path fill="rgba(212,175,55,0.3)" d="M12,1.5l-8.25,7.5L12,22.5l8.25-13.5L12,1.5z"/></svg>');
        }

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

        html {
            width: 100%;
            box-sizing: border-box;
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--light);
            line-height: 1.6;
        }
        

        body {
            background: linear-gradient(135deg, #fff0f5 0%, #fff9fb 100%);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        
            position: relative;
            background-image: var(--diamond);
            background-attachment: fixed;
        }

        body:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255, 249, 251, 0.9), rgba(255, 249, 251, 0.95));
            z-index: -1;
        }
      
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
            letter-spacing: 0.5px;
        }

        h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            text-shadow: 2px 2px 0 var(--secondary);
        }

        h2 {
            font-size: 3.5rem;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            color: var(--primary);
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--gold);
            border-radius: 2px;
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text);
            font-size: 1.1rem;
        }

        .container {
            width: 90%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 16px 42px;
            background: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 1.1rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 2px solid var(--gold);
        }
        
        .product-card-back .btn, 
        .product-card-front .btn {
            padding: 12px 30px;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.8s;
            z-index: -1;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--light);
        }

        section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 15px 0;
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        }

        header.scrolled {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-svg {
            height: 90px;
            width: auto;
            transition: var(--transition);
            filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
        }

        .logo:hover .logo-svg {
            transform: scale(1.05);
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 15px;
            border-radius: 20px;
            background: transparent;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav ul li a:hover {
            color: var(--primary);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        nav ul li a:hover:after {
            width: 80%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            color: var(--primary-dark);
            transform: rotate(90deg);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        @keyframes zoomBackground {
            0% { background-size: 100%; }
            100% { background-size: 120%; }
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 10;
            background: var(--glass);
            padding: 50px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transform: translateY(50px);
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
            border: 2px solid var(--gold);
        }

        .hero-content h1 {
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
            color: var(--primary);
            text-shadow: none;
            font-size: 4.2rem;
            line-height: 1.2;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--text);
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        .hero-highlight {
            display: inline-block;
            background: rgba(51, 51, 51, 0.1);
            padding: 10px 25px;
            border-radius: 50px;
            margin: 25px 0;
            font-weight: 600;
            color: var(--primary);
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--gold);
        }

        .hero-highlight:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            animation: shine 3s infinite;
        }

        .hero-btns {
            display: flex;
            gap: 25px;
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
        }

        /* Video Background for Hero */
        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        /* Enhanced Hero with Video Background */
        .hero {
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            z-index: 1;
            animation: gradientShift 15s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 35%),
                radial-gradient(circle at 50% 50%, rgba(204, 204, 204, 0.08) 0%, transparent 50%);
            z-index: 2;
            animation: floatOverlay 20s infinite ease-in-out;
        }

        @keyframes floatOverlay {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.8;
            }
            25% { 
                transform: translate(10px, -5px) scale(1.02);
                opacity: 0.6;
            }
            50% { 
                transform: translate(-5px, 10px) scale(0.98);
                opacity: 0.9;
            }
            75% { 
                transform: translate(5px, -10px) scale(1.01);
                opacity: 0.7;
            }
        }

        /* Enhanced container for video background */
        .hero-container {
            position: relative;
            z-index: 10;
        }

        /* Enhanced glass morphism with video background */
        .hero-product-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 25px 70px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        .hero-product-card.featured {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 2px solid rgba(212, 175, 55, 0.5);
        }

        /* Enhanced text readability over video */
        .hero-main-title {
            text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
        }

        .hero-description {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-brand-tag {
            background: rgba(212, 175, 55, 0.25);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(212, 175, 55, 0.4);
        }

        /* Video specific responsive adjustments */
        @media (max-width: 768px) {
            .hero-video-bg {
                opacity: 0.3;
                filter: brightness(0.8) contrast(1.2);
            }
            
            .hero::before {
                background: linear-gradient(
                    135deg,
                    rgba(255, 249, 251, 0.9) 0%,
                    rgba(248, 240, 244, 0.85) 50%,
                    rgba(255, 249, 251, 0.9) 100%
                );
            }
        }

        @media (max-width: 576px) {
            .hero-video-bg {
                opacity: 0.25;
                filter: brightness(0.9) contrast(1.1);
            }
            
            .hero::before {
                background: linear-gradient(
                    135deg,
                    rgba(255, 249, 251, 0.95) 0%,
                    rgba(248, 240, 244, 0.9) 50%,
                    rgba(255, 249, 251, 0.95) 100%
                );
            }
        }

        /* About Section */
        .about {
            position: relative;
            background: var(--light);
        }

        .about-header {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            position: relative;
        }
        
        .about-title-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-bottom: 10px;
            gap: 30px;
        }

        .about-logo {
            width: 180px;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
            transition: var(--transition);
        }

        .about-logo:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .about-intro {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
            font-size: 1.2rem;
            position: relative;
        }

        .about-intro:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }

        .about-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid var(--gold);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .about-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }

        .about-card:hover .about-img img {
            transform: scale(1.05);
        }

        .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: 600;
            backdrop-filter: blur(5px);
            transform: translateY(100%);
            transition: var(--transition);
        }

        .about-card:hover .img-caption {
            transform: translateY(0);
        }

        .about-text {
            padding: 30px;
        }

        .about-text h3 {
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .about-text h3:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }

        /* Remove old about-content styles */
        .about-content {
            display: none;
        }

        /* Products */
        .products {
            position: relative;
            background-color: #f9f9f9;
            overflow: hidden;
            position: relative;
        }
        
        .products:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(51, 51, 51, 0.03) 0%, rgba(204, 204, 204, 0.07) 100%);
            z-index: 0;
        }
        
        .products:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(204, 204, 204, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 50%, rgba(51, 51, 51, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 40% 80%, rgba(204, 204, 204, 0.1) 0%, transparent 30%);
            z-index: 0;
        }

        .products .container {
            position: relative;
            z-index: 2;
        }
        
        .products .section-title {
            position: relative;
        }
        
        .products .section-title:before,
        .products .section-title:after {
            content: '';
            position: absolute;
            height: 2px;
            background: var(--gold);
            width: 80px;
            top: 50%;
        }
        
        .products .section-title:before {
            left: 15%;
            transform: translateX(-100%);
        }
        
        .products .section-title:after {
            right: 15%;
            transform: translateX(100%);
        }
        
        /* Decorative circles in products section */
        .products-decoration {
            position: absolute;
            pointer-events: none;
            z-index: 1;
        }
        
        .products-decoration-1 {
            top: 10%;
            left: 5%;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: float 15s infinite alternate ease-in-out;
        }
        
        .products-decoration-2 {
            bottom: 15%;
            right: 5%;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(51, 51, 51, 0.07) 0%, transparent 70%);
            animation: float 12s infinite alternate-reverse ease-in-out;
        }
        
        .products-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.3;
            pointer-events: none;
        }
        
        .particle-shimmer {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at center, var(--gold-light) 0%, transparent 70%);
            opacity: 0.2;
            pointer-events: none;
            z-index: 1;
            transition: all 0.8s ease-out;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(20px, -15px) rotate(5deg); }
            100% { transform: translate(-15px, 20px) rotate(-5deg); }
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            padding: 0;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transform-style: preserve-3d;
            perspective: 1000px;
            height: 550px;
            border: 1px solid var(--gold);
            backdrop-filter: blur(5px);
        }

        .product-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .product-card:hover .product-card-inner {
            transform: rotateY(180deg);
        }

        .product-card-front, 
        .product-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden; /* Safari */
            backface-visibility: hidden;
        }

        .product-card-back {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            transform: rotateY(180deg);
            padding: 40px 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            text-align: center;
        }
        
        .product-card-back p {
            color: var(--gold);
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .product-img {
            height: 300px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(to bottom, #f8f0f4, #fff);
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-info {
            padding: 25px 20px;
            display: flex;
            flex-direction: column;
            height: calc(100% - 300px);
            overflow: hidden;
        }
        
        .product-info h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        
        .product-info p {
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-card h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .product-features {
            list-style: none;
            margin: 15px 0;
            text-align: left;
            flex-grow: 1;
            font-size: 0.9rem;
        }

        .product-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
            line-height: 1.3;
        }

        .product-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .back-features li:before {
            color: var(--gold);
        }

        .product-card-back h3 {
            color: white;
        }

        /* Color Swatches */
        .color-swatches {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
        }

        .color-swatch {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .color-swatch.active {
            border: 2px solid var(--gold);
            transform: scale(1.2);
        }

        /* Opportunity */
        .opportunity {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .opportunity-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .opportunity-text h2, 
        .opportunity-text h3, 
        .opportunity-text p {
            color: white;
        }

        .opportunity-text h2:after {
            background: var(--gold);
        }

        .opportunity-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 2px solid var(--gold);
        }

        .opportunity-img:hover {
            transform: translateY(-10px);
        }

        .opportunity-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .opportunity-img:hover img {
            transform: scale(1.05);
        }

        /* Achievements */
        .achievements {
            background: var(--light);
            position: relative;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .achievement-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid var(--gold);
        }

        .achievement-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--secondary);
            z-index: -1;
            transition: var(--transition);
        }

        .achievement-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .achievement-card:hover:before {
            height: 100%;
        }

        .achievement-card i {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: all 0.5s ease;
        }

        .achievement-card:hover i {
            transform: rotate(15deg) scale(1.2);
            color: var(--gold);
        }

        .achievement-card h3 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        /* Contact */
        .contact {
            background: var(--light);
            position: relative;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gold);
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-hover);
            border-left: 5px solid var(--primary);
        }

        .contact-item i {
            font-size: 1.8rem;
            color: var(--primary);
            min-width: 40px;
            padding-top: 5px;
        }

        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gold);
        }

        .contact-form:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .contact-form .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px 20px;
            background: #f9f9f9;
            border: 2px solid #eee;
            border-radius: 10px;
            color: var(--text);
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            font-size: 1rem;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 15px rgba(51, 51, 51, 0.2);
        }

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

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
            text-decoration: none;
            border: 1px solid var(--gold);
        }

        .social-links a:hover {
            transform: translateY(-5px) rotate(10deg);
            background: var(--gold);
        }

        /* Footer */
        footer {
            background: #000000;
            padding: 100px 0 40px;
            position: relative;
            overflow: hidden;
            background-image: var(--diamond);
            background-size: 150px;
            background-position: center;
            background-blend-mode: overlay;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-size: 1.6rem;
            color: var(--secondary);
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links li a {
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            opacity: 0.8;
        }

        .footer-links li a:hover {
            color: var(--gold-light);
            transform: translateX(5px);
            opacity: 1;
        }

        .footer-col p {
            color: var(--gold);
            opacity: 0.8;
        }
        
        .footer-contact li {
            color: var(--gold);
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .footer-contact li:hover {
            transform: translateX(5px);
            opacity: 1;
        }
        
        .footer-contact i {
            color: var(--gold);
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            color: var(--gold);
            font-size: 0.95rem;
            opacity: 0.9;
        }

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

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) rotate(0deg);
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
            }
        }

        @keyframes shine {
            0% { transform: translateX(-150%); }
            100% { transform: translateX(150%); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Glitter Effect */
        .glitter {
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            width: 10px;
            height: 10px;
            background: var(--gold-light);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
            animation: glitterFall 1s linear forwards;
        }

        @keyframes glitterFall {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* 3D Lipstick Models */
        .lipstick-3d-container {
            perspective: 1000px;
            margin: 30px auto;
            width: 200px;
            height: 300px;
        }

        .lipstick-3d {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1s;
        }

        .lipstick-3d:hover {
            transform: rotateY(180deg);
        }

        .lipstick-3d-face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            overflow: hidden;
        }

        .lipstick-3d-front {
            background: white;
            transform: translateZ(30px);
        }

        .lipstick-3d-back {
            background: white;
            transform: rotateY(180deg) translateZ(30px);
            border: 1px solid var(--gold);
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, white 70%);
            box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.15);
        }
        
        .lipstick-front-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .lipstick-logo {
            width: 70%;
            max-width: 150px;
            height: auto;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
            transition: var(--transition);
            animation: float 6s infinite alternate ease-in-out;
            padding: 15px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            border: 2px solid var(--gold);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }
        
        .lipstick-3d:hover .lipstick-front-img {
            transform: scale(1.1);
        }
        
        /* Remove old lipstick styling that's no longer needed */

        /* Core Values Section */
        .core-values-section {
            position: relative;
            padding: 20px 0;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255, 249, 251, 0.4) 0%, rgba(230, 200, 117, 0.1) 100%);
            border-radius: 30px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 80px;
            padding: 40px;
        }
        
        .core-values-title {
            margin-top: 0 !important;
        }
        
        .core-values-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            position: relative;
        }
        
        .core-values-image {
            flex: 0 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .core-values-logo {
            width: 200px;
            height: auto;
            border-radius: 50%;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
            border: 4px solid rgba(212, 175, 55, 0.3);
            animation: pulse 3s infinite alternate ease-in-out;
            transition: transform 0.5s;
        }
        
        .core-values-logo:hover {
            transform: scale(1.05) rotate(5deg);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
            100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            flex: 1;
        }
        
        .value-card {
            background: white;
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gold);
            position: relative;
            overflow: hidden;
        }
        
        .value-card:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .value-card:hover:before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .value-card i {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
            background: rgba(212, 175, 55, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            transition: all 0.5s ease;
        }
        
        .value-card:hover i {
            transform: rotateY(180deg);
            background: var(--gold);
            color: white;
        }

