/* styles.css */
:root {
    --navy: #0a2342;
    --gold: #c99700;
    --light-gold: #e0b31e;
    --light-bg: #f8f5ee;
    --white: #ffffff;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    background-attachment: fixed;
    color: #F1F5F9;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(10, 35, 66, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 151, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 151, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.contact-info a:hover {
    color: var(--gold);
}

.main-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 28px;
    color: #F1F5F9;
    font-weight: 700;
}

.logo span {
    color: var(--gold);
}

.logo p {
    font-size: 14px;
    color: rgba(241, 245, 249, 0.7);
    margin-top: 5px;
    letter-spacing: 1.5px;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #F1F5F9;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Client Portal Button */
.btn-portal {
    background-color: var(--gold) !important;
    color: var(--navy) !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s !important;
}

.btn-portal:hover {
    background-color: var(--light-gold) !important;
    color: var(--navy) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(201, 151, 0, 0.3) !important;
}

.btn-portal::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #F1F5F9;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.85)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-banner {
            background-color: var(--gold);
            color: var(--navy);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(201, 151, 0, 0.3);
        }

        .hero-banner h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            line-height: 1.4;
        }

.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 10px;
}

.btn:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Practice Areas */
.practice-areas {
    padding: 100px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #F1F5F9;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: rgba(241, 245, 249, 0.8);
    margin-top: 20px;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0a2342 0%, #c99700 50%, #0a2342 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.05) 0%, rgba(201, 151, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.3), 0 8px 16px rgba(201, 151, 0, 0.2);
    border-color: rgba(201, 151, 0, 0.5);
}

.card:hover::before {
    opacity: 1;
    height: 6px;
}

.card:hover::after {
    opacity: 1;
}

.card-icon {
    background-color: var(--navy);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
}

.card-content {
    padding: 35px 30px;
    position: relative;
    z-index: 2;
}

.card h3 {
    font-size: 1.6rem;
    color: #F1F5F9;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.card p {
    color: rgba(241, 245, 249, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.card a:hover {
    gap: 12px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(10, 35, 66, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
    transition: all 0.5s;
}

.about-image:hover {
    transform: rotate(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2.8rem;
    color: #F1F5F9;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text p {
    color: rgba(241, 245, 249, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a2342 0%, #c99700 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.3), 0 8px 16px rgba(201, 151, 0, 0.2);
    border-color: rgba(201, 151, 0, 0.5);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.stat-item p {
    color: #F1F5F9;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Attorneys */
.attorneys {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0a2342 0%, #c99700 50%, #0a2342 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.3), 0 8px 16px rgba(201, 151, 0, 0.2);
    border-color: rgba(201, 151, 0, 0.5);
}

.team-member:hover::before {
    opacity: 1;
    height: 6px;
}

.member-photo {
    height: 350px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    color: #F1F5F9;
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.member-info p.position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.member-info p {
    color: rgba(241, 245, 249, 0.8);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--navy);
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: transparent;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-content {
        text-align: center;
    }
}

.testimonial-content h2 {
    font-size: 2.8rem;
    color: #F1F5F9;
    margin-bottom: 30px;
    font-weight: 700;
}

.testimonial {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    border-left: 5px solid var(--gold);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.3), 0 8px 16px rgba(201, 151, 0, 0.2);
    border-color: rgba(201, 151, 0, 0.5);
}

.testimonial p {
    font-size: 1.2rem;
    color: rgba(241, 245, 249, 0.9);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.8;
}

.testimonial p::before {
    content: '"';
    font-size: 80px;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    color: #F1F5F9;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.client-details p {
    color: rgba(241, 245, 249, 0.8);
    font-style: normal;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.9)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-cta .btn {
    margin: 10px;
    display: inline-block;
}

/* Footer */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--gold);
    bottom: 0;
    left: 0;
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 1;
    color: var(--gold);
}

/* Page Content Styles */
.page-content {
    padding: 100px 0;
    min-height: 70vh;
}

.page-hero {
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.85)), 
                url('https://images.unsplash.com/photo-1589391886645-d51941baf7fb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start;
}

.sidebar-widget {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sidebar-widget h3 {
    color: #F1F5F9;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
}

.sidebar-widget h3:not(:first-child) {
    margin-top: 30px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: rgba(241, 245, 249, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.sidebar-widget ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.sidebar-widget .btn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    display: block;
}

.practice-detail {
    margin-bottom: 50px;
}

.practice-detail h3 {
    color: #F1F5F9;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.practice-detail ul {
    margin: 20px 0;
    padding-left: 20px;
}

.practice-detail ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-form {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #F1F5F9;
    text-align: left;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.form-group input[type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
}

.location-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.3), 0 8px 16px rgba(201, 151, 0, 0.2);
    border-color: rgba(201, 151, 0, 0.5);
}

.location-card h3 {
    color: #F1F5F9;
    margin-bottom: 15px;
}

.location-card p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.location-card p:last-child {
    margin-bottom: 0;
}

.location-card i {
    color: var(--gold);
    min-width: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.history-timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 30px;
    border-left: 3px solid var(--gold);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    left: -34px;
    top: 5px;
}

.timeline-item h3 {
    color: #F1F5F9;
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    color: #F1F5F9;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.faq-item p {
    color: rgba(241, 245, 249, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Practice Areas Grid */
.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.practice-area {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.practice-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0a2342 0%, #c99700 50%, #0a2342 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.practice-area:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10, 35, 66, 0.3), 0 8px 16px rgba(201, 151, 0, 0.2);
    border-color: rgba(201, 151, 0, 0.5);
}

.practice-area:hover::before {
    opacity: 1;
    height: 6px;
}

.area-icon {
    background-color: var(--navy);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
}

.area-content {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.area-content h3 {
    font-size: 1.6rem;
    color: #F1F5F9;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.area-content p {
    color: rgba(241, 245, 249, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
    flex: 1;
    position: relative;
    z-index: 2;
}

.area-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-content ul li {
    color: rgba(241, 245, 249, 0.8);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    z-index: 2;
}

.area-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* FAQ Intro */
.faq-intro {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 151, 0, 0.3);
    border-left: 4px solid var(--gold);
    padding: 25px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(10, 35, 66, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-intro p {
    color: rgba(241, 245, 249, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
        width: 100%;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .btn {
        display: block;
        margin: 15px auto;
        width: 80%;
        max-width: 300px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }

    .contact-cta h2 {
        font-size: 2.2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta p {
        font-size: 1.1rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}