        :root {
            --gold: #D4B996;      
            --charcoal: #1A1A1A;    
            --pearl: #F8F9FA;      
            --white: #FFFFFF;
            --soft-gold: rgba(212, 185, 150, 0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body { 
            background-color: var(--pearl); 
            color: var(--charcoal); 
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden; 
            line-height: 1.6;
        }

        /* --- Global Typography & Sections --- */
        section { padding: 100px 8%; }
        h2 { 
            font-family: 'Cormorant Garamond', serif; 
            font-size: 3rem; 
            text-align: center; 
            margin-bottom: 50px; 
        }
        h2 span { color: var(--gold); }

        /* --- Navigation --- */
        nav {
            background-color: var(--white);
            height: 75px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            position: fixed;
            top: 0; width: 100%; z-index: 3000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .logo-area { display: flex; align-items: center; flex: 1; }
        .logo-img { height: 100px; width: auto; }
        .nav-center { display: flex; justify-content: center; flex: 2; }
        .nav-links { display: flex; list-style: none; gap: 30px; }
        .nav-links li { position: relative; }
        .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 0;
            transition: 0.3s;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0; height: 2px;
            bottom: 0; left: 0;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-right { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: 15px; }
        
/* --- Navigation Button Styling --- */
.btn-create-nav {
    background-color: var(--gold);
    color: var(--charcoal);
    padding: 10px 22px; /* Slightly wider for better presence */
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    
    /* Ensure it sits above nav shadows */
    position: relative;
    z-index: 10;
    display: inline-block;

    /* --- High Intensity Pulse Glow --- */
    animation: pulse-glow 2.5s infinite;
}

/* The Animation Logic - Intense Version */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(212, 185, 150, 0.6);
    }
    50% {
        /* Primary gold glow + a wider soft secondary glow */
        box-shadow: 0 0 25px rgba(212, 185, 150, 0.9), 0 0 45px rgba(212, 185, 150, 0.4);
        transform: scale(1.02); /* Very slight grow effect */
    }
    100% {
        box-shadow: 0 0 10px rgba(212, 185, 150, 0.6);
    }
}

/* Hover State */
.btn-create-nav:hover {
    background-color: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
    animation: none; /* Stops pulsing when you interact with it */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

        .menu-toggle { font-size: 1.6rem; cursor: pointer; display: none; }

        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=2000');
            background-size: cover; background-position: center;
            display: flex; align-items: center;
        }
        .hero-content { color: var(--white); max-width: 800px; }
        .hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; }
        .hero-content h1 span { color: var(--gold); }
        .hero-btns { display: flex; gap: 15px; margin-top: 35px; flex-wrap: wrap; }
        .btn-hero { padding: 16px 35px; border-radius: 4px; text-decoration: none; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; display: inline-block; }
        
        /* HOVER: Hero Buttons */
        .btn-primary { background-color: var(--gold); color: var(--charcoal); border: 1px solid var(--gold); }
        .btn-primary:hover { background-color: transparent; color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

        .btn-secondary { background-color: transparent; color: var(--white); border: 1px solid var(--white); }
        .btn-secondary:hover { background-color: var(--white); color: var(--charcoal); transform: translateY(-3px); }

        .bullet { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-weight: 400; font-size: 0.95rem; color: var(--white); }
        .bullet i { color: var(--gold); }

        /* --- 1. How It Works --- */
        .how-it-works { background: var(--white); }
        .steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
        .step-card { text-align: center; padding: 30px; }
        .step-number { font-size: 4rem; font-family: 'Cormorant Garamond', serif; color: var(--soft-gold); margin-bottom: -40px; font-weight: 700; }
        .step-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; position: relative; }
        .step-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 15px; }

        /* --- 2. Features --- */
        .features { background: var(--pearl); }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .feature-item { 
            background: var(--white); 
            padding: 40px; 
            border-radius: 8px; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
            transition: 0.3s; 
        }
        .feature-item:hover { transform: translateY(-10px); border-bottom: 4px solid var(--gold); }
        .feature-item i { color: var(--gold); font-size: 2rem; margin-bottom: 20px; }

        /* --- PRICING SECTION STYLES --- */
        .pricing { background: var(--white); }
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .price-card { 
            background: var(--pearl); padding: 50px 30px; border-radius: 12px; text-align: center; 
            transition: 0.4s; border: 1px solid #eee; position: relative;
        }
        .price-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
        .price-card.featured { background: var(--charcoal); color: var(--white); transform: scale(1.05); border: 2px solid var(--gold); }
        .price-card.featured .cost { color: var(--gold); }
        .price-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 15px; }
        .price-card .cost { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; }
        .price-card .cost span { font-size: 1rem; opacity: 0.6; }
        .price-card ul { list-style: none; margin-bottom: 30px; }
        .price-card ul li { margin-bottom: 15px; font-size: 0.9rem; opacity: 0.8; }
        .btn-price { 
            display: inline-block; width: 100%; padding: 15px; background: var(--gold); color: var(--charcoal); 
            text-decoration: none; font-weight: 800; border-radius: 4px; transition: 0.3s; text-transform: uppercase;
        }
        .price-card.featured .btn-price:hover { background: var(--white); }

        /* --- 3. About Section --- */
        .about { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; background: var(--pearl); }
        .about-image { flex: 1; min-width: 300px; position: relative; }
        .about-image img { width: 100%; border-radius: 8px; }
        .about-image::after { content: ''; position: absolute; top: 20px; left: 20px; width: 100%; height: 100%; border: 2px solid var(--gold); z-index: -1; border-radius: 8px; }
        .about-text { flex: 1.2; min-width: 300px; }
        .about-text h2 { text-align: left; margin-bottom: 20px; }

        /* --- 4. Why Choose Us --- */
        .why-us { background: var(--charcoal); color: var(--white); text-align: center; }
        .why-us h2 { color: var(--white); }
        .stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
        .stat-box h3 { font-size: 3rem; color: var(--gold); font-family: 'Cormorant Garamond', serif; }

        /* --- 5. Contact Section --- */
        .contact { background: var(--white); display: flex; gap: 50px; flex-wrap: wrap; }
        .contact-info { flex: 1; }
        .contact-form { flex: 1.5; background: var(--pearl); padding: 40px; border-radius: 8px; }
        .form-group { margin-bottom: 20px; }
        input, textarea { width: 100%; padding: 15px; border: 1px solid #ddd; outline: none; font-family: inherit; transition: 0.3s; }
        input:focus { border-color: var(--gold); }
        
        /* HOVER: Submit Button */
        .btn-submit { background: var(--charcoal); color: var(--white); padding: 15px 30px; border: 1px solid var(--charcoal); cursor: pointer; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; transition: 0.3s; }
        .btn-submit:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

        /* --- Footer --- */
        footer { background: var(--charcoal); color: #888; padding: 80px 8% 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; margin-bottom: 50px; }
        .footer-col h4 { color: var(--white); margin-bottom: 25px; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #888; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
        .footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 30px; font-size: 0.8rem; }
        
        /* HOVER: Social Icons */
        .footer-social-link { color: var(--white); font-size: 1.2rem; transition: 0.3s; display: inline-block; }
        .footer-social-link:hover { color: var(--gold); transform: translateY(-5px); }

        /* --- Back To Top Arrow --- */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: var(--gold);
            color: var(--charcoal);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 5000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        #backToTop.show { opacity: 1; visibility: visible; }
        #backToTop:hover { background-color: var(--charcoal); color: var(--white); transform: translateY(-5px); }

        /* --- Mobile Styles --- */
        .mobile-overlay {
            position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
            background-color: var(--charcoal); z-index: 4000;
            transition: 0.5s; display: flex; flex-direction: column; align-items: center; justify-content: center;
        }
        .mobile-overlay.active { right: 0; }
        .mobile-overlay a { color: var(--white); text-decoration: none; font-size: 1.8rem; margin-bottom: 25px; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
        .close-btn { position: absolute; top: 25px; right: 5%; font-size: 2rem; color: var(--white); cursor: pointer; }

        @media (max-width: 1024px) {
            .nav-center, .btn-create-nav { display: none; }
            .menu-toggle { display: block; }
            section { padding: 60px 5%; }
            h2 { font-size: 2.2rem; }
            .price-card.featured { transform: scale(1); }
        }



        