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

:root {
    /* Ultra Modern Color Palette */
    --primary: #0f172a;
    --primary-light: #1e293b;
    --secondary: #3b82f6;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Modern Neutrals */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    
    /* Sophisticated Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    
    /* Modern Border Radius */
    --border-radius: 20px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-2xl: 40px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Ultra Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.nav-logo h2 {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.025em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo .subtitle {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: -2px;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
    letter-spacing: 0.025em;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.language-switch {
    display: flex;
    gap: 0.25rem;
    margin-left: 2rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.lang-btn {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    border-radius: calc(var(--border-radius) - 4px);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--dark);
    transition: 0.3s;
    border-radius: 2px;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

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

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.law-office-image {
    width: 500px;
    height: 500px;
    background: var(--gradient-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: float 8s ease-in-out infinite;
    box-shadow: var(--shadow-glow);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
}

.law-office-image::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.law-office-image i {
    font-size: 10rem;
    color: var(--white);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Ultra Modern Section Styles */
.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Ultra Modern About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%230f172a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

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

.about-text h3 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.125rem;
    font-weight: 400;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.stat-item h3 {
    font-size: 3rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.stat-item p {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.025em;
}

/* Ultra Modern Services Section */
.services {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-glow);
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

/* Ultra Modern Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%230f172a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-glow);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    color: var(--white);
    font-size: 1.75rem;
}

.contact-details h4 {
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.contact-details p {
    color: var(--gray-600);
    font-size: 1.125rem;
    font-weight: 400;
}

.contact-details a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary-dark);
}

/* Contact Map Section */
.contact-map {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: var(--border-radius-xl);
    border: 2px dashed var(--gray-300);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%230f172a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.map-placeholder:hover {
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    transform: scale(1.02);
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.3));
}

.map-placeholder h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.map-placeholder p {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1.125rem;
    font-weight: 400;
}

.map-info {
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.map-info p {
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
}

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

.map-info strong {
    color: var(--dark);
    font-weight: 700;
}

/* Ultra Modern Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-700);
}

.footer-logo h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    opacity: 0.8;
    color: var(--gray-400);
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

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

.footer-bottom {
    text-align: center;
    opacity: 0.8;
    color: var(--gray-400);
    font-weight: 500;
}

/* 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: var(--shadow-xl);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .law-office-image {
        width: 350px;
        height: 350px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

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

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-icon i {
        font-size: 1.75rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Mobile Contact Improvements */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .contact-details h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .contact-details a {
        font-size: 1rem;
        word-break: break-word;
    }

    .contact-map {
        padding: 2rem;
    }

    .map-placeholder {
        padding: 2rem 1.5rem;
    }

    .map-placeholder i {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .map-placeholder h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .map-placeholder p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .map-info {
        padding: 1.5rem;
    }

    .map-info p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    /* Mobile Contact Further Improvements */
    .contact-item {
        padding: 2.5rem 2rem;
        gap: 2rem;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
    }

    .contact-icon i {
        font-size: 1.75rem;
    }

    .contact-details h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .contact-details p {
        font-size: 1.125rem;
    }

    .contact-details a {
        font-size: 1.125rem;
        padding: 0.5rem 0;
        display: inline-block;
    }

    .contact-map {
        padding: 2.5rem 2rem;
    }

    .map-placeholder {
        padding: 2.5rem 2rem;
    }

    .map-placeholder i {
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    .map-placeholder h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .map-placeholder p {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }

    .map-info {
        padding: 2rem;
    }

    .map-info p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .law-office-image {
        width: 280px;
        height: 280px;
    }

    .law-office-image i {
        font-size: 7rem;
    }

    /* Mobile Navigation Improvements */
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .nav-logo .subtitle {
        font-size: 0.8rem;
    }

    /* Mobile Hero Improvements */
    .hero {
        padding-top: 120px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Mobile About Improvements */
    .about {
        padding: 6rem 0;
    }

    .about-text h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        padding: 2.5rem 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    /* Mobile Services Improvements */
    .services {
        padding: 6rem 0;
    }

    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 4rem;
    }

    /* Mobile Footer Improvements */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-item {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .contact-details h4 {
        font-size: 1.125rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .contact-details a {
        font-size: 1rem;
    }

    .law-office-image {
        width: 250px;
        height: 250px;
    }

    .law-office-image i {
        font-size: 6rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .service-icon i {
        font-size: 1.75rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
} 