:root {
    --navy: #003366;
    --dark-navy: #002244;
    --gold: #C5A059;
    --light-gold: #e6c68b;
    --white: #ffffff;
    --grey: #f4f4f4;
    --text-dark: #333;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.top-bar { background-color: var(--dark-navy); color: var(--white); padding: 8px 0; font-size: 0.9rem; }
.top-flex { display: flex; justify-content: space-between; }
.top-bar a { color: var(--gold); font-weight: bold; }

/* Header */
.law-header { padding: 25px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: rgba(255,255,255,0.98); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--navy); letter-spacing: 1px; }
.gold { color: var(--gold); }

.law-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.law-nav a { font-weight: 500; text-transform: uppercase; font-size: 0.9rem; color: var(--navy); }
.law-nav a:hover, .law-nav a.active { color: var(--gold); }

.btn-law { background-color: var(--navy); color: var(--white) !important; padding: 10px 25px; border-radius: 2px; }
.btn-law:hover { background-color: var(--gold); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: 1px solid var(--navy); color: var(--navy); font-size: 1rem; padding: 5px 10px; cursor: pointer; text-transform: uppercase; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--navy); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; color: var(--white); background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #444; color: var(--white); font-family: var(--font-serif); }

/* Hero */
.hero-section {
    height: 600px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,51,102,0.9) 0%, rgba(0,51,102,0.5) 100%);
    display: flex; align-items: center;
}
.hero-content { padding-left: 10%; max-width: 800px; color: var(--white); }
.subtitle { font-family: var(--font-serif); font-style: italic; color: var(--gold); display: block; margin-bottom: 15px; font-size: 1.1rem; }
.hero-content h1 { font-family: var(--font-serif); font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; max-width: 600px; }

.hero-btns a { margin-right: 15px; padding: 15px 35px; border-radius: 2px; font-weight: bold; display: inline-block; }
.btn-primary { background-color: var(--gold); color: var(--white); }
.btn-primary:hover { background-color: var(--light-gold); }
.btn-secondary { border: 2px solid var(--white); color: var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--navy); }

/* General Section */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--navy); margin-bottom: 15px; }
.divider { width: 80px; height: 3px; background-color: var(--gold); margin: 0 auto; }

/* Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--grey); padding: 40px; border-top: 4px solid var(--navy); transition: 0.3s; text-align: center; }
.service-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-serif); margin-bottom: 15px; font-size: 1.4rem; color: var(--navy); }

/* About */
.page-header { background-color: var(--navy); color: var(--white); padding: 60px 0; text-align: center; }
.page-header h1 { font-family: var(--font-serif); font-size: 2.5rem; }

.about-flex { display: flex; gap: 60px; align-items: center; }
.text-side { flex: 1; }
.text-side h2 { font-family: var(--font-serif); color: var(--navy); font-size: 2rem; margin-bottom: 20px; }
.line-left { width: 50px; height: 3px; background-color: var(--gold); margin-bottom: 25px; }
.check-list { list-style: none; margin-top: 25px; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; font-weight: 500; }
.check-list li::before { content: "✓"; color: var(--gold); position: absolute; left: 0; font-weight: bold; }
.img-side { flex: 1; }
.img-side img { width: 100%; border: 10px solid var(--grey); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); border: 1px solid #eee; padding: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.stars { color: var(--gold); margin-bottom: 15px; }
.review-card p { font-style: italic; color: #555; margin-bottom: 20px; }
.author { font-weight: bold; color: var(--navy); display: block; font-family: var(--font-serif); }

/* Contact Form */
.contact-box { display: flex; background: var(--grey); }
.contact-info { flex: 1; background-color: var(--navy); color: var(--white); padding: 60px; }
.contact-info h2 { font-family: var(--font-serif); margin-bottom: 30px; color: var(--gold); }
.info-item { margin-bottom: 25px; }
.info-item strong { display: block; margin-bottom: 5px; color: var(--gold); }

.classic-form { flex: 1.5; padding: 60px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background-color: var(--white); font-family: var(--font-sans); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; }
.submit-btn { width: 100%; background-color: var(--gold); color: var(--white); border: none; padding: 15px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background-color: var(--navy); }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border: 1px solid #eee; }
.legal-content h1 { font-family: var(--font-serif); color: var(--navy); text-align: center; }
.divider-left { width: 50px; height: 3px; background-color: var(--gold); margin: 20px auto 40px; }
.legal-content h3 { color: var(--navy); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-serif); }

/* Footer */
.law-footer { background-color: var(--navy); color: #ccc; padding: 50px 0; margin-top: auto; }
.footer-content { text-align: center; }
.f-brand { font-family: var(--font-serif); color: var(--white); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 20px; }
.f-links a { color: #ccc; margin: 0 15px; font-size: 0.9rem; }
.f-links a:hover { color: var(--gold); }
.copyright { margin-top: 30px; font-size: 0.8rem; border-top: 1px solid #335577; padding-top: 20px; }

@media (max-width: 900px) {
    .law-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .grid-3, .about-flex, .review-grid, .contact-box { grid-template-columns: 1fr; flex-direction: column; }
}