:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-light-gold: #f4e6a1;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light-gray: #666666;
    --border-dark: #333333;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e6a1 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--primary-dark);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-dark);
}

nav.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: var(--accent-gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-cta:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 2rem 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1.2s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 25px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-accent {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1.2s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-awards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.award-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-dark);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.award-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-year {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.award-title {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.award-org {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-family: 'Inter', sans-serif;
}

/* Practice Areas Section */
.practice-areas {
    padding: 8rem 0;
    background: var(--secondary-dark);
    position: relative;
}

.practice-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.practice-card {
    background: var(--primary-dark);
    border: 1px solid var(--border-dark);
    padding: 3rem;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    group: hover;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.practice-card:hover::before {
    left: 100%;
}

.practice-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
    color: var(--accent-gold);
}

.practice-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.practice-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.practice-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.practice-link:hover {
    gap: 1rem;
}

/* Statistics Section */
.stats {
    padding: 6rem 0;
    background: var(--primary-dark);
    border-top: 1px solid var(--border-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: var(--secondary-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    background: var(--primary-dark);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.team-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-gold);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--primary-dark);
    border-top: 1px solid var(--border-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-dark);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.contact-form {
    background: var(--secondary-dark);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--primary-dark);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-gray);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light-gray);
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }

    .practices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}