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

:root {
    --primary-color: #102d4f;
    --secondary-color: #124076;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #4a5568;
    --gray-light: #f7fafc;
    --gray-border: #e2e8f0;
    --accent-gradient: linear-gradient(135deg, #102d4f 0%, #124076 50%, #1a5a8a 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 6px;
    border: 2px solid var(--gray-light);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #124076 0%, #102d4f 50%, #0a1f3a 100%);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray-light);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar - Elegant Contact Info */
.top-bar {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.6rem 0;
    position: relative;
    z-index: 1001;
    border-bottom: none;
    margin-bottom: 0;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 20%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.2) 80%, 
        transparent 100%);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.95;
    padding: 0.3rem 0;
    cursor: pointer;
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.top-bar-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.top-bar-item:hover svg {
    transform: scale(1.15);
}

.top-bar-item span {
    font-weight: 500;
    white-space: nowrap;
}

/* Modern Header with Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(16, 45, 79, 0.08);
    margin-bottom: 0;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(16, 45, 79, 0.1) 20%, 
        rgba(16, 45, 79, 0.2) 50%, 
        rgba(16, 45, 79, 0.1) 80%, 
        transparent 100%);
    opacity: 0.6;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(16, 45, 79, 0.12);
    background: rgba(255, 255, 255, 0.99);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(16, 45, 79, 0.15));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 15px rgba(16, 45, 79, 0.25));
}

.nav {
    position: relative;
}

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

.nav-list li {
    position: relative;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    display: block;
    overflow: hidden;
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 45, 79, 0.08) 0%, rgba(18, 64, 118, 0.08) 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    z-index: -1;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px 2px 0 0;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-list a:hover::before,
.nav-list a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 80%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-list a.active {
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section - Ultra Modern */
.hero {
    position: relative;
    height: 800px;
    min-height: 800px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(16, 45, 79, 0.1) 0%, 
        rgba(16, 45, 79, 0.05) 30%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(16, 45, 79, 0.4) 0%, rgba(16, 45, 79, 0.2) 40%, transparent 70%);
    z-index: -1;
    animation: heroImageFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-image {
    width: auto;
    height: 800px;
    max-width: 90%;
    max-height: 800px;
    object-fit: contain;
    object-position: center center;
    opacity: 0.9;
    filter: grayscale(0%) brightness(1) contrast(1.1);
    animation: heroImageFloat 20s ease-in-out infinite;
    display: block;
    position: relative;
    z-index: 0;
    margin: 0;
    align-self: center;
    /* Yumuşak kenar geçişi */
    -webkit-mask-image: 
        radial-gradient(ellipse 100% 100% at center, black 60%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: 
        radial-gradient(ellipse 100% 100% at center, black 60%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    /* Yumuşak gölge efekti */
    filter: grayscale(0%) brightness(1) contrast(1.1) drop-shadow(0 0 30px rgba(16, 45, 79, 0.3));
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: scale(1) translateY(0) translateX(0);
    }
    50% {
        transform: scale(1.02) translateY(-5px) translateX(5px);
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0.25;
    z-index: 1;
    mix-blend-mode: overlay;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: patternMove 25s ease-in-out infinite;
    opacity: 0.6;
}

.hero-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(16, 45, 79, 0.3) 0%, rgba(18, 64, 118, 0.2) 100%);
    animation: patternPulse 15s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    33% {
        transform: translate(5%, -5%) rotate(5deg);
        opacity: 0.9;
    }
    66% {
        transform: translate(-5%, 5%) rotate(-5deg);
        opacity: 0.95;
    }
}

@keyframes patternPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to right, rgba(16, 45, 79, 0.5) 0%, rgba(16, 45, 79, 0.15) 40%, rgba(16, 45, 79, 0.2) 60%, rgba(16, 45, 79, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 0.5),
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 8px 40px rgba(0, 0, 0, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 5px rgba(16, 45, 79, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.4),
        0 3px 20px rgba(0, 0, 0, 0.3),
        0 1px 8px rgba(0, 0, 0, 0.5),
        0 0 3px rgba(16, 45, 79, 0.6);
}

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

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    border: none;
    text-shadow: none;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    background: var(--accent-gradient);
    color: var(--white);
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 45, 79, 0.4);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

/* About Section */
.about-section {
    background: var(--white);
    position: relative;
}

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

.about-content {
    max-width: 950px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    max-width: 100%;
}

