/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1E3A8A;
    --dark-blue: #1E40AF;
    --accent-blue: #3B82F6;
    --rich-black: #0F172A;
    --charcoal: #1E293B;
    --warm-gray: #334155;
    --light-gray: #F8FAFC;
    --white: #FFFFFF;
    --accent-red: #DC2626;
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    --gradient-dark: linear-gradient(135deg, var(--rich-black) 0%, var(--charcoal) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--rich-black);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.nav-logo .tagline {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--rich-black);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--accent-blue);
    padding-left: 25px;
}

.nav-phone {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%233B82F6" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="1200" height="800" fill="%230F172A"/><rect width="1200" height="800" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .accent {
    color: var(--accent-blue);
    display: block;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: var(--white);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

/* Media Features Section */
.media-features {
    padding: 80px 0;
    background: var(--light-gray);
}

.media-features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--rich-black);
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.media-logo {
    padding: 20px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.media-logo:hover {
    transform: translateY(-5px);
}

/* Media Logo Styles */
.logo-image {
    max-height: 50px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%) brightness(0.9);
    transition: all 0.3s ease;
}

.media-logo:hover .logo-image {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Scrolling media logos */
.media-scroller {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    background: var(--light-gray);
}

.media-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: media-scroll 120s linear infinite;
}

@keyframes media-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.media-scroller .logo-image {
    flex: 0 0 auto;
    height: 56px;
    width: calc((100vw - (3rem * 3)) / 4); /* exactly 4 logos visible accounting for 3 gaps */
    object-fit: contain;
    opacity: 0.95;
    filter: grayscale(100%) brightness(0.9);
}

.media-scroller .logo-image:hover {
    opacity: 1;
}

/* Featured Cases Section */
.featured-cases {
    padding: 100px 0;
    background: var(--white);
}

.featured-cases h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--rich-black);
}

/* New Notable Cases Grid */
.cases-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.case-card-new {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-blue);
}

.case-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.case-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.case-card-new h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--rich-black);
    margin: 1rem 1rem 0.5rem 1rem;
    line-height: 1.3;
}

.case-desc {
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-style: italic;
    margin: 0 1rem 0.5rem 1rem;
    line-height: 1.3;
}

.case-result {
    margin: 0 1rem 1rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.verdict-green {
    color: #28a745;
    font-weight: 600;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cases-row {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    overflow-x: auto;
    padding: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cases-row .case-card {
    flex: 0 0 250px;
    width: 250px;
    height: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.cases-row .case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.case-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-blue);
    overflow: visible;
    margin: 0 5px;
}

.case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
    flex-shrink: 0;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content h3 {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--rich-black);
    font-weight: 600;
    flex-shrink: 0;
    display: block;
    visibility: visible;
}

.case-description {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--warm-gray);
    flex-shrink: 0;
    font-style: italic;
    display: block;
    visibility: visible;
}

.case-verdict {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    display: block;
    visibility: visible;
}

.case-card strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.case-card em {
    color: var(--charcoal);
    font-style: italic;
    font-size: 0.7rem;
}

.verdict-green {
    color: #28a745;
    font-weight: 600;
}

