/* Dark Premium Theme - Law Firm */
:root {
    --bg-dark: #0E0E0E;
    --bg-card: #1A1A1A;
    --bg-darker: #050505;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #B4942B;
    --text-white: #F2F2F2;
    --text-gray: #B0B0B0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --container-width: 1200px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--accent-gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    /* Slightly refined radius */
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* Header */
header {
    padding: 20px 0;
    background: rgba(14, 14, 14, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.logo span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center -150px;
    /* Align top to ensure face is visible */
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 140px;
    /* Increased to clear fixed header */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(14, 14, 14, 0.8) 100%);
}

#hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

#hero h1 {
    font-size: 2.8rem;
    /* Reduced from 3.5rem */
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

#hero h1 span {
    color: var(--accent-gold);
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-style: italic;
    text-transform: capitalize;
}

#hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections Global */
section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Differentials */
#differentials {
    background-color: var(--bg-card);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diff-card {
    background: var(--bg-dark);
    /* Contrast with section bg */
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.diff-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.diff-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.diff-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-white);
}

.diff-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Areas */
#areas {
    background-color: var(--bg-dark);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.area-card {
    background: var(--bg-card);
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.area-card:hover {
    border-left-color: var(--accent-gold);
    background: lighten(var(--bg-card), 5%);
    /* Approx since no SASS */
    background: #202020;
}

.area-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.area-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.area-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials */
#testimonials {
    background-color: var(--bg-card);
    padding-bottom: 80px;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.review-card {
    background: var(--text-white);
    color: var(--bg-dark);
    padding: 30px;
    min-width: 300px;
    border-radius: 8px;
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    background: #ccc;
    border-radius: 50%;
}

.reviewer-info h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--bg-dark);
    font-size: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

/* About */
#about {
    background-color: var(--bg-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border: 1px solid var(--accent-gold);
    padding: 10px;
}

.about-img img {
    filter: brightness(0.8);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

/* Process */
#process {
    background: var(--bg-card);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* CTA strip */
#cta-strip {
    background: var(--bg-darker);
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    text-align: center;
    padding: 80px 0;
}

#cta-strip h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

#cta-strip p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-gray);
}

/* FAQ */
#faq {
    background: var(--bg-card);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--bg-dark);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 0 20px 20px 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding-top: 15px;
}

/* Footer */
footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 3px solid var(--accent-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    nav {
        display: none;
        /* simple mobile hide for now, could add JS toggle */
    }

    .mobile-toggle {
        display: block;
    }

    #hero h1 {
        font-size: 2.5rem;
    }
}