/* Experience Section - Modern Gradient with Animated Pattern */
.experience-section {
    background: var(--accent-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    overflow: hidden;
}

/* Wheel Icons */
.wheel-icon {
    position: absolute;
    animation: wheelFloat 25s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.1));
}

.wheel-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wheel-1 {
    top: 10%;
    left: 8%;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation-duration: 30s;
}

.wheel-2 {
    bottom: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 10s;
    animation-duration: 35s;
}

.wheel-3 {
    top: 50%;
    right: 5%;
    width: 90px;
    height: 90px;
    animation-delay: 20s;
    animation-duration: 28s;
}

@keyframes wheelFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(40px, -30px) rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 40px) rotate(180deg) scale(0.95);
        opacity: 0.55;
    }
    75% {
        transform: translate(20px, 20px) rotate(270deg) scale(1.05);
        opacity: 0.58;
    }
}

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

.experience-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.experience-text {
    font-size: 1.25rem;
    line-height: 2;
    opacity: 0.95;
    font-weight: 400;
}

/* Practice Areas Section - Modern Tab System */
.practice-areas-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-light) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

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

.practice-areas-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-border);
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    border-radius: 12px;
    letter-spacing: -0.01em;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 3px 3px 0 0;
}

.tab-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    border-radius: 12px;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.tab-btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-btn:hover::after {
    opacity: 0.08;
}

.tab-btn.active {
    color: var(--primary-color);
    font-weight: 700;
}

.tab-btn.active::before {
    transform: scaleX(1);
}

.tab-btn.active::after {
    opacity: 0.12;
}

.tabs-content {
    position: relative;
    min-height: 300px;
}

.tab-panel {
    display: none;
    animation: fadeInUp 0.5s ease-out;
    padding: 3rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
}

.tab-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    animation: slideIn 0.6s ease-out 0.2s forwards;
}

.tab-panel.active {
    display: block;
}

.tab-panel-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.tab-panel-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.tab-panel-text {
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
    max-width: 900px;
}

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

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.text-center {
    text-align: center;
}

/* Footer - Modern Design */
.footer {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.footer-text {
    line-height: 2;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-contact {
    list-style: none;
    line-height: 2.5;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.85;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(16, 45, 79, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(16, 45, 79, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Page Header */
.page-header {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Lawyers Section */
.lawyers-section {
    padding: 100px 0;
    background: var(--white);
}

.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.lawyer-card {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-border);
}

.lawyer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(16, 45, 79, 0.25);
    border-color: transparent;
}

.lawyer-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: var(--gray-light);
    position: relative;
}

.lawyer-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(16, 45, 79, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lawyer-card:hover .lawyer-image::after {
    opacity: 1;
}

.lawyer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lawyer-card:hover .lawyer-image img {
    transform: scale(1.1);
}

.lawyer-info {
    padding: 2.5rem;
}

.lawyer-name {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.lawyer-title {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.lawyer-firm {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-style: italic;
    font-weight: 500;
}

.lawyer-bio {
    line-height: 1.9;
}

.lawyer-bio p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1.05rem;
}

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

/* Practice Areas Detail Section */
.practice-areas-detail-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--gray-light) 0%, var(--white) 100%);
}

.practice-areas-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.practice-area-detail-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
}

.practice-area-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.practice-area-detail-card:hover::before {
    transform: scaleX(1);
}

.practice-area-detail-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(16, 45, 79, 0.2);
    border-color: transparent;
}

.practice-area-icon {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.practice-area-detail-card:hover .practice-area-icon {
    transform: scale(1.1) rotate(5deg);
}

.practice-area-detail-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.practice-area-detail-text {
    color: var(--text-light);
    line-height: 2;
    text-align: justify;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.8;
}

/* Articles Section */
.articles-section {
    padding: 100px 0;
    background: var(--white);
}

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

.article-card {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-border);
}

.article-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(16, 45, 79, 0.2);
    border-color: transparent;
}

.article-date {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    position: relative;
    overflow: hidden;
}

.article-date::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.article-day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
}

.article-month {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: 0.8rem;
    opacity: 0.95;
    display: block;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.article-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.article-category {
    background: linear-gradient(135deg, var(--gray-light) 0%, #e8eef5 100%);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-card:hover .article-category {
    background: var(--accent-gradient);
    color: var(--white);
    transform: scale(1.05);
}

.article-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    flex: 1;
    text-align: justify;
    font-size: 1.05rem;
}

.article-read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.article-read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    gap: 0.8rem;
}

.article-full-content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-border);
    animation: fadeIn 0.5s ease-in;
}

.article-full-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 1.05rem;
}

