:root {
    --gold: #C5A059; 
    --gold-bright: #E2C275;
    --bg-dark: #0D0D0D;
    --bg-card: #161616;
    --text-gray: #B0B0B0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

h1, h2, h3, .brand-name { font-family: 'Cinzel', serif; letter-spacing: 2px; }

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.brand-container { display: flex; flex-direction: column; }
.brand-name { color: var(--gold); font-weight: 700; font-size: 1.4rem; line-height: 1.2; }
.brand-tagline { font-size: 0.65rem; color: #fff; letter-spacing: 3px; text-transform: uppercase; opacity: 0.8; }

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: 0.3s;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-attachment: fixed;
}

.hero img {
    width: 300px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.3));
}

.hero h1 { font-size: 2.4rem; margin-bottom: 10px; color: var(--gold-bright); }

/* --- Global Sections --- */
section { padding: 100px 8%; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-title div { height: 1px; width: 80px; background: var(--gold); margin: auto; }

/* --- The Firm (About) --- */
.about-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* --- Grid Layouts --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: 0.4s;
    text-align: center;
}

.card:hover { border-color: var(--gold); transform: translateY(-10px); background: #1a1a1a; }
.card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.team-member {
    text-align: center;
    transition: 0.3s;
}

.member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
    padding: 5px;
    overflow: hidden;
    background: #222;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: 0.5s;
}

.team-member:hover img { filter: grayscale(0%); transform: scale(1.1); }

.team-member h3 { color: var(--gold); margin-bottom: 5px; font-size: 1.2rem; }
.team-member p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-gray); }

/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-left: 4px solid var(--gold);
    position: relative;
}

.testimonial-card i {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.1;
    color: var(--gold);
}

/* --- Contact --- */
.contact-box {
    background: var(--bg-card);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-top: 4px solid var(--gold);
}

input, textarea {
    width: 100%; padding: 15px; margin-bottom: 15px; 
    background: #000; border: 1px solid #333; color: white;
    font-family: 'Montserrat', sans-serif;
}

.btn-gold {
    background: var(--gold); color: #000; padding: 15px 40px;
    text-transform: uppercase; font-weight: 700; border: none;
    cursor: pointer; width: 100%; transition: 0.3s;
}

/* --- Inline styles extracted to classes --- */
.hero-subtitle {
    color: var(--text-gray);
    max-width: 600px;
    font-weight: 300;
    margin-top: 15px;
}

.about-highlight {
    color: var(--gold);
    margin-bottom: 20px;
}

.services-section { background: #0a0a0a; }

.contact-info-text {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-info-item { margin-bottom: 10px; }

.contact-icon {
    color: var(--gold);
    margin-right: 15px;
}

.contact-social { margin-top: 10px; }

.social-icon {
    color: var(--gold);
    margin-right: 15px;
}

.testimonials-section { background: #0a0a0a; }

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

/* --- WhatsApp Float Button --- */
.wa-float {
    position: fixed; bottom: 40px; right: 40px; background: #25D366;
    width: 60px; height: 60px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 30px;
    color: white; text-decoration: none; z-index: 1001;
}

footer { padding: 40px; text-align: center; border-top: 1px solid #222; font-size: 0.75rem; color: #555; }

@media (max-width: 768px) {
    .contact-box, .testimonial-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
