/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fefefe;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.015) 1px, transparent 0);
    background-size: 20px 20px;
    font-weight: 300;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo h1,
.logo .logo-text {
    font-size: 1.85rem;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Crimson Text', Georgia, serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

/* Language Switcher - DISABLED */
/*
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lang-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.lang-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    user-select: none;
}
*/

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #c0c0c0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    animation: shimmer 0.8s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

@keyframes shimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; transform: scaleX(1.05); }
    100% { opacity: 0.8; }
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-content {
    padding-top: 2rem;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1e1e1e 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="white" opacity="0.05"/><circle cx="80" cy="80" r="0.3" fill="white" opacity="0.03"/><circle cx="40" cy="70" r="0.4" fill="white" opacity="0.04"/><circle cx="90" cy="10" r="0.2" fill="white" opacity="0.02"/><circle cx="10" cy="90" r="0.6" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.03) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.02) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.01) 50%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.005) 50%, transparent 100%),
        linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.1);
    font-family: 'Crimson Text', Georgia, serif;
}

.hero-tagline {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1e1e1e 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.4" fill="white" opacity="0.04"/><circle cx="70" cy="70" r="0.3" fill="white" opacity="0.03"/><circle cx="50" cy="80" r="0.5" fill="white" opacity="0.02"/><circle cx="80" cy="20" r="0.2" fill="white" opacity="0.05"/><circle cx="20" cy="80" r="0.3" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.02) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.025) 0%, transparent 60%),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.008) 50%, transparent 60%);
    pointer-events: none;
}

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

.page-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(255, 255, 255, 0.08);
    font-family: 'Crimson Text', Georgia, serif;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: 2px solid transparent;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Sections */
.content-section,
.practice-areas,
.attorney-profile,
.why-choose,
.values-section,
.experience-section,
.services-detailed,
.team-section,
.resources-section,
.contact-section {
    padding: 5rem 0;
}

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

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

.section-header h3 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Attorney Profile Section */
.attorney-profile {
    background: linear-gradient(135deg, rgba(248,248,248,0.4) 0%, rgba(252,252,252,0.6) 100%);
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-image {
    position: relative;
}

.attorney-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.05) brightness(1.02);
    border: 2px solid rgba(255, 255, 255, 0.9);
    position: relative;
}

.attorney-photo-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.attorney-photo-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.placeholder-content {
    text-align: center;
    color: white;
}

.placeholder-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.placeholder-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.placeholder-content .photo-coming-soon {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.5rem;
}

.attorney-photo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    filter: contrast(1.08) brightness(1.05);
    border-color: rgba(255, 255, 255, 1);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(248,248,248,0.6) 0%, rgba(252,252,252,0.8) 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image:hover::before {
    opacity: 1;
}

.profile-text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.profile-text h4 {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.profile-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.credential-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    border-left: 3px solid #1a1a1a;
}

.credential-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.credential-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    padding: 2rem;
    background: rgba(248, 248, 248, 0.5);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(248, 248, 248, 0.8);
    transform: translateY(-3px);
}

/* Service Details */
.service-detail {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    border-left: 3px solid #1a1a1a;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #555;
}

.service-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 500;
}

.service-list li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-member.featured-member {
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(26, 26, 26, 0.1);
    text-align: center;
}

.team-member.featured-member h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member.featured-member h5 {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.founding-vision, .founder-qualifications {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(248, 248, 248, 0.6);
    border-radius: 4px;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.expertise-tag {
    background: rgba(26, 26, 26, 0.08);
    color: #1a1a1a;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 400;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.qualification-item {
    padding: 1.5rem;
    background: rgba(248, 248, 248, 0.6);
    border-radius: 4px;
}

/* Resources */
.resources-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.resource-category {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    border-left: 3px solid #1a1a1a;
}

.resource-items {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-item {
    padding: 1.5rem;
    background: rgba(248, 248, 248, 0.6);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(248, 248, 248, 0.9);
    transform: translateX(5px);
}

.resource-date {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.6);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expectation-item {
    padding: 1.5rem;
    background: rgba(248, 248, 248, 0.6);
    border-radius: 4px;
}

/* CTA Section */
.cta-section,
.contact-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(248,248,248,0.6) 0%, rgba(252,252,252,0.8) 100%);
    text-align: center;
}

.cta-content,
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h3,
.contact-content h3 {
    margin-bottom: 1rem;
}

.cta-content p,
.contact-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #666;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-info h4,
.footer-contact {
    margin-bottom: 1rem;
}

.footer-info h4 {
    color: white;
    font-size: 1.5rem;
}

.footer-info p,
.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact {
    text-align: right;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Additional Styling */
.text-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Touch and Interaction Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Touch device specific styles */
    .service-card:hover,
    .team-member:hover,
    .benefit-item:hover,
    .resource-item:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .cta-button:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .nav-link:hover {
        transform: none;
    }
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Better text rendering on mobile */
body {
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: rgba(26, 26, 26, 0.1);
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.achievement-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #555;
}

.achievement-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 500;
}

.achievement-list li:last-child {
    border-bottom: none;
}

.resources-disclaimer {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    border-left: 3px solid #e0a800;
}

.resources-disclaimer h3 {
    color: #d19900;
    margin-bottom: 1rem;
}

.resources-disclaimer p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile-First Responsive Design */
@media (max-width: 480px) {
    /* Ultra small screens */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        color: #ffffff;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    
    .page-hero h2 {
        font-size: 2rem;
        color: #ffffff;
        text-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(255, 255, 255, 0.08);
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Mobile Language Switcher - DISABLED */
    /*
    .language-switcher {
        position: absolute;
        top: 50%;
        right: 60px;
        transform: translateY(-50%);
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .lang-link {
        padding: 0.2rem 0.4rem;
        font-size: 0.8rem;
    }
    */
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 44px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        color: #ffffff;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    
    .page-hero h2 {
        font-size: 2.5rem;
        color: #ffffff;
        text-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(255, 255, 255, 0.08);
    }
    
    .page-hero p {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    /* Layout adjustments */
    .nav-container {
        padding: 0 1rem;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .page-hero-content {
        padding: 0 1rem;
    }
    
    /* Grids and Cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expectation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        text-align: left;
    }
    
    /* Buttons and CTAs */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        text-align: center;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    /* Sections padding */
    .content-section,
    .practice-areas,
    .attorney-profile,
    .why-choose,
    .values-section,
    .experience-section,
    .services-detailed,
    .team-section,
    .resources-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 4rem 0 3rem;
    }
    
    .hero {
        min-height: 75vh;
        padding: 2rem 0;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .attorney-photo,
    .attorney-photo-placeholder {
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .credentials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet styles */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .content-container {
        padding: 0 1.5rem;
    }
}

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

/* Page Transition Animation */
.main-content {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}