* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', 'Segoe UI', serif;
        }

        body {
            background: #fefbf6;
            color: #4a3c31;
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* Modern Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-icon {
            font-size: 32px;
            color: #d4af37;
            animation: sparkle 3s infinite;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 300;
            color: #3c2f2f;
            letter-spacing: 2px;
        }

        .logo-text span {
            color: #d4af37;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            color: #5a4d42;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 0.5px;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, #d4af37, #b8860b);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #d4af37;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .cart-icon {
            position: relative;
            color: #5a4d42;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .cart-icon:hover {
            color: #d4af37;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #d4af37;
            color: white;
            font-size: 12px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #5a4d42;
            cursor: pointer;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(28, 28, 28, 0.85), rgba(28, 28, 28, 0.9)),
                        url('https://images.unsplash.com/photo-1535632066927-ab7c9ab60908?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 180px 20px 100px;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .page-title {
            font-size: 64px;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .page-subtitle {
            font-size: 20px;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .page-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            margin: 30px auto;
            opacity: 0;
            animation: fadeIn 1s ease 0.9s forwards;
        }

        /* Contact Content */
        .contact-content {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
        }

        /* Contact Info */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .info-card {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(175, 147, 118, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 50px rgba(175, 147, 118, 0.1);
        }

        .info-title {
            color: #3c2f2f;
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .info-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #b8860b);
        }

        .info-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #f0e6db;
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #fdf6f0 0%, #f8f0e6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            font-size: 28px;
            margin: 0 auto 20px;
        }

        .info-content h4 {
            color: #3c2f2f;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .info-content p {
            color: #8a7b6d;
            line-height: 1.6;
            margin-bottom: 5px;
        }

        .info-content a {
            color: #d4af37;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-top: 5px;
        }

        .info-content a:hover {
            color: #b8860b;
        }

        /* Social Links */
        .social-section {
            text-align: center;
            margin-top: 60px;
        }

        .social-title {
            color: #3c2f2f;
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .social-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #b8860b);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 70px;
            height: 70px;
            background: #f9f5f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5a4d42;
            font-size: 24px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .social-link:hover {
            background: #d4af37;
            color: white;
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
        }

        .social-tooltip {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: #3c2f2f;
            color: white;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .social-link:hover .social-tooltip {
            opacity: 1;
        }

        /* Luxury Footer */
        .footer {
            background: #2c2824;
            color: #f0e6db;
            padding: 80px 40px 30px;
            margin-top: 100px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 60px;
        }

        .footer-column h3 {
            color: #d4af37;
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .footer-column p {
            opacity: 0.8;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-icon:hover {
            background: #d4af37;
            color: #2c2824;
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #f0e6db;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            opacity: 1;
            color: #d4af37;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            opacity: 0.6;
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes sparkle {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .page-title {
                font-size: 48px;
            }
            
            .nav-links {
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .nav-container {
                padding: 0 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-link {
                padding: 15px 0;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
            
            .page-header {
                padding: 150px 20px 80px;
                margin-top: 70px;
            }
            
            .page-title {
                font-size: 36px;
            }
            
            .page-subtitle {
                font-size: 18px;
            }
            
            .contact-content {
                padding: 0 20px;
                margin: 60px auto;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 28px;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .info-card {
                padding: 30px 20px;
            }
            
            .social-link {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }
        }