
        :root {
            --bg-black: #050505;
            --bg-dark: #111111;
            --gold-light: #F3E5AB;
            --gold-main: #D4AF37;
            --gold-dark: #AA8A29;
            /* Luxury Gradient Text */
            --gold-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
        }

        body { 
            background-color: var(--bg-black); 
            color: #fff; 
            font-family: 'Poppins', sans-serif; 
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        /* Typography */
        h1, h2, h3, h4 { 
            font-family: 'Playfair Display', serif; 
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        
        .text-gold-flat { color: var(--gold-main) !important; }
        .text-white { -webkit-text-fill-color: white !important; color: white !important; }

        /* Navbar */
        .navbar { background: rgba(0,0,0,0.95); border-bottom: 1px solid #333; backdrop-filter: blur(10px); }
        .nav-link { font-family: 'Poppins', sans-serif; font-size: 0.9rem; letter-spacing: 1px; }

        /* Premium Buttons */
        .btn-luxury {
            background-image: linear-gradient(to right, #AA8A29 0%, #D4AF37  51%, #AA8A29  100%);
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: black;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid #fff;
            padding: 12px 35px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }
        .btn-luxury:hover { background-position: right center; color: #fff; text-decoration: none; }

        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('assests/midas2.webp');
            background-size: cover;
            background-position: center;
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .hero::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100px;
            background: linear-gradient(to top, var(--bg-black), transparent);
        }

        /* Service Cards */
        .card-luxury {
            background: var(--bg-dark);
            border: 1px solid #333;
            border-radius: 0px; /* Sharp edges for luxury feel */
            overflow: hidden;
            transition: 0.4s ease;
            position: relative;
        }
        .card-luxury:hover {
            border-color: var(--gold-main);
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .service-img { width: 100%; height: 250px; object-fit: cover; filter: brightness(0.8); transition: 0.4s; }
        .card-luxury:hover .service-img { filter: brightness(1); transform: scale(1.05); }

        /* Accordion */
        .accordion-item { background: transparent; border: 1px solid #333; margin-bottom: 10px; }
        .accordion-button { background: #1a1a1a; color: var(--gold-main); font-family: 'Playfair Display', serif; }
        .accordion-button:not(.collapsed) { background: var(--gold-main); color: #000; -webkit-text-fill-color: black; }
        .accordion-body { color: #ccc; }

        /* Sticky Footer */
        .sticky-footer {
            position: fixed; bottom: 0; left: 0; width: 100%; display: flex; z-index: 9999;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
        }
        .sf-btn { flex: 1; padding: 15px; text-align: center; font-weight: 600; text-decoration: none; color: white; text-transform: uppercase; letter-spacing: 1px; }
        .sf-call { background: #000; border-top: 2px solid var(--gold-main); }
        .sf-wa { background: #104223; border-top: 2px solid #25D366; }

        /* Trust Badge */
        .trust-pill {
            border: 1px solid var(--gold-main);
            color: var(--gold-main);
            padding: 5px 20px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 20px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        /* New Button Style for Cards */
.btn-card-luxury {
    display: block;
    width: 100%;
    border: 1px solid var(--gold-main);
    color: var(--gold-main);
    background: transparent;
    padding: 8px 0;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-card-luxury:hover {
    background: var(--gold-main);
    color: #000; /* Black text on Gold background */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
        /* Footer Links Styling */
.footer-link {
    color: #888; /* Grey text */
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}
.footer-link:hover {
    color: var(--gold-main); /* Turns Gold on Hover */
    text-decoration: underline;
}
.footer-divider {
    color: #444;
    margin: 0 10px;
}
 








/* How It Works - Step Circles */
.step-circle {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 2px solid var(--gold-main);
    color: var(--gold-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transition: 0.3s;
}
.step-item:hover .step-circle {
    background: var(--gold-main);
    color: #000;
    transform: scale(1.1);
}

/* Testimonial Cards */
.review-card {
    background: #111;
    border-left: 3px solid var(--gold-main);
    padding: 25px;
    height: 100%;
    position: relative;
}
.quote-icon {
    font-size: 2rem;
    color: #333;
    position: absolute;
    top: 15px;
    right: 20px;
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('assests/midas2.webp');
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--gold-main);
    border-bottom: 1px solid var(--gold-main);
}

/* Objection Handling / Trust Section */
.trust-box {
    background: #151515;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: start;
    transition: 0.3s;
}
.trust-box:hover {
    border-color: var(--gold-main);
    background: #1a1a1a;
}
.trust-icon {
    font-size: 2rem;
    color: var(--gold-main);
    margin-right: 15px;
    margin-top: 5px;
}
.trust-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}
.trust-desc {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}