/* --- Midnight Gold Theme --- */
:root {
    --primary-gold: #D4AF37;
    --dark-bg: #121418;
    --card-bg: #1c1f24;
    --text-white: #f4f4f4;
    --text-muted: #a0a0a0;
    --accent-gradient: linear-gradient(135deg, #D4AF37 0%, #f1d279 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

.logo-1 img {
    height: 50px;       /* Adjust this height to fit your logo design */
    width: auto;        /* This keeps the logo proportions correct */
    display: block;
    transition: transform 0.3s ease;
}

.logo-1 img:hover {
    transform: scale(1.05); /* Subtle zoom effect when hovering */
}

.container {
    width: 85%;
    margin: auto;
    max-width: 1200px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: rgba(18, 20, 24, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo { font-size: 1.6rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--primary-gold); }

.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--text-white); font-weight: 400; transition: 0.3s; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary-gold); }

.nav-btn {
    background: var(--accent-gradient);
    color: #000 !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(18, 20, 24, 0.8), rgba(18, 20, 24, 0.9)), 
                url('https://images.unsplash.com/photo-1558655146-d09347e92766?q=80&w=1528&auto=format&fit=crop'); /* Aesthetic Desk/Design background */
    background-size: cover;
    background-position: center;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); margin: 25px 0; line-height: 1.2; }
.highlight { color: var(--primary-gold); font-style: italic; }

.hero-btns { margin-top: 35px; }
.btn-primary { 
    background: var(--accent-gradient); 
    color: #000; 
    padding: 16px 35px; 
    border-radius: 4px; 
    font-weight: 600; 
    text-decoration: none;
    margin-right: 15px;
    display: inline-block;
}
.btn-secondary { 
    border: 1px solid var(--primary-gold); 
    color: var(--primary-gold);
    padding: 15px 35px; 
    border-radius: 4px; 
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
.btn-secondary:hover { background: rgba(212, 175, 55, 0.1); }

/* --- Legal Page Styles --- */
.legal-page {
    padding-top: 150px; /* Space for the fixed nav */
    min-height: 80vh;
}

.legal-content {
    margin-top: 40px;
    max-width: 800px;
}

.legal-content h3 {
    margin: 30px 0 15px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.legal-content p {
    color: #444;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.updated {
    font-style: italic;
    color: #888 !important;
    font-size: 0.9rem !important;
}

/* Ensure Logo in nav looks right on these pages */
.logo a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 800;
}
.logo span { color: #666; font-weight: 300; }

/* About & Sections */
section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary-gold); }
.line { width: 60px; height: 3px; background: var(--primary-gold); margin: 15px auto; }

.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; }
.item h4 { color: var(--primary-gold); margin-bottom: 10px; font-size: 1.2rem; }
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }

.why-choose-us { background: var(--card-bg); padding: 40px; border-radius: 8px; border: 1px solid rgba(212, 175, 55, 0.1); }
.why-choose-us ul { list-style: none; margin-top: 20px; }
.why-choose-us li { margin-bottom: 15px; font-size: 0.95rem; }
.why-choose-us i { color: var(--primary-gold); margin-right: 10px; }

/* Service Grid */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.s-card {
    background: var(--card-bg);
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    transition: 0.4s;
    border-bottom: 3px solid transparent;
}
.s-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--primary-gold); }
.s-card i { font-size: 2.5rem; color: var(--primary-gold); margin-bottom: 20px; }
.s-card h3 { margin-bottom: 15px; }

/* Testimonials */
.testimonials { background: #0b0c0e; }
.t-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.t-card { background: var(--card-bg); padding: 35px; border-radius: 8px; position: relative; }
.stars { color: var(--primary-gold); margin-bottom: 15px; font-size: 0.9rem; }
.t-card h5 { margin-top: 20px; color: var(--primary-gold); font-family: 'Outfit'; }

/* Footer */
footer { background: #08090a; padding: 80px 0 20px; border-top: 1px solid rgba(212, 175, 55, 0.1); }
.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 50px; 
    width: 85%; 
    margin: 0 auto 50px; 
}
.footer-content h4 { color: var(--primary-gold); margin-bottom: 20px; font-family: 'Outfit'; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.f-social a { color: var(--text-white); text-decoration: none; transition: 0.3s; }
.f-social a:hover { color: var(--primary-gold); }
.copyright { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }

.legal-links { text-align: center; padding: 20px; font-size: 0.85rem; }
.legal-links a { color: var(--text-muted); text-decoration: none; margin: 0 10px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .vision-mission { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
}