.case-click-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-top: auto;
    padding: 0.5rem 1rem;
    background: var(--accent-blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.case-card:hover .case-click-hint {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Case Modal Styles */
.case-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.case-modal .modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.case-modal .close {
    color: var(--warm-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 1001;
}

.case-modal .close:hover {
    color: var(--accent-blue);
}

.case-details {
    margin-top: 1rem;
}

.case-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.case-header h3 {
    color: var(--warm-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.case-result-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 25px;
    border: 2px solid #28a745;
}

.case-description h4 {
    color: var(--rich-black);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.case-description p {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.case-description li {
    margin-bottom: 0.5rem;
    color: var(--warm-gray);
}

/* Practice Areas Preview */
.practice-areas-preview {
    padding: 100px 0;
    background: var(--light-gray);
}

.practice-areas-preview h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.practice-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.practice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
    border-color: var(--accent-blue);
}

.practice-item i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.practice-item h3 {
    color: var(--rich-black);
    font-size: 1.1rem;
}

/* Expert Team & Resources */
.expert-team {
    padding: 100px 0;
    background: var(--white);
}

.expert-team h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.expert-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.expert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
    border-color: var(--accent-blue);
}

.expert-item i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.expert-item h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expert-item p {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Attorney Bio Styles */
.attorney-bio {
    padding: 4rem 0;
    background: var(--white);
}

.bio-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-blue);
}

.founder-photo {
    margin-bottom: 2rem;
}

.attorney-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-blue);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    transition: transform 0.3s ease;
}

.attorney-photo:hover {
    transform: scale(1.05);
}

.bio-header h2 {
    color: var(--rich-black);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bio-header h3 {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-details p {
    margin: 0.5rem 0;
    color: var(--rich-black);
}

.contact-details a {
    color: var(--accent-blue);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.bio-text {
    line-height: 1.8;
    color: var(--warm-gray);
    font-size: 1.1rem;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

/* Practice Areas Detail */
.practice-areas-detail {
    padding: 3rem 0;
    background: var(--light-gray);
}

.practice-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.practice-category {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.practice-category h3 {
    color: var(--accent-blue);
    margin: 0;
}

/* Bar Admissions */
.bar-admissions {
    padding: 4rem 0;
    background: var(--white);
}

.admissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.admission-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.admission-item:hover {
    transform: translateY(-3px);
}

.admission-item i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.admission-item h3 {
    color: var(--rich-black);
    font-size: 1rem;
    margin: 0;
}

/* Education Section */
.education-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.education-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.school-logo i {
    font-size: 3rem;
    color: var(--accent-blue);
}

.education-details h3 {
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.education-details p {
    color: var(--warm-gray);
    margin: 0.25rem 0;
}

/* Representative Cases */
.representative-cases {
    padding: 4rem 0;
    background: var(--white);
}

.cases-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.case-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-blue);
}

.case-item h4 {
    color: var(--rich-black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.case-item p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Professional Info */
.professional-info {
    padding: 4rem 0;
    background: var(--light-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-section h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.info-section p {
    color: var(--warm-gray);
    margin: 0.5rem 0;
}

.info-section ul {
    color: var(--warm-gray);
    padding-left: 1.5rem;
}

.info-section li {
    margin: 0.5rem 0;
}

.text-center {
    text-align: center;
}

/* Call to Action */
.cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-info {
    margin-top: 2rem;
}

.cta-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--rich-black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--warm-gray);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light-gray);
        margin-top: 0.5rem;
        border-radius: 0;
    }

    .dropdown-item {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    }

    .dropdown-item:hover {
        background: var(--accent-blue);
        color: var(--white);
        padding-left: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .accent {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .media-logos {
        gap: 1rem;
    }

    .logo-image {
        max-height: 50px;
        max-width: 140px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .case-card-new {
        width: 100%;
    }

    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-title .accent {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid-new {
        grid-template-columns: 1fr;
    }

    .expert-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Practice Areas Detailed Styles */
.practice-areas-detailed {
    padding: 80px 0;
    background: var(--white);
}

.intro-text {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text h2 {
    color: var(--accent-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-decoration: underline;
}

.intro-text p {
    font-size: 1.2rem;
    color: var(--warm-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.practice-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.practice-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-blue);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.practice-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.practice-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.practice-card h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.practice-card p {
    color: var(--warm-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.practice-card ul {
    list-style: none;
    padding-left: 0;
}

.practice-card ul li {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.practice-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Additional Practice Areas */
.additional-practice {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--light-gray);
}

.additional-practice h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 2rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.additional-item h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.additional-item p {
    color: var(--warm-gray);
}

/* Expert Team Section */
.expert-team {
    padding: 80px 0;
    background: var(--light-gray);
}

.expert-team h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 1rem;
}


.expert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.expert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.expert-item i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.expert-item h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.expert-item p {
    color: var(--warm-gray);
}

/* Founder Page Styles */
.founder-hero {
    padding: 80px 0;
    background: var(--white);
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.founder-text h2 {
    color: var(--rich-black);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.founder-intro {
    font-size: 1.3rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.philosophy-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.philosophy-card h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: var(--white);
}

.experience-section h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 3rem;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-text p {
    font-size: 1.2rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-top: 0.5rem;
}

.highlight-item h4 {
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--warm-gray);
    margin-bottom: 0;
}

/* Team Approach Section */
.team-approach {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-approach h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-card i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.team-card h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--warm-gray);
}

/* Notable Cases Section */
.notable-cases {
    padding: 80px 0;
    background: var(--white);
}

.notable-cases h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.case-description {
    font-style: italic;
    color: var(--warm-gray);
    margin-top: 1rem;
}

/* Client Commitment Section */
.client-commitment {
    padding: 80px 0;
    background: var(--light-gray);
}

.commitment-content h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.commitment-item h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.commitment-item p {
    color: var(--warm-gray);
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-blue);
}

.contact-card.emergency {
    border-top-color: var(--accent-red);
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card.emergency .contact-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, #dc2626 100%);
}

.contact-icon i {
    color: var(--white);
    font-size: 2rem;
}

.contact-card h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-card strong {
    color: var(--rich-black);
}

/* Intake Form Styles */
.intake-form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--warm-gray);
    line-height: 1.6;
}

.intake-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.5;
    margin-top: 0.5rem;
}

.submit-btn {
    justify-self: center;
    margin-top: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-us h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--warm-gray);
}

/* News Page Styles */
.news-section {
    padding: 80px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.news-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-blue);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.news-date {
    font-weight: 500;
    color: var(--accent-blue);
}

.news-source {
    background: var(--light-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--charcoal);
}

.news-title {
    color: var(--rich-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--accent-blue);
}

.news-summary {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid var(--accent-blue);
    border-radius: 25px;
    background: transparent;
}

.news-link:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.news-link i {
    font-size: 0.9rem;
}

/* News Image Styles */
.news-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .case-image {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

/* YouTube Video Play Overlay */
.news-image a {
    position: relative;
    display: block;
    text-decoration: none;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.play-overlay i {
    color: var(--white);
    font-size: 2rem;
    margin-left: 4px; /* Slight offset to center the play icon */
}

.news-image a:hover .play-overlay {
    background: rgba(220, 38, 38, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.news-image a:hover .case-image {
    transform: scale(1.05);
}

/* Media Recognition Section */
.media-recognition {
    padding: 80px 0;
    background: var(--light-gray);
}

.media-recognition h2 {
    text-align: center;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.recognition-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.recognition-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.recognition-item i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.recognition-item h3 {
    color: var(--rich-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.recognition-item p {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Responsive Design for News Page */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card {
        padding: 2rem;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .news-card {
        padding: 1.5rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
    padding: 4rem 0;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    font-size: 2.5rem;
    font-weight: 600;
}

.testimonials-scroller {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonials-scroller:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: testimonials-scroll 50s linear infinite;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 280px;
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-end;
}

.stars {
    color: #fbbc04;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.stars i {
    color: #fbbc04;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #3c4043;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.see-full-btn {
    background: none;
    border: none;
    color: #1a73e8;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.75rem;
    text-decoration: none;
    font-weight: 500;
}

.see-full-btn:hover {
    text-decoration: underline;
}

.testimonial-meta {
    margin-top: auto;
}

.testimonial-meta span {
    color: #5f6368;
    font-size: 0.8rem;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Password Protection Overlay */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.password-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.password-container h2 {
    color: var(--rich-black);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.password-container p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

#password-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

#password-input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.password-btn {
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.password-btn:hover {
    background: var(--rich-black);
    transform: translateY(-2px);
}

.password-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}

/* Legal Disclaimer */
.legal-disclaimer {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        width: 260px;
        padding: 1.25rem;
    }
    
    .testimonials-track {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 240px;
        padding: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
    }
    
    .testimonial-author strong {
        font-size: 0.9rem;
    }
    
    .stars {
        font-size: 0.8rem;
    }
    
    .stars i {
        font-size: 0.8rem;
    }
}

/* Practice Area Modals */
.practice-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

/* Accordion Styles */
.accordion {
    margin: 1rem 0;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-header {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-body {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.accordion-body ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

/* Notable Cases Section */
.notable-cases {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.case-result {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.case-result h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.case-result .result {
    font-weight: 600;
    color: #28a745;
    margin-top: 0.5rem;
}

.practice-modal .modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.practice-modal .close {
    color: var(--text-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 1001;
}

.practice-modal .close:hover {
    color: var(--primary-color);
}

.practice-modal h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.practice-modal h3 {
    color: var(--dark-gray);
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.practice-modal h4 {
    color: var(--dark-gray);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.practice-modal p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.practice-modal ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.practice-modal li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.practice-modal .consultation-btn {
    margin-top: 2rem;
    width: 100%;
    max-width: 300px;
}

/* Practice Item Hover Effect */
.practice-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.practice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .practice-modal .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .practice-modal h2 {
        font-size: 1.6rem;
    }
    
    .practice-modal h3 {
        font-size: 1.2rem;
    }
    
    .practice-modal h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .practice-modal .modal-content {
        margin: 2% auto;
        padding: 1rem;
        width: 98%;
    }
    
    .practice-modal .close {
        font-size: 1.5rem;
        top: 0.5rem;
        right: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
