:root {
    --navy: #0a192f;
    --gold: #c5a059;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --text: #333;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 1.3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li { margin-left: 30px; }
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* Hero Section */
.hero {
    height: 75vh;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), 
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    color: var(--gold);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 15px;
    font-size: 1.2rem;
}

/* Новият стил за имената на адвокатите */
.attorneys-names {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid rgba(197, 160, 89, 0.4);
    display: inline-block;
    padding-top: 15px;
}

/* Quote Section */
.quote-wrapper {
    max-width: 900px;
    margin: -60px auto 60px;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 4px solid var(--gold);
    position: relative;
    z-index: 5;
    text-align: center;
}

.legal-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
}

/* Practice Grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.practice-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--gold);
}

.practice-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.practice-card ul { padding: 0; list-style: none; }
.practice-card li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.practice-card li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer */
.footer-grid {
    background: var(--navy);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info { padding: 80px 60px; }
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-decoration: none;
    color: white;
}

.contact-icon { margin-right: 20px; }

.map-wrapper { height: 100%; min-height: 450px; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* Mobile Adjustments */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    .hero { height: auto; padding: 150px 20px 100px; }
    .quote-wrapper { padding: 30px; margin: -40px 20px 40px; }
    .practice-grid { grid-template-columns: 1fr; }
    .attorneys-names { font-size: 0.9rem; }
}