 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #fefefe;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Fixed Header Styles */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(51, 51, 51, 0.5);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-text {
            font-size: 1.8rem;
            color: #d4af37;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .logo-dot {
            color: #fff;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 30px;
            position: relative;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 1px;
            padding: 10px 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #d4af37;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .action-icon {
            color: #fff;
            font-size: 1.2rem;
            margin-left: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-icon:hover {
            color: #d4af37;
            transform: scale(1.1);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Header scroll effect */
        .fixed-header.scrolled {
            background-color: rgba(51, 51, 51, 0.9);
            padding: 5px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        /* Hero Section */
        .hero-section {
            width: 100vw;
            height: 100vh;
            background: linear-gradient(135deg, rgba(254, 247, 240, 0.9) 0%, rgba(250, 240, 230, 0.9) 100%), 
                        url('images/background.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            animation: floatInFromTop 1.5s ease-out forwards;
            opacity: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        /* Elegant floating animation from top */
        @keyframes floatInFromTop {
            0% {
                opacity: 0;
                transform: translateY(-100px) scale(0.95);
                filter: blur(10px);
            }
            50% {
                opacity: 0.7;
                transform: translateY(20px) scale(0.98);
                filter: blur(5px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .hero-content {
            max-width: 800px;
            animation: contentReveal 2s ease-out 0.5s forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes contentReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 300;
            color: #d4af37;
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #8b7355;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }

        .cta-button {
            background: transparent;
            border: 2px solid #d4af37;
            color: #d4af37;
            padding: 15px 40px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: buttonGlow 2s ease-in-out infinite alternate;
        }

        @keyframes buttonGlow {
            from {
                box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
            }
            to {
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
            }
        }

        .cta-button:hover {
            background: #d4af37;
            color: white;
            transform: translateY(-2px);
        }

        .cta-button.primary {
            background: #d4af37;
            color: white;
        }

        .diamond-shine {
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, #ffffff 0%, transparent 70%);
            position: absolute;
            top: 20%;
            right: 15%;
            animation: sparkle 3s ease-in-out infinite;
            border-radius: 50%;
        }

        @keyframes sparkle {
            0%, 100% {
                opacity: 0.3;
                transform: scale(0.8);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.2);
            }
        }

        /* Why Choose Us Section */
        .why-choose-us {
            padding: 100px 5%;
            background: linear-gradient(135deg, #fef7f0 0%, #faf0e6 100%);
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title {
            font-size: 2.8rem;
            color: #d4af37;
            margin-bottom: 15px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #8b7355;
            max-width: 600px;
            margin: 0 auto;
            font-style: italic;
        }

        .section-divider {
            width: 80px;
            height: 2px;
            background: #d4af37;
            margin: 20px auto;
            position: relative;
        }

        .section-divider::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background: #d4af37;
            border-radius: 50%;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            margin-top: 10px;
            margin-bottom: 10px;
            margin-left: auto;
            margin-right: auto;
            max-width: 70vw;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #d4af37;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: #fef7f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: #d4af37;
            font-size: 2rem;
            transition: all 0.4s ease;
            position: relative;
        }

        .feature-card:hover .feature-icon {
            background: #d4af37;
            color: white;
            transform: rotateY(180deg);
        }

        .feature-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .feature-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
        }

        .diamond-bg {
            position: absolute;
            width: 300px;
            height: 300px;
            opacity: 0.03;
            background: url('images/n.jpg');
            background-size: contain;
            z-index: 0;
        }

        .diamond-1 {
            top: 10%;
            left: 5%;
            transform: rotate(15deg);
        }

        .diamond-2 {
            bottom: 10%;
            right: 5%;
            transform: rotate(-15deg);
        }

        /* Contact Form Section */
        .contact-section {
            padding: 100px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info {
            padding: 30px;
        }

        .info-title {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: #fef7f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .info-content h3 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 5px;
        }

        .info-content p {
            color: #666;
        }

        .social-links {
            display: flex;
            margin-top: 30px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #fef7f0;
            border-radius: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            margin-right: 15px;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            width: fit-content;
            min-width: 40px;
            padding: 2px;
            background: #d4af37;
            color: white;
            transform: translateY(-3px);
        }

        /* Form Styles */
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fefefe;
        }

        .form-control:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: #d4af37;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .submit-btn:hover {
            background: #c19d2a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .submit-btn i {
            margin-left: 10px;
        }

        .form-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: #e8f5e9;
            color: #2e7d32;
            border: 1px solid #c8e6c9;
        }

        .form-message.error {
            background: #ffebee;
            color: #c62828;
            border: 1px solid #ffcdd2;
        }

        /* Footer Styles */
        .strip-footer {
            background: #333;
            color: white;
            padding: 30px 5%;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .fl {
            width: 60px;
            height: 60px;
            border-radius: 100%;
        }

        .footer-logo {
            font-size: 1.8rem;
            color: #d4af37;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .footer-links {
            display: flex;
            list-style: none;
        }

        .footer-link {
            margin-left: 25px;
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #d4af37;
        }

        .copyright {
            color: #999;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .form-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-info {
                padding: 0;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: rgba(51, 51, 51, 0.95);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: 0.5s;
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 15px 0;
            }

            .header-actions {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .features-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .contact-form {
                padding: 30px 25px;
            }
            
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                margin: 20px 0;
                justify-content: center;
            }
            
            .footer-link {
                margin: 0 12px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .contact-form {
                padding: 25px 20px;
            }
            
            .footer-links {
                flex-wrap: wrap;
            }
            
            .footer-link {
                margin: 5px 10px;
            }
        }

        /* Animation on scroll */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.8s ease forwards;
        }