.article-full-content p:last-child {
    margin-bottom: 0;
}

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

/* Articles Preview Section - Ultra Modern Design */
.articles-preview-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-light) 50%, var(--white) 100%);
    position: relative;
}

.articles-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.article-preview-card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
}

.article-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.article-preview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.article-preview-card:hover::before {
    opacity: 0.03;
}

.article-preview-card:hover::after {
    transform: scaleX(1);
}

.article-preview-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 80px rgba(16, 45, 79, 0.25);
    border-color: rgba(16, 45, 79, 0.15);
}

.article-preview-icon-wrapper {
    background: var(--accent-gradient);
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.article-preview-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.article-preview-card:hover .article-preview-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.article-preview-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.article-preview-content-wrapper {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.article-preview-date-badge {
    background: rgba(16, 45, 79, 0.08);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    border: 1px solid rgba(16, 45, 79, 0.1);
    transition: all 0.3s ease;
}

.article-preview-card:hover .article-preview-date-badge {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.article-preview-day {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.article-preview-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.article-preview-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.article-preview-category {
    background: rgba(16, 45, 79, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 45, 79, 0.15);
}

.article-preview-card:hover .article-preview-category {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.article-preview-title {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.article-preview-card:hover .article-preview-title {
    color: var(--secondary-color);
}

.article-preview-excerpt {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: justify;
    margin-bottom: 2rem;
    flex: 1;
}

.article-preview-btn {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 5px 20px rgba(16, 45, 79, 0.25);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.article-preview-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.article-preview-btn:hover::before {
    width: 300px;
    height: 300px;
}

.article-preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 45, 79, 0.35);
    gap: 1rem;
}

.article-preview-btn:hover svg {
    transform: translateX(5px);
}

.article-preview-btn:active {
    transform: translateY(-1px);
}

.article-preview-btn svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.article-preview-btn span {
    position: relative;
    z-index: 1;
}

/* Article Modal */
.article-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.article-modal.active {
    display: flex;
}

.article-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.article-modal-content {
    background: var(--white);
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.article-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(16, 45, 79, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
}

.article-modal-close:hover {
    background: var(--accent-gradient);
    color: var(--white);
    transform: rotate(90deg);
}

.article-modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gray-border);
}

.article-modal-date {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 1.2rem 1.8rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(16, 45, 79, 0.2);
}

.article-modal-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.article-modal-month {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.article-modal-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: flex-start;
}

.article-modal-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2rem 2.5rem 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.article-modal-body {
    padding: 0 2.5rem 2.5rem;
}

.article-modal-body p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.1rem;
}

.article-modal-body p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 25px;
    height: fit-content;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-border);
}

.contact-info-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-info-text {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-item {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(16, 45, 79, 0.15);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(16, 45, 79, 0.25);
    background: var(--accent-gradient);
}

.contact-item:hover .contact-icon svg {
    filter: brightness(0) invert(1);
}

.contact-details {
    flex: 1;
}

.contact-item-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.contact-item-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.contact-item-text a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-border);
}

.contact-form-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

