* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a1a1a;
            --accent: #c9a35f;
            --light: #f5f5f5;
            --white: #ffffff;
            --gray: #666;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.7) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23c9a35f" width="1200" height="600"/><path fill="%23b89350" d="M0 300L100 350L200 280L300 320L400 270L500 310L600 250L700 300L800 240L900 290L1000 220L1100 270L1200 200V600H0Z"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
            color: var(--white);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(201,163,95,0.2) 0%, transparent 50%);
            animation: pulse 15s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero-tagline {
            font-size: clamp(1rem, 2vw, 1.4rem);
            margin-bottom: 2.5rem;
            font-weight: 300;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 0;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out 0.6s backwards;
            letter-spacing: 1px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201,163,95,0.4);
        }

        .cta-button i {
            margin-left: 0.5rem;
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
        }

        /* Services Section */
        .services {
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            border-bottom: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--accent) 0%, #d4ae6f 100%);
            transition: height 0.4s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            color: var(--white);
            transform: scale(1.1);
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            transition: color 0.4s ease;
        }

        .service-card:hover h3 {
            color: var(--white);
        }

        .service-card p {
            color: var(--gray);
            line-height: 1.6;
            transition: color 0.4s ease;
        }

        .service-card:hover p {
            color: rgba(255,255,255,0.9);
        }

        /* Why Choose Us Section */
        .why-choose {
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--light);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: var(--accent);
            transform: translateX(10px);
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--accent);
            flex-shrink: 0;
            transition: color 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            color: var(--white);
        }

        .feature-text h4 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .feature-item:hover h4,
        .feature-item:hover p {
            color: var(--white);
        }

        .feature-text p {
            color: var(--gray);
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        /* Contact Section */
        .contact {
            background: var(--primary);
            color: var(--white);
        }

        .contact .section-title,
        .contact .section-subtitle {
            color: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(201,163,95,0.2);
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .contact-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-item a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #d4ae6f;
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }

        footer p {
            font-size: 0.95rem;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 3rem 1.5rem;
            }

            .hero {
                background-attachment: scroll;
            }

            .services-grid,
            .features-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .feature-item {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
