/* Reset + base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1c1c1e;
    --dark-text: #e0e0e0;
    --gold-accent: #bfa251;
    --gold-hover: #a68c45;
}

body {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #2f2f2f;
    background: #121212;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.logo {
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--gold-accent);
    text-shadow: 0 0 10px rgba(191, 162, 81, 0.3);
    cursor: default;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: var(--dark-text);
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--gold-accent);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Buttons and CTAs */
.cta-btn {
    background-color: var(--gold-accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(191, 162, 81, 0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 4px 12px rgba(191, 162, 81, 0.3);
    transform: translateY(-2px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--gold-accent);
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
    position: fixed;
    left: 1rem;
    top: 1rem;
}

/* Service Cards */
.service {
    background: #222;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(191, 162, 81, 0.2);
}

.service h3 {
    color: var(--gold-accent);
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Sections */
section {
    opacity: 0;
    transform: translateY(30px);
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

h1 {
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    color: var(--gold-accent);
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -250px;
        height: 100vh;
        width: 250px;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 4rem 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        left: 0;
    }

    .navbar {
        padding: 1rem;
    }

    .logo {
        margin: 0 auto;
    }
}

/* Service Cards Grid */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container details {
    background: #222;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-container details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 162, 81, 0.1);
}

.faq-container summary {
    padding: 1.5rem;
    background: #2a2a2a;
    color: var(--gold-accent);
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-container summary:hover {
    background: #333;
}

.faq-container summary::marker {
    color: var(--gold-accent);
    font-size: 1.2em;
}

.faq-container p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
    color: var(--dark-text);
    background: #222;
}

/* Contact List Styles */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-list li i {
    margin-right: 0.75rem;
    color: var(--gold-accent);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-list li a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: var(--gold-accent);
}

/* Footer Styles */
footer {
    margin-top: 4rem;
    padding: 2rem;
    background: #121212;
    color: var(--dark-text);
}

footer a {
    color: var(--gold-accent);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold-hover);
}

  
  