.form-label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 45, 79, 0.1);
    transform: translateY(-2px);
}

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

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .top-bar {
        padding: 0.5rem 0;
    }

    .top-bar-info {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-item {
        font-size: 0.85rem;
    }

    .top-bar-item span {
        white-space: normal;
    }

    .nav-list {
        position: fixed;
        top: 120px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        gap: 0.5rem;
        border-top: 1px solid var(--gray-border);
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        border-radius: 12px;
    }

    .nav-list a::after {
        display: none;
    }

    .nav-list a::before {
        border-radius: 12px;
    }

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

    .hero {
        height: 600px;
        min-height: 600px;
        max-height: 600px;
    }

    .hero-image {
        object-position: center center;
        opacity: 0.85;
        filter: grayscale(0%) brightness(1) contrast(1.05) drop-shadow(0 0 20px rgba(16, 45, 79, 0.25));
        height: 600px;
        max-height: 600px;
        max-width: 85%;
        align-self: center;
        -webkit-mask-image: 
            radial-gradient(ellipse 100% 100% at center, black 55%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
        mask-image: 
            radial-gradient(ellipse 100% 100% at center, black 55%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .hero-background::before {
        height: 600px;
    }

    .hero-pattern {
        opacity: 0.2;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(16, 45, 79, 0.6) 0%, rgba(16, 45, 79, 0.25) 50%, rgba(16, 45, 79, 0.35) 100%);
    }

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

    .articles-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-modal-content {
        max-height: 95vh;
        margin: 1rem;
    }

    .article-modal-header {
        flex-direction: column;
        padding: 2rem 1.5rem 1.5rem;
    }

    .article-modal-title {
        font-size: 1.6rem;
        margin: 1.5rem 1.5rem 1rem;
    }

    .article-modal-body {
        padding: 0 1.5rem 2rem;
    }

    .wheel-1 {
        width: 90px;
        height: 90px;
    }

    .wheel-2 {
        width: 75px;
        height: 75px;
    }

    .wheel-3 {
        width: 70px;
        height: 70px;
    }

    .tabs-nav {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .tab-panel {
        padding: 2rem;
    }

    .tab-panel-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .tab-panel-text {
        font-size: 1rem;
    }

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

    .lawyers-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lawyer-image {
        height: 320px;
    }

    .practice-areas-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .article-card {
        flex-direction: row;
    }

    .article-date {
        min-width: 80px;
        padding: 1.5rem;
    }

    .article-day {
        font-size: 2rem;
    }

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

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .wheel-1 {
        width: 70px;
        height: 70px;
    }

    .wheel-2 {
        width: 60px;
        height: 60px;
    }

    .wheel-3 {
        width: 55px;
        height: 55px;
    }

}

@media (max-width: 480px) {
    .top-bar-info {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .top-bar-item {
        font-size: 0.8rem;
    }

    .top-bar-item span {
        white-space: normal;
        line-height: 1.4;
    }

    .nav-list {
        top: 140px;
    }

    .logo img {
        height: 50px;
    }

    section {
        padding: 70px 0;
    }

    .practice-areas-grid {
        gap: 1.5rem;
    }

    .tabs-nav {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .tab-panel {
        padding: 1.5rem;
        min-height: 250px;
    }

    .tab-panel-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .tab-panel-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .articles-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-preview-icon-wrapper {
        padding: 2rem;
        min-height: 120px;
    }

    .article-preview-icon {
        width: 70px;
        height: 70px;
    }

    .article-preview-icon svg {
        width: 35px;
        height: 35px;
    }

    .article-preview-content-wrapper {
        padding: 2rem;
    }

    .article-preview-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-preview-title {
        font-size: 1.5rem;
    }

    .article-preview-excerpt {
        font-size: 1rem;
    }

    .article-preview-title {
        font-size: 1.2rem;
    }

    .article-preview-excerpt {
        font-size: 0.95rem;
    }

    .article-modal-content {
        margin: 0.5rem;
        max-height: 98vh;
        border-radius: 20px;
    }

    .article-modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }

    .article-modal-header {
        flex-direction: column;
        padding: 2rem 1.5rem 1.5rem;
    }

    .article-modal-title {
        font-size: 1.5rem;
        margin: 1.5rem 1.5rem 1rem;
    }

    .article-modal-body {
        padding: 0 1.5rem 2rem;
    }

    .article-modal-body p {
        font-size: 1rem;
    }

    .hero {
        height: 500px;
        min-height: 500px;
        max-height: 500px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        margin-bottom: 2rem;
    }

    .hero-image {
        object-position: center center;
        opacity: 0.8;
        filter: grayscale(0%) brightness(1) contrast(1.05) drop-shadow(0 0 15px rgba(16, 45, 79, 0.2));
        height: 500px;
        max-height: 500px;
        max-width: 100%;
        object-fit: contain;
        align-self: center;
        -webkit-mask-image: 
            radial-gradient(ellipse 100% 100% at center, black 50%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: 
            radial-gradient(ellipse 100% 100% at center, black 50%, transparent 100%),
            linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%),
            linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .hero-background::before {
        height: 500px;
    }

    .hero-background::before {
        height: 500px;
    }

    .hero-pattern {
        opacity: 0.15;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(16, 45, 79, 0.65) 0%, rgba(16, 45, 79, 0.3) 50%, rgba(16, 45, 79, 0.4) 100%);
    }

    .hero-content {
        justify-content: center;
    }

    .hero-pattern::before {
        animation-duration: 20s;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

    .page-header {
        padding: 100px 0 80px;
    }

    .lawyer-image {
        height: 280px;
    }

    .lawyer-info {
        padding: 2rem;
    }

    .lawyer-name {
        font-size: 1.7rem;
    }

    .article-card {
        flex-direction: column;
    }

    .article-date {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .article-day {
        font-size: 2.2rem;
    }

    .article-month {
        margin-top: 0;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 1.8rem;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.8rem;
    }

    .map-container {
        height: 400px;
    }
}
