

        :root {
            --bg-primary: #0b0b0b;
            --bg-secondary: #141414;
            --bg-card: #1a1a1a;
            --bg-elevated: #222222;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0b0;
            --text-muted: #777777;
            --accent-gold: #d4a853;
            --accent-gold-dim: rgba(212, 168, 83, 0.12);
            --border-subtle: #2a2a2a;
            --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.8);
            --transition: 0.3s ease;
            --radius: 12px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 80px 0;
        }

        /* ----- BUTTONS ----- */
        .btn-primary {
            display: inline-block;
            background: var(--accent-gold);
            color: #0b0b0b;
            font-weight: 600;
            padding: 14px 36px;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.3px;
            box-shadow: 0 4px 20px rgba(212, 168, 83, 0.25);
        }

        .btn-primary:hover {
            background: #e6c06a;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 168, 83, 0.35);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--text-primary);
            font-weight: 500;
            padding: 14px 36px;
            border-radius: 50px;
            border: 1.5px solid var(--border-subtle);
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: var(--accent-gold-dim);
        }

        /* ----- SECTION HEADERS ----- */
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 8px;
            border-left: 3px solid var(--accent-gold);
            padding-left: 14px;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-title span {
            color: var(--accent-gold);
        }

        .section-sub {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 580px;
            line-height: 1.7;
        }

        .section-header {
            margin-bottom: 56px;
        }

        .section-header.centered {
            text-align: center;
        }

        .section-header.centered .section-sub {
            margin: 0 auto;
        }

        /* ----- NAVIGATION ----- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 0;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(11, 11, 11, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 12px 0;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
 

        .logo {
    display: flex;
    align-items: center;
     
}

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }
 
        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-primary);
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--text-secondary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links .btn-primary {
            padding: 10px 28px;
            font-size: 0.85rem;
        }
 
 

        .nav-links .btn-primary:hover {
            transform: translateY(-1px);
        }

        /* Make the phone number text black by default */
.nav-links .btn-black-text {
    color: #0b0b0b !important;
        font-weight: 700; /* or 800 for even bolder */
}
 

         

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 4px;
            transition: var(--transition);
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ----- HERO ----- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 0 80px;
            background: var(--bg-primary);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 70%;
            height: 140%;
            background: radial-gradient(ellipse, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content .badge {
            display: inline-block;
            background: var(--accent-gold-dim);
            color: var(--accent-gold);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 18px;
            border-radius: 50px;
            border: 1px solid rgba(212, 168, 83, 0.2);
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-content h1 span {
            color: var(--accent-gold);
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 480px;
            margin-bottom: 36px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
        }

        .hero-stats .stat h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-gold);
        }

        .hero-stats .stat p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* Hero Image */
        .hero-image {
        
    background-size: cover;
    background-position: center;
    min-height: auto; /* Adjust as needed */
        }

     

        .hero-image .image-placeholder {
            background: rgba(0,0,0,0.3);
            display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
        }

        .hero-image .image-placeholder i {
            font-size: 4rem;
            color: var(--accent-gold);
            opacity: 0.5;
            margin-bottom: 16px;
        }

        .hero-image .image-placeholder p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .hero-image .image-placeholder .glow-ring {
            position: absolute;
            width: 80%;
            height: 80%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
 .hero .image-placeholder .hero-text-overlay {
    width: 100%;
}

.hero .image-placeholder .hero-text-overlay p {
    margin: 0;
    padding-top: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}


        /* ----- ABOUT / WHY US ----- */
        .about {
            background: var(--bg-secondary);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image .image-placeholder {
            border-radius: var(--radius);
            background: linear-gradient(145deg, #1a1a1a, #101010);
            border: 1px solid var(--border-subtle);
            aspect-ratio: 1 / 0.8;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 40px;
            text-align: center;
        }

        .about-image .image-placeholder i {
            font-size: 3.5rem;
            color: var(--accent-gold);
            opacity: 0.4;
            margin-bottom: 12px;
        }

        .about-image .image-placeholder p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .about-text .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 28px;
        }

        .about-text .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .about-text .feature-item i {
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .about-text .feature-item h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .about-text .feature-item p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* ----- SERVICES / OFFERINGS ----- */
        .services {
            background: var(--bg-primary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 36px 28px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: var(--accent-gold);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }

        .service-card .icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: var(--accent-gold-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 18px;
        }

        .service-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ----- WHY CHOOSE US (features) ----- */
        .features {
            background: var(--bg-secondary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
        }

        .feature-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-4px);
        }

        .feature-card .icon {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin-bottom: 14px;
        }

        .feature-card h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .feature-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* ----- TESTIMONIALS (trust) ----- */
        .testimonials {
            background: var(--bg-primary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 32px 28px;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            border-color: var(--accent-gold);
        }

        .testimonial-card .stars {
            color: var(--accent-gold);
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .testimonial-card blockquote {
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .testimonial-card .client {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-card .client .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent-gold-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--accent-gold);
            border: 1px solid var(--border-subtle);
        }

        .testimonial-card .client .info h5 {
            font-size: 0.95rem;
            font-weight: 600;
        }

        .testimonial-card .client .info span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ----- CTA / CONTACT ----- */
        .cta {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .cta .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cta-content h2 {
            font-size: 2.6rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .cta-content h2 span {
            color: var(--accent-gold);
        }

        .cta-content p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            margin-bottom: 28px;
            max-width: 440px;
        }

        .cta-form {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius);
            padding: 40px;
        }

        .cta-form .form-group {
            margin-bottom: 18px;
        }

        .cta-form label {
            display: block;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 4px;
            color: var(--text-secondary);
        }

        .cta-form input,
        .cta-form textarea {
            width: 100%;
            padding: 12px 16px;
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: var(--transition);
            font-family: inherit;
        }

        .cta-form input:focus,
        .cta-form textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
        }

        .cta-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .cta-form .btn-primary {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

        /* ----- FOOTER ----- */
        .footer {
            background: var(--bg-primary);
            padding: 48px 0 28px;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            max-width: 320px;
            margin-top: 10px;
        }

        .footer-brand .socials {
            display: flex;
            gap: 14px;
            margin-top: 16px;
        }

        .footer-brand .socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .footer-brand .socials a:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: var(--accent-gold-dim);
        }

        .footer-col h5 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .footer-bottom .legal a {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-left: 24px;
            transition: var(--transition);
        }

        .footer-bottom .legal a:hover {
            color: var(--text-primary);
        }

        /* ----- RESPONSIVE ----- */

        /* Tablets & small laptops */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin: 0 auto 36px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image .image-placeholder {
                aspect-ratio: 1 / 0.6;
            }

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-text .about-features {
                text-align: left;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .cta-content p {
                margin: 0 auto 28px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 56px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }

            .hero-stats {
                gap: 28px;
                flex-wrap: wrap;
            }

            .hero-stats .stat h3 {
                font-size: 1.4rem;
            }

            /* Navigation */
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--bg-secondary);
                flex-direction: column;
                padding: 80px 32px 40px;
                gap: 24px;
                transition: var(--transition);
                border-left: 1px solid var(--border-subtle);
                align-items: flex-start;
                overflow-y: auto;
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .nav-links .btn-primary {
                margin-top: 8px;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }

            /* Mobile overlay */
            .nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.6);
                z-index: 998;
                opacity: 0;
                pointer-events: none;
                transition: var(--transition);
            }

            .nav-overlay.active {
                opacity: 1;
                pointer-events: all;
            }

            .services-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin: 0 auto;
            }

            .features-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin: 0 auto;
            }

            .about-text .about-features {
                grid-template-columns: 1fr;
            }

            .cta-form {
                padding: 28px 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom .legal a {
                margin: 0 12px;
            }

            .hero-image .image-placeholder {
                aspect-ratio: 1 / 0.7;
            }
 
            .logo img {
    height: 80px !important;
    width: auto !important;
}
 
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }

            .service-card {
                padding: 28px 20px;
            }

            .testimonial-card {
                padding: 24px 20px;
            }

            .navbar {
                padding: 12px 0;
            }
.logo img {
    height: 80px !important; /* Shrinks the logo on small phones */
    width: auto !important;
}
            
        }

       /* ===== CONTACT INFO - CENTER ON MOBILE ===== */
.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Tablet and mobile: center the contact info */
@media (max-width: 768px) {
    .contact-info {
        justify-content: center;
        text-align: center;
    }

    
}


/* Small phones: stack vertically */
@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
     
/* ===== FAQ ACCORDION ===== */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: inherit;
    gap: 16px;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--accent-gold-dim);
}

.faq-question .faq-icon {
    color: var(--accent-gold);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    margin: 0;
}

/* Mobile responsive – uses your existing breakpoints */
@media (max-width: 768px) {
    .faq-question {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
    .faq-answer.open {
        padding: 0 18px 16px 18px;
    }
}